summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2017-05-10 15:58:41 +0200
committerSebastian Dröge <sebastian@centricular.com>2017-05-10 15:58:41 +0200
commit63492ee141eb1e2ef611bb9bd00fd50cd40cff0a (patch)
tree0d41863a0807ee24a802bf391a0295272f095de0
parent163b62fc25e9527a440514f301b82db89215656a (diff)
qtmux: Lateness is in QT timescale, diff in GstClockTime
Print the right one in debug output to get meaningful numbers.
-rw-r--r--gst/isomp4/gstqtmux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/isomp4/gstqtmux.c b/gst/isomp4/gstqtmux.c
index 0ceaaff01..c9fab7c12 100644
--- a/gst/isomp4/gstqtmux.c
+++ b/gst/isomp4/gstqtmux.c
@@ -3119,7 +3119,7 @@ gst_qt_mux_update_edit_lists (GstQTMux * qtmux)
if (lateness > 0) {
GST_DEBUG_OBJECT (qtmux,
"Pad %s is a late stream by %" GST_TIME_FORMAT,
- GST_PAD_NAME (qtpad->collect.pad), GST_TIME_ARGS (lateness));
+ GST_PAD_NAME (qtpad->collect.pad), GST_TIME_ARGS (diff));
atom_trak_set_elst_entry (qtpad->trak, 0, lateness, (guint32) - 1,
(guint32) (1 * 65536.0));