summaryrefslogtreecommitdiff
path: root/libavformat/nut.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2010-06-06 11:43:53 +0000
committerMichael Niedermayer <michaelni@gmx.at>2010-06-06 11:43:53 +0000
commit63455b8c7ec2cf2b1a9701996a0e0bf7fbd47fda (patch)
treeef573c7f0dc39dfc842addd17693fd2bdb8e0c59 /libavformat/nut.c
parentde51f22d8580c3b19d3b53ddfe7523f34e478ede (diff)
bgr/rgb444 for nut
Originally committed as revision 23504 to svn://svn.ffmpeg.org/ffmpeg/trunk
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 7a85961fec..658a8d0035 100644
--- a/libavformat/nut.c
+++ b/libavformat/nut.c
@@ -40,6 +40,10 @@ const AVCodecTag ff_nut_video_tags[] = {
{ CODEC_ID_RAWVIDEO, MKTAG(15 , 'R', 'G', 'B') },
{ CODEC_ID_RAWVIDEO, MKTAG(16 , 'B', 'G', 'R') },
{ CODEC_ID_RAWVIDEO, MKTAG(16 , 'R', 'G', 'B') },
+ { CODEC_ID_RAWVIDEO, MKTAG('R', 'G', 'B', 12 ) },
+ { CODEC_ID_RAWVIDEO, MKTAG('B', 'G', 'R', 12 ) },
+ { CODEC_ID_RAWVIDEO, MKTAG(12 , 'B', 'G', 'R') },
+ { CODEC_ID_RAWVIDEO, MKTAG(12 , 'R', 'G', 'B') },
{ CODEC_ID_RAWVIDEO, MKTAG('R', 'G', 'B', 'A') },
{ CODEC_ID_RAWVIDEO, MKTAG('B', 'G', 'R', 'A') },
{ CODEC_ID_RAWVIDEO, MKTAG('A', 'B', 'G', 'R') },