mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 06:46:38 +00:00
imagefreeze: immediately return GST_FLOW_EOS
... rather than _OK since we will not be caring about subsequent buffer anyway.
This commit is contained in:
parent
ff616b1173
commit
d7caf1dbb4
1 changed files with 1 additions and 1 deletions
|
@ -687,7 +687,7 @@ gst_image_freeze_sink_chain (GstPad * pad, GstObject * parent,
|
|||
gst_pad_start_task (self->srcpad, (GstTaskFunction) gst_image_freeze_src_loop,
|
||||
self->srcpad);
|
||||
g_mutex_unlock (&self->lock);
|
||||
return GST_FLOW_OK;
|
||||
return GST_FLOW_EOS;
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
Loading…
Reference in a new issue