mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
mxfdemux: printf format fixes for debug messages
This commit is contained in:
parent
796708b3e3
commit
b0c30383ca
1 changed files with 4 additions and 4 deletions
|
@ -2063,8 +2063,8 @@ gst_mxf_demux_pull_klv_packet (GstMXFDemux * demux, guint64 offset, MXFUL * key,
|
|||
goto beach;
|
||||
}
|
||||
|
||||
GST_DEBUG_OBJECT (demux, "KLV packet with key %s has length %u",
|
||||
mxf_ul_to_string (key, str), length);
|
||||
GST_DEBUG_OBJECT (demux, "KLV packet with key %s has length "
|
||||
"%" G_GUINT64_FORMAT, mxf_ul_to_string (key, str), length);
|
||||
|
||||
/* Pull the complete KLV packet */
|
||||
if ((ret = gst_mxf_demux_pull_range (demux, offset + data_offset, length,
|
||||
|
@ -3049,8 +3049,8 @@ gst_mxf_demux_chain (GstPad * pad, GstObject * parent, GstBuffer * inbuf)
|
|||
break;
|
||||
}
|
||||
|
||||
GST_DEBUG_OBJECT (demux, "KLV packet with key %s has length %u",
|
||||
mxf_ul_to_string (&key, str), length);
|
||||
GST_DEBUG_OBJECT (demux, "KLV packet with key %s has length "
|
||||
"%" G_GUINT64_FORMAT, mxf_ul_to_string (&key, str), length);
|
||||
|
||||
if (gst_adapter_available (demux->adapter) < offset + length)
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue