diff options
author | Piotr Bandurski <ami_stuff@o2.pl> | 2012-08-10 15:48:20 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-08-12 18:46:29 +0200 |
commit | bd922050140a0f65c02d861d6faa65724f80e4dc (patch) | |
tree | 33b1ce6d0b90699efa2d1c2fc8cc1967015bfdea /libavformat/mov.c | |
parent | bbe1a468d85ae65c6ff6ca5503b1632d1339fdff (diff) | |
download | ffmpeg-bd922050140a0f65c02d861d6faa65724f80e4dc.tar.gz |
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/mov.c')
-rw-r--r-- | libavformat/mov.c | 1 |
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 }, |