diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2012-07-05 04:20:58 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-07-05 04:23:55 +0200 |
commit | 73bb4e9ca61e5dc4c7531b23d036c851ab9b7a16 (patch) | |
tree | 253844257b3f24a1f2b423d7a08cd09f86a3afd0 /libavcodec/raw.c | |
parent | 1f9bc3104afd98054c1b0f7b407e8791436c8aa0 (diff) | |
download | ffmpeg-73bb4e9ca61e5dc4c7531b23d036c851ab9b7a16.tar.gz |
nut: add 12/14 bit yuv to nut/raw
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/raw.c')
-rw-r--r-- | libavcodec/raw.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/libavcodec/raw.c b/libavcodec/raw.c index 8919a65408..33160c4084 100644 --- a/libavcodec/raw.c +++ b/libavcodec/raw.c @@ -123,6 +123,18 @@ const PixelFormatTag ff_raw_pix_fmt_tags[] = { { PIX_FMT_YUV422P10BE, MKTAG(10 , 10 , '3', 'Y') }, { PIX_FMT_YUV444P10LE, MKTAG('Y', '3', 0 , 10 ) }, { PIX_FMT_YUV444P10BE, MKTAG(10 , 0 , '3', 'Y') }, + { PIX_FMT_YUV420P12LE, MKTAG('Y', '3', 11 , 12 ) }, + { PIX_FMT_YUV420P12BE, MKTAG(12 , 11 , '3', 'Y') }, + { PIX_FMT_YUV422P12LE, MKTAG('Y', '3', 10 , 12 ) }, + { PIX_FMT_YUV422P12BE, MKTAG(12 , 10 , '3', 'Y') }, + { PIX_FMT_YUV444P12LE, MKTAG('Y', '3', 0 , 12 ) }, + { PIX_FMT_YUV444P12BE, MKTAG(12 , 0 , '3', 'Y') }, + { PIX_FMT_YUV420P14LE, MKTAG('Y', '3', 11 , 14 ) }, + { PIX_FMT_YUV420P14BE, MKTAG(14 , 11 , '3', 'Y') }, + { PIX_FMT_YUV422P14LE, MKTAG('Y', '3', 10 , 14 ) }, + { PIX_FMT_YUV422P14BE, MKTAG(14 , 10 , '3', 'Y') }, + { PIX_FMT_YUV444P14LE, MKTAG('Y', '3', 0 , 14 ) }, + { PIX_FMT_YUV444P14BE, MKTAG(14 , 0 , '3', 'Y') }, { PIX_FMT_YUV420P16LE, MKTAG('Y', '3', 11 , 16 ) }, { PIX_FMT_YUV420P16BE, MKTAG(16 , 11 , '3', 'Y') }, { PIX_FMT_YUV422P16LE, MKTAG('Y', '3', 10 , 16 ) }, |