mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-20 21:16:24 +00:00
pad-monitor: only do combined return checks for demuxers
Seems like the only place that gstreamer elements should really care about it
This commit is contained in:
parent
a426198916
commit
1c874d175e
1 changed files with 2 additions and 1 deletions
|
@ -1333,7 +1333,8 @@ gst_validate_pad_monitor_chain_func (GstPad * pad, GstObject * parent,
|
|||
GST_VALIDATE_MONITOR_LOCK (pad_monitor);
|
||||
|
||||
pad_monitor->last_flow_return = ret;
|
||||
gst_validate_pad_monitor_check_aggregated_return (pad_monitor, ret);
|
||||
if (PAD_PARENT_IS_DEMUXER (pad_monitor))
|
||||
gst_validate_pad_monitor_check_aggregated_return (pad_monitor, ret);
|
||||
|
||||
GST_VALIDATE_MONITOR_UNLOCK (pad_monitor);
|
||||
GST_VALIDATE_PAD_MONITOR_PARENT_UNLOCK (pad_monitor);
|
||||
|
|
Loading…
Reference in a new issue