mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-11 09:55:36 +00:00
rtp: fixes debug message printf related compiler warnings in SBC depayloader
This commit is contained in:
parent
87bdad4bfc
commit
509631f60b
1 changed files with 3 additions and 2 deletions
|
@ -183,7 +183,7 @@ gst_rtp_sbc_depay_setcaps (GstRTPBaseDepayload * base, GstCaps * caps)
|
|||
return TRUE;
|
||||
|
||||
bad_caps:
|
||||
GST_WARNING_OBJECT (depay, "Can't support the caps we got: "
|
||||
GST_WARNING_OBJECT (depay, "Can't support the caps we got: %"
|
||||
GST_PTR_FORMAT, caps);
|
||||
return FALSE;
|
||||
}
|
||||
|
@ -202,7 +202,8 @@ gst_rtp_sbc_depay_process (GstRTPBaseDepayload * base, GstBuffer * in)
|
|||
|
||||
gst_rtp_buffer_map (in, GST_MAP_READ, &rtp);
|
||||
|
||||
GST_LOG_OBJECT (depay, "Got %d bytes", gst_buffer_get_size (in));
|
||||
GST_LOG_OBJECT (depay, "Got %" G_GUINT64_FORMAT " bytes",
|
||||
gst_buffer_get_size (in));
|
||||
|
||||
if (gst_rtp_buffer_get_marker (&rtp)) {
|
||||
/* Marker isn't supposed to be set */
|
||||
|
|
Loading…
Reference in a new issue