mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-08 06:09:50 +00:00
avcodec/cbs_jpeg: Fix size of huffman symbol table array
L[i] can be in the range of 0-255, see table B.5 of ITU T.81. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
parent
0dd1ff67c8
commit
321c31cfe6
2 changed files with 3 additions and 3 deletions
|
|
@ -99,7 +99,7 @@ typedef struct JPEGRawHuffmanTable {
|
|||
uint8_t Tc;
|
||||
uint8_t Th;
|
||||
uint8_t L[16];
|
||||
uint8_t V[224];
|
||||
uint8_t V[256];
|
||||
} JPEGRawHuffmanTable;
|
||||
|
||||
typedef struct JPEGRawHuffmanTableSpecification {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue