Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/extern
diff options
context:
space:
mode:
authorJörg Müller <nexyon@gmail.com>2022-02-15 22:04:42 +0300
committerJörg Müller <nexyon@gmail.com>2022-02-15 22:04:42 +0300
commit47827133901b1fa5467a7c070db0eb168e87b546 (patch)
treedd490df3384adaa63c33741099681d19efa935dd /extern
parent1efb8e215ea280bc555679d8aa4bdf0f2766ebd1 (diff)
Fix T94994: Anim Player Stops working In Video Sequence Editor
Port from upstream: variable was unitialized when device initialization failed when the WASAPI mixing thread is started.
Diffstat (limited to 'extern')
-rw-r--r--extern/audaspace/plugins/wasapi/WASAPIDevice.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/extern/audaspace/plugins/wasapi/WASAPIDevice.cpp b/extern/audaspace/plugins/wasapi/WASAPIDevice.cpp
index a8387dd9489..cbf35520c3d 100644
--- a/extern/audaspace/plugins/wasapi/WASAPIDevice.cpp
+++ b/extern/audaspace/plugins/wasapi/WASAPIDevice.cpp
@@ -71,7 +71,7 @@ void WASAPIDevice::runMixingThread()
IAudioRenderClient* render_client = nullptr;
- std::chrono::milliseconds sleep_duration;
+ std::chrono::milliseconds sleep_duration(0);
bool run_init = true;