summaryrefslogtreecommitdiff
path: root/libavformat/nut.c
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2012-02-09 23:25:46 +0000
committerVittorio Giovara <vittorio.giovara@gmail.com>2014-03-16 23:29:51 +0100
commit58c215961a9067bb670387bbd72286c30de04b93 (patch)
treee87f7c85d2c48e49e761775b321684c2333f91fa /libavformat/nut.c
parentcccac7654f3f6b82967bc6ae08b35ae8b4fbe1a9 (diff)
raw, nut: Support rgba64 encoding
Diffstat (limited to 'libavformat/nut.c')
-rw-r--r--libavformat/nut.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/libavformat/nut.c b/libavformat/nut.c
index d9a042bca0..43ae8a0f0e 100644
--- a/libavformat/nut.c
+++ b/libavformat/nut.c
@@ -77,6 +77,10 @@ const AVCodecTag ff_nut_video_tags[] = {
{ AV_CODEC_ID_RAWVIDEO, MKTAG('R', 'G', 'B', 48) },
{ AV_CODEC_ID_RAWVIDEO, MKTAG(48, 'B', 'G', 'R') },
{ AV_CODEC_ID_RAWVIDEO, MKTAG(48, 'R', 'G', 'B') },
+ { AV_CODEC_ID_RAWVIDEO, MKTAG('R', 'B', 'A', 64 ) },
+ { AV_CODEC_ID_RAWVIDEO, MKTAG('B', 'R', 'A', 64 ) },
+ { AV_CODEC_ID_RAWVIDEO, MKTAG(64 , 'R', 'B', 'A') },
+ { AV_CODEC_ID_RAWVIDEO, MKTAG(64 , 'B', 'R', 'A') },
{ AV_CODEC_ID_RAWVIDEO, MKTAG('Y', '3', 11, 10) },
{ AV_CODEC_ID_RAWVIDEO, MKTAG(10, 11, '3', 'Y') },
{ AV_CODEC_ID_RAWVIDEO, MKTAG('Y', '3', 10, 10) },