summaryrefslogtreecommitdiff
path: root/libavformat
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2020-05-04 23:57:47 +0200
committerPaul B Mahol <onemda@gmail.com>2020-05-19 20:09:25 +0200
commitcdd06db56f2a76396da1ab0648f4962b959bb2ab (patch)
tree24f626a01fe62eb32e7ad307986101f5d88a0a5e /libavformat
parentb707abf0911b1cb997bf8b1912c970e1e15996cf (diff)
avcodec: add NotchLC decoder
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/isom.c2
-rw-r--r--libavformat/riff.c1
2 files changed, 3 insertions, 0 deletions
diff --git a/libavformat/isom.c b/libavformat/isom.c
index eefe9277b4..44c7b13038 100644
--- a/libavformat/isom.c
+++ b/libavformat/isom.c
@@ -313,6 +313,8 @@ const AVCodecTag ff_codec_movvideo_tags[] = {
{ AV_CODEC_ID_PIXLET, MKTAG('p', 'x', 'l', 't') },
+ { AV_CODEC_ID_NOTCHLC, MKTAG('n', 'c', 'l', 'c') },
+
{ AV_CODEC_ID_NONE, 0 },
};
diff --git a/libavformat/riff.c b/libavformat/riff.c
index bf6a8f47f8..162e2b1bf2 100644
--- a/libavformat/riff.c
+++ b/libavformat/riff.c
@@ -493,6 +493,7 @@ const AVCodecTag ff_codec_bmp_tags[] = {
{ AV_CODEC_ID_MVDV, MKTAG('M', 'V', 'D', 'V') },
{ AV_CODEC_ID_MVHA, MKTAG('M', 'V', 'H', 'A') },
{ AV_CODEC_ID_MV30, MKTAG('M', 'V', '3', '0') },
+ { AV_CODEC_ID_NOTCHLC, MKTAG('n', 'l', 'c', '1') },
{ AV_CODEC_ID_NONE, 0 }
};