ext: fix more printf format warnings in debug messages

This commit is contained in:
Tim-Philipp Müller 2011-11-23 23:29:03 +00:00
parent 848103c861
commit 9cb748ee21

View file

@ -687,8 +687,8 @@ gst_two_lame_handle_frame (GstAudioEncoder * enc, GstBuffer * buf)
num_samples / twolame->num_channels, mp3_data, mp3_buffer_size); num_samples / twolame->num_channels, mp3_data, mp3_buffer_size);
} }
GST_LOG_OBJECT (twolame, "encoded %d bytes of audio to %d bytes of mp3", GST_LOG_OBJECT (twolame, "encoded %" G_GSIZE_FORMAT " bytes of audio "
size, mp3_size); "to %d bytes of mp3", size, mp3_size);
gst_buffer_unmap (buf, data, -1); gst_buffer_unmap (buf, data, -1);
gst_buffer_unmap (mp3_buf, mp3_data, -1); gst_buffer_unmap (mp3_buf, mp3_data, -1);