diff options
author | Piotr Bandurski <ami_stuff@o2.pl> | 2016-06-01 13:47:50 +0200 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2016-06-01 14:59:06 +0200 |
commit | 4c7d3e827c80627e4c77b01cc9478f4603a59b90 (patch) | |
tree | 72b8a095a03afeea0c57dd56990486c67bb9b3de /libavformat/isom.c | |
parent | 77f9c4b7aa9eb793b3019025e177245896821816 (diff) | |
download | ffmpeg-4c7d3e827c80627e4c77b01cc9478f4603a59b90.tar.gz |
avformat/isom: add MagicYUV FourCCs
Diffstat (limited to 'libavformat/isom.c')
-rw-r--r-- | libavformat/isom.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/libavformat/isom.c b/libavformat/isom.c index 61ca6ddd4b..819b684d11 100644 --- a/libavformat/isom.c +++ b/libavformat/isom.c @@ -269,6 +269,14 @@ const AVCodecTag ff_codec_movvideo_tags[] = { { AV_CODEC_ID_DXV, MKTAG('D', 'X', 'D', '3') }, { AV_CODEC_ID_DXV, MKTAG('D', 'X', 'D', 'I') }, + { AV_CODEC_ID_MAGICYUV, MKTAG('M', '8', 'R', 'G') }, + { AV_CODEC_ID_MAGICYUV, MKTAG('M', '8', 'R', 'A') }, + { AV_CODEC_ID_MAGICYUV, MKTAG('M', '8', 'G', '0') }, + { AV_CODEC_ID_MAGICYUV, MKTAG('M', '8', 'Y', '0') }, + { AV_CODEC_ID_MAGICYUV, MKTAG('M', '8', 'Y', '2') }, + { AV_CODEC_ID_MAGICYUV, MKTAG('M', '8', 'Y', '4') }, + { AV_CODEC_ID_MAGICYUV, MKTAG('M', '8', 'Y', 'A') }, + { AV_CODEC_ID_NONE, 0 }, }; |