diff options
author | Stephan Hilb <stephan@ecshi.net> | 2019-06-06 22:31:44 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2019-06-10 21:35:20 +0200 |
commit | 1954161628ab136148b4fc5db0447480bc616467 (patch) | |
tree | e7fc2af0e9e93357bc050d3e53a2704065e1b3ca | |
parent | e62f625163f8cde794ebe02bc228735b4e65c772 (diff) | |
download | ffmpeg-streaming-1954161628ab136148b4fc5db0447480bc616467.zip ffmpeg-streaming-1954161628ab136148b4fc5db0447480bc616467.tar.gz |
avformat/nut: add cpia codec
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r-- | libavformat/nut.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/nut.c b/libavformat/nut.c index 4fbbcb1..937f452 100644 --- a/libavformat/nut.c +++ b/libavformat/nut.c @@ -43,6 +43,7 @@ const AVCodecTag ff_nut_video_tags[] = { { AV_CODEC_ID_XFACE, MKTAG('X', 'F', 'A', 'C') }, { AV_CODEC_ID_VP9, MKTAG('V', 'P', '9', '0') }, { AV_CODEC_ID_HEVC, MKTAG('H', 'E', 'V', 'C') }, + { AV_CODEC_ID_CPIA, MKTAG('C', 'P', 'i', 'A') }, { AV_CODEC_ID_RAWVIDEO, MKTAG('R', 'G', 'B', 15 ) }, { AV_CODEC_ID_RAWVIDEO, MKTAG('B', 'G', 'R', 15 ) }, { AV_CODEC_ID_RAWVIDEO, MKTAG('R', 'G', 'B', 16 ) }, |