Module: libav Branch: release/11 Commit: d45ccd2bc47c1f8fa16e41936ecda0557e08b288
Author: Luca Barbato <[email protected]> Committer: Luca Barbato <[email protected]> Date: Sat Feb 6 13:15:37 2016 +0100 mkv: Force the full parsing of mp3 Some muxer might or might not fit incomplete mp3 frames in their packets. Signed-off-by: Luca Barbato <[email protected]> --- libavformat/matroskadec.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavformat/matroskadec.c b/libavformat/matroskadec.c index 67df4b34..5583f85 100644 --- a/libavformat/matroskadec.c +++ b/libavformat/matroskadec.c @@ -1800,6 +1800,8 @@ static int matroska_parse_tracks(AVFormatContext *s) st->codec->channels = track->audio.channels; if (st->codec->codec_id != AV_CODEC_ID_AAC) st->need_parsing = AVSTREAM_PARSE_HEADERS; + if (st->codec->codec_id == AV_CODEC_ID_MP3) + st->need_parsing = AVSTREAM_PARSE_FULL; } else if (track->type == MATROSKA_TRACK_TYPE_SUBTITLE) { st->codec->codec_type = AVMEDIA_TYPE_SUBTITLE; if (st->codec->codec_id == AV_CODEC_ID_SSA) _______________________________________________ libav-commits mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-commits
