From: Piotr Bandurski Date: Fri, 10 Aug 2012 13:48:20 +0000 (+0200) Subject: mov: remux AALP tag X-Git-Tag: android-x86-4.4-r1~10123 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=bd922050140a0f65c02d861d6faa65724f80e4dc;p=android-x86%2Fexternal-ffmpeg.git mov: remux AALP tag AALP(AALP001) tag is present in 32bpp files encoded with avid codecs Signed-off-by: Michael Niedermayer --- diff --git a/libavformat/mov.c b/libavformat/mov.c index 6e196f31c1..dce2c91524 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -2535,6 +2535,7 @@ static int mov_read_tref(MOVContext *c, AVIOContext *pb, MOVAtom atom) static const MOVParseTableEntry mov_default_parse_table[] = { { MKTAG('A','C','L','R'), mov_read_avid }, { MKTAG('A','P','R','G'), mov_read_avid }, +{ MKTAG('A','A','L','P'), mov_read_avid }, { MKTAG('A','R','E','S'), mov_read_avid }, { MKTAG('a','v','s','s'), mov_read_avss }, { MKTAG('c','h','p','l'), mov_read_chpl },