You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
ipmovie: do not read audio packets before the codec is known
Prevents a division by zero.
This commit is contained in:
@@ -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) {
|
||||
|
Reference in New Issue
Block a user