From 3160713abf3b216870054cc4e09791f09f9b3140 Mon Sep 17 00:00:00 2001 From: Andreas Frisch Date: Fri, 15 Mar 2019 10:41:20 +0100 Subject: [PATCH] flvmux: Fix scale of time values in warning message --- gst/flv/gstflvmux.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gst/flv/gstflvmux.c b/gst/flv/gstflvmux.c index 8d06d4d80d..f02c08d1b9 100644 --- a/gst/flv/gstflvmux.c +++ b/gst/flv/gstflvmux.c @@ -1172,8 +1172,8 @@ gst_flv_mux_buffer_to_tag_internal (GstFlvMux * mux, GstBuffer * buffer, */ if (dts < mux->last_dts) { GST_WARNING_OBJECT (pad, "Got backwards dts! (%" GST_TIME_FORMAT - " < %" GST_TIME_FORMAT ")", GST_TIME_ARGS (dts), - GST_TIME_ARGS (mux->last_dts)); + " < %" GST_TIME_FORMAT ")", GST_TIME_ARGS (dts * GST_MSECOND), + GST_TIME_ARGS (mux->last_dts * GST_MSECOND)); dts = mux->last_dts; } mux->last_dts = dts;