You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
avformat/ipmovie: Fix late audio detection
Fixes audio in Ticket117 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
@@ -631,7 +631,8 @@ static int ipmovie_read_header(AVFormatContext *s)
|
||||
|
||||
if (ipmovie->audio_type) {
|
||||
return init_audio(s);
|
||||
}
|
||||
} else
|
||||
s->ctx_flags |= AVFMTCTX_NOHEADER;
|
||||
|
||||
return 0;
|
||||
}
|
||||
@@ -656,7 +657,7 @@ static int ipmovie_read_packet(AVFormatContext *s,
|
||||
else if (ret == CHUNK_INIT_VIDEO || ret == CHUNK_INIT_AUDIO)
|
||||
continue;
|
||||
else
|
||||
ret = -1;
|
||||
continue;
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
Reference in New Issue
Block a user