From bd922050140a0f65c02d861d6faa65724f80e4dc Mon Sep 17 00:00:00 2001 From: Piotr Bandurski Date: Fri, 10 Aug 2012 15:48:20 +0200 Subject: [PATCH] mov: remux AALP tag AALP(AALP001) tag is present in 32bpp files encoded with avid codecs Signed-off-by: Michael Niedermayer --- libavformat/mov.c | 1 + 1 file changed, 1 insertion(+) 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 },