Mercurial > libavcodec.hg
changeset 10256:541055a030f3 libavcodec
Fix format string to match the types printed.
author | reimar |
---|---|
date | Wed, 23 Sep 2009 15:30:38 +0000 |
parents | b81ec4ac8f96 |
children | af449680f6ee |
files | vorbis_dec.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/vorbis_dec.c Wed Sep 23 15:16:36 2009 +0000 +++ b/vorbis_dec.c Wed Sep 23 15:30:38 2009 +0000 @@ -643,7 +643,7 @@ 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; }