mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 04:46:13 +00:00
flvmux: Fix scale of time values in warning message
This commit is contained in:
parent
a676c17259
commit
3160713abf
1 changed files with 2 additions and 2 deletions
|
@ -1172,8 +1172,8 @@ gst_flv_mux_buffer_to_tag_internal (GstFlvMux * mux, GstBuffer * buffer,
|
||||||
*/
|
*/
|
||||||
if (dts < mux->last_dts) {
|
if (dts < mux->last_dts) {
|
||||||
GST_WARNING_OBJECT (pad, "Got backwards dts! (%" GST_TIME_FORMAT
|
GST_WARNING_OBJECT (pad, "Got backwards dts! (%" GST_TIME_FORMAT
|
||||||
" < %" GST_TIME_FORMAT ")", GST_TIME_ARGS (dts),
|
" < %" GST_TIME_FORMAT ")", GST_TIME_ARGS (dts * GST_MSECOND),
|
||||||
GST_TIME_ARGS (mux->last_dts));
|
GST_TIME_ARGS (mux->last_dts * GST_MSECOND));
|
||||||
dts = mux->last_dts;
|
dts = mux->last_dts;
|
||||||
}
|
}
|
||||||
mux->last_dts = dts;
|
mux->last_dts = dts;
|
||||||
|
|
Loading…
Reference in a new issue