diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-05-20 15:12:10 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-05-21 12:56:11 +0200 |
commit | a90baa63c33fbba3d79f5c119fd4c7fad722d701 (patch) | |
tree | 106906571fe44a7d67356ec5fa0cd51e2f967d05 /libavutil | |
parent | 1d8b1f0e51106c1a24cee565cd29ea469a1d83f8 (diff) | |
download | ffmpeg-a90baa63c33fbba3d79f5c119fd4c7fad722d701.tar.gz |
add YUVJ411P
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/pixdesc.c | 12 | ||||
-rw-r--r-- | libavutil/pixfmt.h | 1 |
2 files changed, 13 insertions, 0 deletions
diff --git a/libavutil/pixdesc.c b/libavutil/pixdesc.c index 8ec6c53083..17f7e27af7 100644 --- a/libavutil/pixdesc.c +++ b/libavutil/pixdesc.c @@ -225,6 +225,18 @@ const AVPixFmtDescriptor av_pix_fmt_descriptors[AV_PIX_FMT_NB] = { }, .flags = AV_PIX_FMT_FLAG_PLANAR, }, + [AV_PIX_FMT_YUVJ411P] = { + .name = "yuvj411p", + .nb_components = 3, + .log2_chroma_w = 2, + .log2_chroma_h = 0, + .comp = { + { 0, 0, 1, 0, 7 }, /* Y */ + { 1, 0, 1, 0, 7 }, /* U */ + { 2, 0, 1, 0, 7 }, /* V */ + }, + .flags = AV_PIX_FMT_FLAG_PLANAR, + }, [AV_PIX_FMT_GRAY8] = { .name = "gray", .nb_components = 1, diff --git a/libavutil/pixfmt.h b/libavutil/pixfmt.h index 1760ab14e1..b063251714 100644 --- a/libavutil/pixfmt.h +++ b/libavutil/pixfmt.h @@ -237,6 +237,7 @@ enum AVPixelFormat { AV_PIX_FMT_GBRAP, ///< planar GBRA 4:4:4:4 32bpp AV_PIX_FMT_GBRAP16BE, ///< planar GBRA 4:4:4:4 64bpp, big-endian AV_PIX_FMT_GBRAP16LE, ///< planar GBRA 4:4:4:4 64bpp, little-endian + AV_PIX_FMT_YUVJ411P, ///< planar YUV 4:1:1, 12bpp, (1 Cr & Cb sample per 4x1 Y samples) AV_PIX_FMT_NB, ///< number of pixel formats, DO NOT USE THIS if you want to link with shared libav* because the number of formats might differ between versions #if FF_API_PIX_FMT |