mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-08 06:09:50 +00:00
mpegaudio_parser: reset state to prevent it to be random
Fixes Ticket1718 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
570931d411
commit
93b240f4a5
1 changed files with 1 additions and 0 deletions
|
|
@ -54,6 +54,7 @@ static int mpegaudio_parse(AVCodecParserContext *s1,
|
|||
int inc= FFMIN(buf_size - i, s->frame_size);
|
||||
i += inc;
|
||||
s->frame_size -= inc;
|
||||
state = 0;
|
||||
|
||||
if(!s->frame_size){
|
||||
next= i;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue