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

github.com/sdroege/gst-plugin-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrançois Laignel <francois@centricular.com>2023-03-09 13:56:32 +0300
committerFrançois Laignel <francois@centricular.com>2023-03-09 15:07:03 +0300
commitb9cd71d8ebb904e043e109578bba73c1f5c849b4 (patch)
tree680d33fb80e0d93d128e0357d96cc4de117b5091
parent2ea9f147aba44b14a70284324a4e6c5207724f05 (diff)
net/aws/transcriber: fix eos not being sent
For eos to be sent from the srcpad task loop, we need to go through `dequeue`. Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1122>
-rw-r--r--net/aws/src/transcriber/imp.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/net/aws/src/transcriber/imp.rs b/net/aws/src/transcriber/imp.rs
index b972372d..e4116d32 100644
--- a/net/aws/src/transcriber/imp.rs
+++ b/net/aws/src/transcriber/imp.rs
@@ -536,7 +536,6 @@ impl Transcriber {
if notif.is_none() {
// Transcriber loop terminated
self.state.lock().unwrap().send_eos = true;
- return;
};
}
_ = timeout => (),