mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-22 23:28:16 +00:00
teletextdec: fix deadlock on a stream error
https://bugzilla.gnome.org/show_bug.cgi?id=619739
This commit is contained in:
parent
afd240c621
commit
126a98d967
1 changed files with 3 additions and 1 deletions
|
@ -678,8 +678,10 @@ gst_teletextdec_chain (GstPad * pad, GstBuffer * buf)
|
|||
g_mutex_lock (teletext->queue_lock);
|
||||
if (!g_queue_is_empty (teletext->queue)) {
|
||||
ret = gst_teletextdec_push_page (teletext);
|
||||
if (ret != GST_FLOW_OK)
|
||||
if (ret != GST_FLOW_OK) {
|
||||
g_mutex_unlock (teletext->queue_lock);
|
||||
goto error;
|
||||
}
|
||||
}
|
||||
g_mutex_unlock (teletext->queue_lock);
|
||||
|
||||
|
|
Loading…
Reference in a new issue