diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-10-02 03:40:26 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-10-02 05:48:40 +0200 |
commit | 55a070870facd6bc72f9b943baba2833ce24f075 (patch) | |
tree | 29d549b7a3c2e06fe2403c6a25a31181b937b933 | |
parent | 54a1e7b0f28ad4d5d9d50969df2cf786a9aa7e27 (diff) | |
download | ffmpeg-55a070870facd6bc72f9b943baba2833ce24f075.tar.gz |
4xm decoder: fix data size for i2 frames.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
(cherry picked from commit 0a19b4b0bae772cac7f8341e94c319c96356ee69)
-rw-r--r-- | libavcodec/4xm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/4xm.c b/libavcodec/4xm.c index 92717d0fef..98169fd8ab 100644 --- a/libavcodec/4xm.c +++ b/libavcodec/4xm.c @@ -829,7 +829,7 @@ static int decode_frame(AVCodecContext *avctx, if(frame_4cc == AV_RL32("ifr2")){ p->pict_type= AV_PICTURE_TYPE_I; - if(decode_i2_frame(f, buf-4, frame_size) < 0){ + if(decode_i2_frame(f, buf-4, frame_size+4) < 0){ av_log(f->avctx, AV_LOG_ERROR, "decode i2 frame failed\n"); return -1; } |