mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
basesrc: Do not lock a mutex that does not exist
The GST_LIVE_LOCK is on GstBaseSrc, not on its source pad.
This commit is contained in:
parent
97b1e17b09
commit
6cc39f42a9
1 changed files with 2 additions and 2 deletions
|
@ -1709,13 +1709,13 @@ gst_base_src_send_event (GstElement * element, GstEvent * event)
|
|||
event = NULL;
|
||||
break;
|
||||
case GST_EVENT_FLUSH_STOP:
|
||||
GST_LIVE_LOCK (src->srcpad);
|
||||
GST_LIVE_LOCK (src);
|
||||
src->priv->segment_pending = TRUE;
|
||||
/* sending random flushes downstream can break stuff,
|
||||
* especially sync since all segment info will get flushed */
|
||||
GST_DEBUG_OBJECT (src, "pushing flush-stop event downstream");
|
||||
result = gst_pad_push_event (src->srcpad, event);
|
||||
GST_LIVE_UNLOCK (src->srcpad);
|
||||
GST_LIVE_UNLOCK (src);
|
||||
event = NULL;
|
||||
break;
|
||||
|
||||
|
|
Loading…
Reference in a new issue