summaryrefslogtreecommitdiff
path: root/libavcodec/4xm.c
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2004-04-07 13:14:29 +0000
committerAlex Beregszaszi <alex@rtfs.hu>2004-04-07 13:14:29 +0000
commit6ce1a818e10e4a47669d941d7e36cbebe3e0a2f4 (patch)
tree116998fae517df3495996c85cc70d05a3911f058 /libavcodec/4xm.c
parent8cc7a34dd08b235b813c97bb61600ba900ebd716 (diff)
unknown format chars
Originally committed as revision 2974 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/4xm.c')
-rw-r--r--libavcodec/4xm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/4xm.c b/libavcodec/4xm.c
index 304453d6f1..6544d88d0f 100644
--- a/libavcodec/4xm.c
+++ b/libavcodec/4xm.c
@@ -354,7 +354,7 @@ static int decode_p_frame(FourXContext *f, uint8_t *buf, int length){
}
if(bitstream_size != (get_bits_count(&f->gb)+31)/32*4)
- av_log(f->avctx, AV_LOG_ERROR, " %d %zd %zd bytes left\n",
+ av_log(f->avctx, AV_LOG_ERROR, " %d %d %d bytes left\n",
bitstream_size - (get_bits_count(&f->gb)+31)/32*4,
bytestream_size - (f->bytestream - (buf + 20 + bitstream_size + wordstream_size)),
wordstream_size - (((uint8_t*)f->wordstream) - (buf + 20 + bitstream_size))