ffdec: remove clipping hack

Remove a hack that seems to produce wrong clipping values.
This commit is contained in:
Wim Taymans 2009-11-16 13:54:16 +01:00
parent 62d54db07d
commit 59bc425174

View file

@ -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)