aboutsummaryrefslogtreecommitdiffstats
path: root/src/GSTInput.cpp
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2020-05-04 16:05:47 +0200
committerMatthias P. Braendli <matthias.braendli@mpb.li>2020-05-04 16:05:47 +0200
commit55fe285c56055497725a619e5b9acbd6dec57e23 (patch)
treeee9fc752adddd8ef75b4e2c94c0e8ef914411c28 /src/GSTInput.cpp
parent20607d9aff6b1cee10fec1c7efc815ae2d77518c (diff)
downloadODR-AudioEnc-55fe285c56055497725a619e5b9acbd6dec57e23.tar.gz
ODR-AudioEnc-55fe285c56055497725a619e5b9acbd6dec57e23.tar.bz2
ODR-AudioEnc-55fe285c56055497725a619e5b9acbd6dec57e23.zip
Fix teardown after silence detector trigger
Diffstat (limited to 'src/GSTInput.cpp')
-rw-r--r--src/GSTInput.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/GSTInput.cpp b/src/GSTInput.cpp
index aa46003..a2401cb 100644
--- a/src/GSTInput.cpp
+++ b/src/GSTInput.cpp
@@ -271,6 +271,10 @@ void GSTInput::process()
GSTInput::~GSTInput()
{
m_running = false;
+
+ // Ensures push() doesn't get blocked
+ m_gst_data.samplequeue.clear();
+
if (m_thread.joinable()) {
m_thread.join();
}