diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-08-09 22:42:28 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-08-09 23:02:48 +0200 |
commit | 12538bb9c2f4424a822d9dbd4424286da986f2dc (patch) | |
tree | f4875d4da23edf4f2ce5015f337ae53f1328c9e3 | |
parent | 200170e8c0b7affea87847ca1f5b0c9a9cf19533 (diff) | |
download | ffmpeg-12538bb9c2f4424a822d9dbd4424286da986f2dc.tar.gz |
avformat/nut: support planar rgb
Fixes first half of Ticket2274
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavformat/nut.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/libavformat/nut.c b/libavformat/nut.c index 32035d5b12..7e7997998f 100644 --- a/libavformat/nut.c +++ b/libavformat/nut.c @@ -144,6 +144,19 @@ const AVCodecTag ff_nut_video_tags[] = { { AV_CODEC_ID_RAWVIDEO, MKTAG('Y', '4', 0, 16) }, { AV_CODEC_ID_RAWVIDEO, MKTAG(16, 0, '4', 'Y') }, + { AV_CODEC_ID_RAWVIDEO, MKTAG('G', '3', 0, 8) }, + + { AV_CODEC_ID_RAWVIDEO, MKTAG('G', '3', 0, 9) }, + { AV_CODEC_ID_RAWVIDEO, MKTAG( 9, 0, '3', 'G') }, + { AV_CODEC_ID_RAWVIDEO, MKTAG('G', '3', 0, 10) }, + { AV_CODEC_ID_RAWVIDEO, MKTAG(10, 0, '3', 'G') }, + { AV_CODEC_ID_RAWVIDEO, MKTAG('G', '3', 0, 12) }, + { AV_CODEC_ID_RAWVIDEO, MKTAG(12, 0, '3', 'G') }, + { AV_CODEC_ID_RAWVIDEO, MKTAG('G', '3', 0, 14) }, + { AV_CODEC_ID_RAWVIDEO, MKTAG(14, 0, '3', 'G') }, + { AV_CODEC_ID_RAWVIDEO, MKTAG('G', '3', 0, 16) }, + { AV_CODEC_ID_RAWVIDEO, MKTAG(16, 0, '3', 'G') }, + { AV_CODEC_ID_NONE, 0 } }; |