mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-28 12:41:05 +00:00
uridecodebin: fix format strings
This commit is contained in:
parent
cd1d6f7d2d
commit
6bd0272512
1 changed files with 5 additions and 3 deletions
|
@ -1266,8 +1266,9 @@ gen_source_element (GstURIDecodeBin * decoder)
|
||||||
|
|
||||||
speed = CLAMP (speed, pspecint->minimum, pspecint->maximum);
|
speed = CLAMP (speed, pspecint->minimum, pspecint->maximum);
|
||||||
} else {
|
} else {
|
||||||
GST_WARNING_OBJECT (decoder, "The connection speed property %i of type %s"
|
GST_WARNING_OBJECT (decoder,
|
||||||
" is not usefull not setting it", speed,
|
"The connection speed property %" G_GUINT64_FORMAT
|
||||||
|
" of type %s 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;
|
||||||
}
|
}
|
||||||
|
@ -1276,7 +1277,8 @@ gen_source_element (GstURIDecodeBin * decoder)
|
||||||
g_object_set (source, "connection-speed", speed, NULL);
|
g_object_set (source, "connection-speed", speed, NULL);
|
||||||
|
|
||||||
GST_DEBUG_OBJECT (decoder,
|
GST_DEBUG_OBJECT (decoder,
|
||||||
"setting connection-speed=%d to source element", speed);
|
"setting connection-speed=%" G_GUINT64_FORMAT " to source element",
|
||||||
|
speed);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue