mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 10:41:04 +00:00
qtmux: fix missing debug argument
Adds a missing debug argument
This commit is contained in:
parent
1803eb4d7a
commit
c883c2511c
1 changed files with 1 additions and 1 deletions
|
@ -1420,7 +1420,7 @@ gst_qt_mux_add_buffer (GstQTMux * qtmux, GstQTPad * pad, GstBuffer * buf)
|
||||||
pad->first_ts = GST_BUFFER_TIMESTAMP (last_buf);
|
pad->first_ts = GST_BUFFER_TIMESTAMP (last_buf);
|
||||||
} else {
|
} else {
|
||||||
GST_DEBUG_OBJECT (qtmux, "First buffer for pad %s has no timestamp, "
|
GST_DEBUG_OBJECT (qtmux, "First buffer for pad %s has no timestamp, "
|
||||||
"using 0 as first timestamp");
|
"using 0 as first timestamp", GST_PAD_NAME (pad->collect.pad));
|
||||||
pad->first_ts = 0;
|
pad->first_ts = 0;
|
||||||
}
|
}
|
||||||
GST_DEBUG_OBJECT (qtmux, "Stored first timestamp for pad %s %"
|
GST_DEBUG_OBJECT (qtmux, "Stored first timestamp for pad %s %"
|
||||||
|
|
Loading…
Reference in a new issue