summaryrefslogtreecommitdiff
path: root/libavformat
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2022-09-21 18:22:33 +0200
committerPaul B Mahol <onemda@gmail.com>2022-09-30 19:11:36 +0200
commit4b6b75c7526e644e3516a79f0379b2e2f75a054d (patch)
treea9307f55c253e7e641e46a43adbd7aa150b56db5 /libavformat
parent9a494b82d998823d0de68cb6b8db83cc451d1781 (diff)
avcodec: add Media 100i decoder
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/isom_tags.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/libavformat/isom_tags.c b/libavformat/isom_tags.c
index 362cb77e8f..e2b80405cc 100644
--- a/libavformat/isom_tags.c
+++ b/libavformat/isom_tags.c
@@ -274,6 +274,13 @@ const AVCodecTag ff_codec_movvideo_tags[] = {
{ AV_CODEC_ID_RAWVIDEO, MKTAG('B', 'G', 'G', 'R') }, /* ASC Bayer BGGR */
+ { AV_CODEC_ID_MEDIA100, MKTAG('6', '0', '1', 'N') },
+ { AV_CODEC_ID_MEDIA100, MKTAG('6', '0', '1', 'P') },
+ { AV_CODEC_ID_MEDIA100, MKTAG('d', 't', 'n', 't') },
+ { AV_CODEC_ID_MEDIA100, MKTAG('d', 't', 'N', 'T') },
+ { AV_CODEC_ID_MEDIA100, MKTAG('d', 't', 'p', 'a') },
+ { AV_CODEC_ID_MEDIA100, MKTAG('d', 't', 'P', 'A') },
+
{ AV_CODEC_ID_NONE, 0 },
};