videorate: fix skip-to-first ts setup

... such as avoiding arithmetic mixing counts and ts, although latter
would typically be 0 so far.
This commit is contained in:
Mark Nauwelaerts 2011-02-21 12:27:17 +01:00
parent 3fe2777b54
commit bb0dc56114

View file

@ -795,11 +795,9 @@ gst_video_rate_chain (GstPad * pad, GstBuffer * buffer)
/* new buffer, we expect to output a buffer that matches the first
* timestamp in the segment */
if (videorate->skip_to_first) {
videorate->next_ts = in_ts;
videorate->out_frame_count = gst_util_uint64_scale (in_ts,
videorate->to_rate_numerator,
videorate->to_rate_denominator * GST_SECOND) -
(videorate->segment.accum + videorate->segment.start);
videorate->next_ts = intime;
videorate->base_ts = in_ts - videorate->segment.start;
videorate->out_frame_count = 0;
} else {
videorate->next_ts =
videorate->segment.start + videorate->segment.accum;