diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2009-09-23 15:30:38 +0000 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2009-09-23 15:30:38 +0000 |
commit | c31afa5d245f263fe5be5b2bff31efe6a71f406f (patch) | |
tree | 4fe1f9ff4ecde8cd59e6684e28aedc0c441c8a33 /libavcodec/vorbis_dec.c | |
parent | 2a9b5c9b429d4162f449771a5043310b3f4acc06 (diff) | |
download | ffmpeg-c31afa5d245f263fe5be5b2bff31efe6a71f406f.tar.gz |
Fix format string to match the types printed.
Originally committed as revision 20003 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vorbis_dec.c')
-rw-r--r-- | libavcodec/vorbis_dec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vorbis_dec.c b/libavcodec/vorbis_dec.c index ed4dace554..4d992a8cd7 100644 --- a/libavcodec/vorbis_dec.c +++ b/libavcodec/vorbis_dec.c @@ -643,7 +643,7 @@ static int vorbis_parse_setup_hdr_residues(vorbis_context *vc){ 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; } |