mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
adder: Raw buffers DTS should always be CLOCK_TIME_NONE
This commit is contained in:
parent
a174ff25bc
commit
4afdc04089
1 changed files with 3 additions and 2 deletions
|
@ -1488,13 +1488,14 @@ gst_adder_collected (GstCollectPads * pads, gpointer user_data)
|
|||
|
||||
|
||||
/* set timestamps on the output buffer */
|
||||
GST_BUFFER_DTS (outbuf) = GST_CLOCK_TIME_NONE;
|
||||
if (adder->segment.rate > 0.0) {
|
||||
GST_BUFFER_PTS (outbuf) = GST_BUFFER_DTS (outbuf) = adder->segment.position;
|
||||
GST_BUFFER_PTS (outbuf) = adder->segment.position;
|
||||
GST_BUFFER_OFFSET (outbuf) = adder->offset;
|
||||
GST_BUFFER_OFFSET_END (outbuf) = next_offset;
|
||||
GST_BUFFER_DURATION (outbuf) = next_timestamp - adder->segment.position;
|
||||
} else {
|
||||
GST_BUFFER_DTS (outbuf) = GST_BUFFER_PTS (outbuf) = next_timestamp;
|
||||
GST_BUFFER_PTS (outbuf) = next_timestamp;
|
||||
GST_BUFFER_OFFSET (outbuf) = next_offset;
|
||||
GST_BUFFER_OFFSET_END (outbuf) = adder->offset;
|
||||
GST_BUFFER_DURATION (outbuf) = adder->segment.position - next_timestamp;
|
||||
|
|
Loading…
Reference in a new issue