mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-14 11:00:08 +01:00
avcodec/h264dec: Fix potential array overread
add padding before scantable arrays See:522d850e68Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> (cherry picked from commit380b48fb9f) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
@@ -422,6 +422,7 @@ typedef struct H264Context {
|
|||||||
uint8_t (*mvd_table[2])[2];
|
uint8_t (*mvd_table[2])[2];
|
||||||
uint8_t *direct_table;
|
uint8_t *direct_table;
|
||||||
|
|
||||||
|
uint8_t scan_padding[16];
|
||||||
uint8_t zigzag_scan[16];
|
uint8_t zigzag_scan[16];
|
||||||
uint8_t zigzag_scan8x8[64];
|
uint8_t zigzag_scan8x8[64];
|
||||||
uint8_t zigzag_scan8x8_cavlc[64];
|
uint8_t zigzag_scan8x8_cavlc[64];
|
||||||
|
|||||||
Reference in New Issue
Block a user