mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-05 15:08:53 +00:00
decodebin2: fix format strings
This commit is contained in:
parent
163720246e
commit
cd1d6f7d2d
1 changed files with 3 additions and 3 deletions
|
@ -1999,15 +1999,15 @@ connect_pad (GstDecodeBin * dbin, GstElement * src, GstDecodePad * dpad,
|
||||||
speed = CLAMP (speed, pspecint->minimum, pspecint->maximum);
|
speed = CLAMP (speed, pspecint->minimum, pspecint->maximum);
|
||||||
} else {
|
} else {
|
||||||
GST_WARNING_OBJECT (dbin,
|
GST_WARNING_OBJECT (dbin,
|
||||||
"The connection speed property %i of type %s"
|
"The connection speed property %" G_GUINT64_FORMAT " of type %s"
|
||||||
" is not usefull not setting it", speed,
|
" is not usefull not setting it", speed,
|
||||||
g_type_name (G_PARAM_SPEC_TYPE (pspec)));
|
g_type_name (G_PARAM_SPEC_TYPE (pspec)));
|
||||||
wrong_type = TRUE;
|
wrong_type = TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (wrong_type == FALSE) {
|
if (wrong_type == FALSE) {
|
||||||
GST_DEBUG_OBJECT (dbin, "setting connection-speed=%d to demuxer"
|
GST_DEBUG_OBJECT (dbin, "setting connection-speed=%" G_GUINT64_FORMAT
|
||||||
" element", speed);
|
" to demuxer element", speed);
|
||||||
|
|
||||||
g_object_set (element, "connection-speed", speed, NULL);
|
g_object_set (element, "connection-speed", speed, NULL);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue