mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-29 22:00:58 +02:00
ipmovie: do not read audio packets before the codec is known
Prevents a division by zero.
This commit is contained in:
parent
696ace50ea
commit
f5be84cfbc
@ -116,6 +116,11 @@ static int load_ipmovie_packet(IPMVEContext *s, AVIOContext *pb,
|
||||
int chunk_type;
|
||||
|
||||
if (s->audio_chunk_offset) {
|
||||
if (s->audio_type == CODEC_ID_NONE) {
|
||||
av_log(NULL, AV_LOG_ERROR, "Can not read audio packet before"
|
||||
"audio codec is known\n");
|
||||
return CHUNK_BAD;
|
||||
}
|
||||
|
||||
/* adjust for PCM audio by skipping chunk header */
|
||||
if (s->audio_type != CODEC_ID_INTERPLAY_DPCM) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user