Browse Source

avformat/isom: add MagicYUV FourCCs

tags/n3.1
Piotr Bandurski Paul B Mahol 9 years ago
parent
commit
4c7d3e827c
1 changed files with 8 additions and 0 deletions
  1. +8
    -0
      libavformat/isom.c

+ 8
- 0
libavformat/isom.c View File

@@ -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 },
};



Loading…
Cancel
Save