mirror of https://git.ffmpeg.org/ffmpeg.git
atrac3: Fix crash in tonal component decoding.
Fixes Ticket780 Bug Found by: cosminamironesei Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
552ec4c9fd
commit
9af6abdc17
|
@ -402,6 +402,8 @@ static int decodeTonalComponents (GetBitContext *gb, tonal_component *pComponent
|
|||
|
||||
for (k=0; k<coded_components; k++) {
|
||||
sfIndx = get_bits(gb,6);
|
||||
if(component_count>=64)
|
||||
return AVERROR_INVALIDDATA;
|
||||
pComponent[component_count].pos = j * 64 + (get_bits(gb,6));
|
||||
max_coded_values = SAMPLES_PER_FRAME - pComponent[component_count].pos;
|
||||
coded_values = coded_values_per_component + 1;
|
||||
|
|
Loading…
Reference in New Issue