aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/mpeg12.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2002-03-24 23:45:13 +0000
committerMichael Niedermayer <michaelni@gmx.at>2002-03-24 23:45:13 +0000
commit9c15096e3f724f10e21d3dea30a8d49e04a3cf7c (patch)
tree0c978009ebb565351950ee1a72447ffc739438af /libavcodec/mpeg12.c
parentd633c2c0964b05b398e24b2447d9487316641794 (diff)
downloadffmpeg-9c15096e3f724f10e21d3dea30a8d49e04a3cf7c.tar.gz
fcode_tables where too small, found by Klaas-Pieter Vlieg <vlieg@eurescom.de>
Originally committed as revision 360 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpeg12.c')
-rw-r--r--libavcodec/mpeg12.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mpeg12.c b/libavcodec/mpeg12.c
index fba90e7144..4d61df53c2 100644
--- a/libavcodec/mpeg12.c
+++ b/libavcodec/mpeg12.c
@@ -51,7 +51,7 @@ static int mpeg2_decode_block_intra(MpegEncContext *s,
int n);
static int mpeg_decode_motion(MpegEncContext *s, int fcode, int pred);
-static UINT16 mv_penalty[MAX_FCODE][MAX_MV*2+1];
+static UINT16 mv_penalty[MAX_FCODE+1][MAX_MV*2+1];
static UINT8 fcode_tab[MAX_MV*2+1];
static void put_header(MpegEncContext *s, int header)