summaryrefslogtreecommitdiff
path: root/libavformat
diff options
context:
space:
mode:
authorPiotr Bandurski <ami_stuff@o2.pl>2012-08-10 15:48:20 +0200
committerMichael Niedermayer <michaelni@gmx.at>2012-08-12 18:46:29 +0200
commitbd922050140a0f65c02d861d6faa65724f80e4dc (patch)
tree33b1ce6d0b90699efa2d1c2fc8cc1967015bfdea /libavformat
parentbbe1a468d85ae65c6ff6ca5503b1632d1339fdff (diff)
mov: remux AALP tag
AALP(AALP001) tag is present in 32bpp files encoded with avid codecs Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/mov.c1
1 files changed, 1 insertions, 0 deletions
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 },