mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
lame: fix format string in debug statement
This commit is contained in:
parent
b18371c1ca
commit
bfbddbed8b
1 changed files with 1 additions and 1 deletions
|
@ -799,7 +799,7 @@ gst_lamemp3enc_setup (GstLameMP3Enc * lame)
|
||||||
if ((retval = lame_init_params (lame->lgf)) >= 0) {
|
if ((retval = lame_init_params (lame->lgf)) >= 0) {
|
||||||
lame->setup = TRUE;
|
lame->setup = TRUE;
|
||||||
/* FIXME: it would be nice to print out the mode here */
|
/* FIXME: it would be nice to print out the mode here */
|
||||||
GST_INFO ("lame encoder setup (%d Hz, %d channels)",
|
GST_INFO ("lame encoder setup (bitrate %d, %d Hz, %d channels)",
|
||||||
lame->bitrate, lame->samplerate, lame->num_channels);
|
lame->bitrate, lame->samplerate, lame->num_channels);
|
||||||
} else {
|
} else {
|
||||||
GST_ERROR_OBJECT (lame, "lame_init_params returned %d", retval);
|
GST_ERROR_OBJECT (lame, "lame_init_params returned %d", retval);
|
||||||
|
|
Loading…
Reference in a new issue