mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2025-02-20 04:00:45 +00: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)
|
if (max_size <= 0)
|
||||||
return AVERROR_EOF;
|
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 */
|
/* Now for that packet */
|
||||||
switch (st->codecpar->codec_id) {
|
switch (st->codecpar->codec_id) {
|
||||||
case AV_CODEC_ID_ADPCM_IMA_QT:
|
case AV_CODEC_ID_ADPCM_IMA_QT:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user