lame: fix printf format in debug statements

https://bugzilla.gnome.org/show_bug.cgi?id=666926
This commit is contained in:
Tim-Philipp Müller 2011-12-27 22:54:34 +00:00
parent 789fc8195d
commit de6b18ea84
2 changed files with 2 additions and 2 deletions

View file

@ -1119,7 +1119,7 @@ gst_lame_finish_frames (GstLame * lame)
if (G_UNLIKELY (layer != 3 || rate != lame->out_samplerate)) {
GST_DEBUG_OBJECT (lame,
"unexpected mp3 header with (rate, layer): (%u, %u)",
"unexpected mp3 header with rate %u, version %u, layer %u",
rate, version, layer);
goto invalid_header;
}

View file

@ -664,7 +664,7 @@ gst_lamemp3enc_finish_frames (GstLameMP3Enc * lame)
if (G_UNLIKELY (layer != 3 || rate != lame->out_samplerate)) {
GST_DEBUG_OBJECT (lame,
"unexpected mp3 header with (rate, layer): (%u, %u)",
"unexpected mp3 header with rate %u, version %u, layer %u",
rate, version, layer);
goto invalid_header;
}