diff options
author | Matej Knopp <matej.knopp@gmail.com> | 2012-01-26 06:58:46 -0500 |
---|---|---|
committer | Wim Taymans <wim.taymans@collabora.co.uk> | 2012-02-20 16:20:55 +0100 |
commit | e4e0d3ce02c5e9a6c79d4826fc52e743e0221fba (patch) | |
tree | e42f5f9eb415b8226ed09ab9c6993e465ec2eb28 /ext/voaacenc | |
parent | a9f5def9d11c9a6623d7ed9d365160a4d8076b17 (diff) | |
download | gstreamer-plugins-bad-e4e0d3ce02c5e9a6c79d4826fc52e743e0221fba.tar.gz |
Fix compiler warnings
Diffstat (limited to 'ext/voaacenc')
-rw-r--r-- | ext/voaacenc/gstvoaacenc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/voaacenc/gstvoaacenc.c b/ext/voaacenc/gstvoaacenc.c index dd4b7ed9e..8ae31a0fe 100644 --- a/ext/voaacenc/gstvoaacenc.c +++ b/ext/voaacenc/gstvoaacenc.c @@ -490,7 +490,8 @@ gst_voaacenc_handle_frame (GstAudioEncoder * benc, GstBuffer * buf) goto encode_failed; } - GST_LOG_OBJECT (voaacenc, "encoded to %d bytes", output.Length); + GST_LOG_OBJECT (voaacenc, "encoded to %" G_GSIZE_FORMAT " bytes", + output.Length); gst_buffer_unmap (buf, &map); gst_buffer_unmap (out, &omap); gst_buffer_resize (out, 0, output.Length); |