mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 03:31:05 +00:00
flvmux: Set PTS based on running time
https://bugzilla.gnome.org/show_bug.cgi?id=793457
This commit is contained in:
parent
f29fe76d7e
commit
c0bf793c05
1 changed files with 6 additions and 1 deletions
|
@ -1171,7 +1171,12 @@ gst_flv_mux_buffer_to_tag_internal (GstFlvMux * mux, GstBuffer * buffer,
|
|||
/* if we are streamable we copy over timestamps and offsets,
|
||||
if not just copy the offsets */
|
||||
if (mux->streamable) {
|
||||
gst_buffer_copy_into (tag, buffer, GST_BUFFER_COPY_TIMESTAMPS, 0, -1);
|
||||
GstClockTime timestamp = GST_CLOCK_TIME_NONE;
|
||||
|
||||
if (gst_segment_to_running_time_full (&GST_AGGREGATOR_PAD (pad)->segment,
|
||||
GST_FORMAT_TIME, GST_BUFFER_DTS_OR_PTS (buffer), ×tamp) == 1)
|
||||
GST_BUFFER_PTS (tag) = timestamp;
|
||||
|
||||
GST_BUFFER_OFFSET (tag) = GST_BUFFER_OFFSET_NONE;
|
||||
GST_BUFFER_OFFSET_END (tag) = GST_BUFFER_OFFSET_NONE;
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue