From 59bc425174bc46b29b2af7fffe4d932feb14b3b8 Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Mon, 16 Nov 2009 13:54:16 +0100 Subject: [PATCH] ffdec: remove clipping hack Remove a hack that seems to produce wrong clipping values. --- ext/ffmpeg/gstffmpegdec.c | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/ext/ffmpeg/gstffmpegdec.c b/ext/ffmpeg/gstffmpegdec.c index b23c6c24ed..2a5bd51b48 100644 --- a/ext/ffmpeg/gstffmpegdec.c +++ b/ext/ffmpeg/gstffmpegdec.c @@ -1394,16 +1394,9 @@ clip_video_buffer (GstFFMpegDec * dec, GstBuffer * buf, GstClockTime in_ts, res = gst_segment_clip (&dec->segment, GST_FORMAT_TIME, in_ts, stop, &cstart, &cstop); - if (G_UNLIKELY (!res && in_ts != dec->segment.stop)) + if (G_UNLIKELY (!res)) goto beach; - /* Special case: last buffer has zero duration */ - if (G_UNLIKELY (in_ts == dec->segment.stop)) { - res = TRUE; - cstart = in_ts - 1; - stop = cstop = in_ts; - } - /* we're pretty sure the duration of this buffer is not till the end of this * segment (which _clip will assume when the stop is -1) */ if (stop == GST_CLOCK_TIME_NONE)