mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
aiff: check block_align in aiff_read_packet
It can be unset in avcodec_parameters_from_context and a value of 0 causes SIGFPE crashes. Reviewed-by: Michael Niedermayer <michael@niedermayer.cc> Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
This commit is contained in:
parent
4d92bd3ca2
commit
93c39db5f1
@ -371,6 +371,11 @@ static int aiff_read_packet(AVFormatContext *s,
|
||||
if (max_size <= 0)
|
||||
return AVERROR_EOF;
|
||||
|
||||
if (!st->codecpar->block_align) {
|
||||
av_log(s, AV_LOG_ERROR, "block_align not set\n");
|
||||
return AVERROR_INVALIDDATA;
|
||||
}
|
||||
|
||||
/* Now for that packet */
|
||||
switch (st->codecpar->codec_id) {
|
||||
case AV_CODEC_ID_ADPCM_IMA_QT:
|
||||
|
Loading…
Reference in New Issue
Block a user