summaryrefslogtreecommitdiff
path: root/libavformat/nut.c
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2010-05-26 22:26:19 +0000
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2010-05-26 22:26:19 +0000
commitab8f6009026b9d2e9ee72ee3524c34356bbb1523 (patch)
tree7d8008a04dc12b79fbc53d509736f54196e4570b /libavformat/nut.c
parent9c6b3b97d740465aee7526ddf77b3eea95a2957c (diff)
Add support for the newly added Nut codec tags (added in Nut r669):
Y1[00][16], [16][00]1Y, Y3[11][16], [16][11]3Y, Y3[10][16], [16][10]3Y, Y3[00][16], [16][00]3Y, Y4[11][ 8], Y2[00][ 8]. Originally committed as revision 23342 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/nut.c')
-rw-r--r--libavformat/nut.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/libavformat/nut.c b/libavformat/nut.c
index b148a78db8..7a85961fec 100644
--- a/libavformat/nut.c
+++ b/libavformat/nut.c
@@ -61,6 +61,16 @@ const AVCodecTag ff_nut_video_tags[] = {
{ CODEC_ID_RAWVIDEO, MKTAG('R', 'G', 'B', 4 ) },
{ CODEC_ID_RAWVIDEO, MKTAG('R', 'G', 'B', 48 ) },
{ CODEC_ID_RAWVIDEO, MKTAG(48 , 'R', 'G', 'B') },
+ { CODEC_ID_RAWVIDEO, MKTAG('Y', '1', 0 , 16 ) },
+ { CODEC_ID_RAWVIDEO, MKTAG(16 , 0 , '1', 'Y') },
+ { CODEC_ID_RAWVIDEO, MKTAG('Y', '3', 11 , 16 ) },
+ { CODEC_ID_RAWVIDEO, MKTAG(16 , 11 , '3', 'Y') },
+ { CODEC_ID_RAWVIDEO, MKTAG('Y', '3', 10 , 16 ) },
+ { CODEC_ID_RAWVIDEO, MKTAG(16 , 10 , '3', 'Y') },
+ { CODEC_ID_RAWVIDEO, MKTAG('Y', '3', 0 , 16 ) },
+ { CODEC_ID_RAWVIDEO, MKTAG(16 , 0 , '3', 'Y') },
+ { CODEC_ID_RAWVIDEO, MKTAG('Y', '4', 11 , 8 ) },
+ { CODEC_ID_RAWVIDEO, MKTAG('Y', '2', 0 , 8 ) },
{ CODEC_ID_NONE , 0 }
};