This will still cause some timestamp jitter, but giving a hint as to the duration
rather than nothing seems to be a better idea.
Also, this allows some scenarios (like remuxing with asfmux) to estimate the total
duration using the accumulated packet duration (which will be correct).
* position reporting if a live src is playing not so live content
* (e.g. rtspsrc taking some time to fall back to tcp) */
GST_BUFFER_TIMESTAMP (payload->buf) = payload->ts + demux->in_gap;
- GST_BUFFER_DURATION (payload->buf) = payload->duration;
+ if (payload->duration == GST_CLOCK_TIME_NONE)
+ GST_BUFFER_DURATION (payload->buf) =
+ stream->ext_props.avg_time_per_frame * 100;
+ else
+ GST_BUFFER_DURATION (payload->buf) = payload->duration;
/* FIXME: we should really set durations on buffers if we can */