mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
avformat/aiffdec: do not fail if header parser hits EOF
Based on patch by Martin Vignali <martin.vignali@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
ae81e8a9c5
commit
c5c09501f9
@ -223,6 +223,11 @@ static int aiff_read_header(AVFormatContext *s)
|
||||
while (filesize > 0) {
|
||||
/* parse different chunks */
|
||||
size = get_tag(pb, &tag);
|
||||
|
||||
if (size == AVERROR_EOF && offset > 0 && st->codec->block_align) {
|
||||
av_log(s, AV_LOG_WARNING, "header parser hit EOF\n");
|
||||
goto got_sound;
|
||||
}
|
||||
if (size < 0)
|
||||
return size;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user