From 7b8615d4fc2ec54bb1a7f34d1f69dc264db038de Mon Sep 17 00:00:00 2001 From: Nicolas Dufresne Date: Fri, 19 Jun 2015 18:40:43 -0400 Subject: [PATCH] qtmux: Use PTS to figure-out presence of gaps We need to look at the presentation timestamp in order to conclude if there is a gap at the start of a stream. https://bugzilla.gnome.org/show_bug.cgi?id=751242 --- gst/isomp4/gstqtmux.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gst/isomp4/gstqtmux.c b/gst/isomp4/gstqtmux.c index 54091100d9..5548a0cc1c 100644 --- a/gst/isomp4/gstqtmux.c +++ b/gst/isomp4/gstqtmux.c @@ -3039,10 +3039,10 @@ gst_qt_mux_add_buffer (GstQTMux * qtmux, GstQTPad * pad, GstBuffer * buf) /* if this is the first buffer, store the timestamp */ if (G_UNLIKELY (pad->first_ts == GST_CLOCK_TIME_NONE) && last_buf) { - if (GST_BUFFER_DTS_IS_VALID (last_buf)) { - pad->first_ts = GST_BUFFER_DTS (last_buf); - } else if (GST_BUFFER_PTS_IS_VALID (last_buf)) { + if (GST_BUFFER_PTS_IS_VALID (last_buf)) { pad->first_ts = GST_BUFFER_PTS (last_buf); + } else if (GST_BUFFER_DTS_IS_VALID (last_buf)) { + pad->first_ts = GST_BUFFER_DTS (last_buf); } if (GST_CLOCK_TIME_IS_VALID (pad->first_ts)) {