mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
x264: fix printf format warning in debug message
This commit is contained in:
parent
d114b121db
commit
5225f5cc16
1 changed files with 3 additions and 3 deletions
|
@ -1035,9 +1035,9 @@ gst_x264_enc_init_encoder (GstX264Enc * encoder)
|
|||
encoder->option_string->str);
|
||||
if (gst_x264_enc_parse_options (encoder,
|
||||
encoder->option_string->str) == FALSE) {
|
||||
GST_DEBUG_OBJECT (encoder,
|
||||
"Failed to parse internal option string. This could be due to use of an "
|
||||
"old libx264 version.", encoder->option_string->str);
|
||||
GST_DEBUG_OBJECT (encoder, "Failed to parse internal option string. "
|
||||
"This could be due to use of an old libx264 version. Option string "
|
||||
"was: %s", encoder->option_string->str);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue