diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2006-03-10 21:20:49 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2006-03-10 21:20:49 +0000 |
commit | 3aeefb93c8cb1447b5869ebfe133aa7819055462 (patch) | |
tree | 7faeb2389a16265e305969382605b4fe56355b52 /libavcodec/h263data.h | |
parent | 5d9db9c4a9bdfa2dfcbe292670a96fbffb81e44a (diff) | |
download | ffmpeg-3aeefb93c8cb1447b5869ebfe133aa7819055462.tar.gz |
out of array read fix
Originally committed as revision 5142 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h263data.h')
-rw-r--r-- | libavcodec/h263data.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/h263data.h b/libavcodec/h263data.h index 2968531a55..01bcaedb41 100644 --- a/libavcodec/h263data.h +++ b/libavcodec/h263data.h @@ -274,8 +274,8 @@ const uint16_t ff_mba_max[6]={ 47, 98, 395,1583,6335,9215 }; -const uint8_t ff_mba_length[6]={ - 6, 7, 9, 11, 13, 14 +const uint8_t ff_mba_length[7]={ + 6, 7, 9, 11, 13, 14, 14 }; const uint8_t ff_h263_loop_filter_strength[32]={ |