diff options
author | Andreas Öman <andreas@olebyn.nu> | 2007-07-18 08:11:16 +0000 |
---|---|---|
committer | Benoit Fouet <benoit.fouet@free.fr> | 2007-07-18 08:11:16 +0000 |
commit | 4196cfb75bc5a2c185691861e73995244d6df564 (patch) | |
tree | 52fe00acf862c532bbfcc48ba5a6290f9ab54ad3 /libavutil | |
parent | 104d04182d85e8538e8934c072432a05ab7ed999 (diff) | |
download | ffmpeg-4196cfb75bc5a2c185691861e73995244d6df564.tar.gz |
add YUV440P and YUVJ440P support
patch by Andreas Öman: \andreas olebyn nu/
original thread: [FFmpeg-devel] half vertical chroma resolution from JPEGs..
date: 07/03/2007 01:29 PM
Originally committed as revision 9732 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/avutil.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavutil/avutil.h b/libavutil/avutil.h index 1ae8cbc46d..b491dc9c14 100644 --- a/libavutil/avutil.h +++ b/libavutil/avutil.h @@ -103,6 +103,8 @@ enum PixelFormat { PIX_FMT_GRAY16BE, ///< Y , 16bpp, big-endian PIX_FMT_GRAY16LE, ///< Y , 16bpp, little-endian + PIX_FMT_YUV440P, ///< Planar YUV 4:4:0 (1 Cr & Cb sample per 1x2 Y samples) + PIX_FMT_YUVJ440P, ///< Planar YUV 4:4:0 full scale (jpeg) 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 }; |