summaryrefslogtreecommitdiff
path: root/libavformat/nut.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-01-10 17:50:33 +0100
committerMichael Niedermayer <michaelni@gmx.at>2014-01-10 17:51:13 +0100
commite2bb185e62e3017735d39ab3e38b7d4f11541ba4 (patch)
tree7801695176d9fa0996bec2e9c45c959e04d86a3e /libavformat/nut.c
parentab9d7e0b120c9b940ddc490dab7805758580ba0e (diff)
nut: Support XYZ12 rawvideo
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/nut.c')
-rw-r--r--libavformat/nut.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/libavformat/nut.c b/libavformat/nut.c
index 8b8a4cb8ac..7e97e32905 100644
--- a/libavformat/nut.c
+++ b/libavformat/nut.c
@@ -157,6 +157,9 @@ const AVCodecTag ff_nut_video_tags[] = {
{ AV_CODEC_ID_RAWVIDEO, MKTAG('G', '3', 0, 16) },
{ AV_CODEC_ID_RAWVIDEO, MKTAG(16, 0, '3', 'G') },
+ { AV_CODEC_ID_RAWVIDEO, MKTAG('X', 'Y', 'Z' , 36 ) },
+ { AV_CODEC_ID_RAWVIDEO, MKTAG(36 , 'Z' , 'Y', 'X') },
+
{ AV_CODEC_ID_NONE, 0 }
};