From 98112a3ddca6a320088de515ff490c3581adc9e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Thu, 21 Apr 2022 11:41:15 +0300 Subject: [PATCH] Revert "videorate: Drop incoming buffers that are outside of the segment" This reverts commit 24fd80344dbc059b72e13d813ca82f414a9d6cce. See https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/2186 Part-of: --- .../gst-plugins-base/gst/videorate/gstvideorate.c | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/subprojects/gst-plugins-base/gst/videorate/gstvideorate.c b/subprojects/gst-plugins-base/gst/videorate/gstvideorate.c index 3c4fe0b41c..e12fe391cf 100644 --- a/subprojects/gst-plugins-base/gst/videorate/gstvideorate.c +++ b/subprojects/gst-plugins-base/gst/videorate/gstvideorate.c @@ -1521,10 +1521,6 @@ gst_video_rate_transform_ip (GstBaseTransform * trans, GstBuffer * buffer) goto invalid_buffer; } - if (!gst_segment_clip (&videorate->segment, GST_FORMAT_TIME, in_ts, - GST_CLOCK_TIME_NONE, NULL, NULL)) - goto outside_segment; - /* get the time of the next expected buffer timestamp, we use this when the * next buffer has -1 as a timestamp */ last_ts = videorate->last_ts; @@ -1791,13 +1787,6 @@ invalid_buffer: res = GST_BASE_TRANSFORM_FLOW_DROPPED; goto done; } - -outside_segment: - { - GST_WARNING_OBJECT (videorate, "Got buffer outide segment, discarding it"); - res = GST_BASE_TRANSFORM_FLOW_DROPPED; - goto done; - } } static gboolean