mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-16 12:21:18 +00:00
aiff: don't skip block_align==0 check on COMM-after-SSND files.
This prevents SIGFPEs when using block_align for divisions. Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: libav-stable@libav.org
This commit is contained in:
parent
ce7aee9b73
commit
32a659c758
@ -263,12 +263,12 @@ static int aiff_read_header(AVFormatContext *s)
|
||||
}
|
||||
}
|
||||
|
||||
got_sound:
|
||||
if (!st->codec->block_align) {
|
||||
av_log(s, AV_LOG_ERROR, "could not find COMM tag\n");
|
||||
av_log(s, AV_LOG_ERROR, "could not find COMM tag or invalid block_align value\n");
|
||||
return -1;
|
||||
}
|
||||
|
||||
got_sound:
|
||||
/* Now positioned, get the sound data start and end */
|
||||
avpriv_set_pts_info(st, 64, 1, st->codec->sample_rate);
|
||||
st->start_time = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user