diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-01-10 17:50:33 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-01-10 17:51:13 +0100 |
commit | e2bb185e62e3017735d39ab3e38b7d4f11541ba4 (patch) | |
tree | 7801695176d9fa0996bec2e9c45c959e04d86a3e /libavformat | |
parent | ab9d7e0b120c9b940ddc490dab7805758580ba0e (diff) | |
download | ffmpeg-e2bb185e62e3017735d39ab3e38b7d4f11541ba4.tar.gz |
nut: Support XYZ12 rawvideo
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/nut.c | 3 |
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 } }; |