Module: libav Branch: release/11 Commit: 96024964f2d7bbb594cfb33253aebe3418080b14
Author: Luca Barbato <[email protected]> Committer: Luca Barbato <[email protected]> Date: Sat Feb 6 13:15:36 2016 +0100 mov: Force the full parsing of mp3 Some muxer might or might not fit incomplete mp3 frames in their packets. Bug-Id: 899 CC: [email protected] Signed-off-by: Luca Barbato <[email protected]> --- libavformat/mov.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libavformat/mov.c b/libavformat/mov.c index 352510b..26d220d 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -2273,6 +2273,9 @@ static int mov_read_trak(MOVContext *c, AVIOContext *pb, MOVAtom atom) st->codec->width = 0; /* let decoder init width/height */ st->codec->height= 0; break; + case AV_CODEC_ID_MP3: + st->need_parsing = AVSTREAM_PARSE_FULL; + break; } /* Do not need those anymore. */ _______________________________________________ libav-commits mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-commits
