[FFmpeg-cvslog] r20003 - trunk/libavcodec/vorbis_dec.c
reimar
subversion
Wed Sep 23 17:30:38 CEST 2009
Author: reimar
Date: Wed Sep 23 17:30:38 2009
New Revision: 20003
Log:
Fix format string to match the types printed.
Modified:
trunk/libavcodec/vorbis_dec.c
Modified: trunk/libavcodec/vorbis_dec.c
==============================================================================
--- trunk/libavcodec/vorbis_dec.c Wed Sep 23 17:16:36 2009 (r20002)
+++ trunk/libavcodec/vorbis_dec.c Wed Sep 23 17:30:38 2009 (r20003)
@@ -643,7 +643,7 @@ static int vorbis_parse_setup_hdr_residu
if (res_setup->begin>res_setup->end
|| res_setup->end>vc->blocksize[1]/(res_setup->type==2?1:2)
|| (res_setup->end-res_setup->begin)/res_setup->partition_size>V_MAX_PARTITIONS) {
- av_log(vc->avccontext, AV_LOG_ERROR, "partition out of bounds: type, begin, end, size, blocksize: %d, %d, %d, %d, %d\n", res_setup->type, res_setup->begin, res_setup->end, res_setup->partition_size, vc->blocksize[1]/2);
+ av_log(vc->avccontext, AV_LOG_ERROR, "partition out of bounds: type, begin, end, size, blocksize: %"PRIdFAST16", %"PRIdFAST32", %"PRIdFAST32", %"PRIdFAST32", %"PRIdFAST32"\n", res_setup->type, res_setup->begin, res_setup->end, res_setup->partition_size, vc->blocksize[1]/2);
return -1;
}
More information about the ffmpeg-cvslog
mailing list