mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-05 06:58:56 +00:00
pad-monitor: removing bad check
Elements are allowed to accumulate segments, they don't have to push 1:1 segments as they receive
This commit is contained in:
parent
25c55501a0
commit
a1775e75e5
1 changed files with 1 additions and 5 deletions
|
@ -1097,11 +1097,7 @@ gst_validate_pad_monitor_add_expected_newsegment (GstValidatePadMonitor *
|
|||
othermonitor =
|
||||
g_object_get_data ((GObject *) otherpad, "validate-monitor");
|
||||
GST_VALIDATE_MONITOR_LOCK (othermonitor);
|
||||
if (othermonitor->expected_segment) {
|
||||
GST_VALIDATE_REPORT (othermonitor, EVENT_NEWSEGMENT_NOT_PUSHED, "");
|
||||
gst_event_unref (othermonitor->expected_segment);
|
||||
}
|
||||
othermonitor->expected_segment = gst_event_ref (event);
|
||||
gst_event_replace (&othermonitor->expected_segment, event);
|
||||
GST_VALIDATE_MONITOR_UNLOCK (othermonitor);
|
||||
g_value_reset (&value);
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue