From cdd06db56f2a76396da1ab0648f4962b959bb2ab Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Mon, 4 May 2020 23:57:47 +0200 Subject: avcodec: add NotchLC decoder --- libavformat/isom.c | 2 ++ libavformat/riff.c | 1 + 2 files changed, 3 insertions(+) (limited to 'libavformat') 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 } }; -- cgit v1.2.3