From 4196cfb75bc5a2c185691861e73995244d6df564 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20=C3=96man?= Date: Wed, 18 Jul 2007 08:11:16 +0000 Subject: =?UTF-8?q?add=20YUV440P=20and=20YUVJ440P=20support=20patch=20by?= =?UTF-8?q?=20Andreas=20=C3=96man:=20\andreas=20olebyn=20nu/=20original=20?= =?UTF-8?q?thread:=20[FFmpeg-devel]=20half=20vertical=20chroma=20resolutio?= =?UTF-8?q?n=20from=20JPEGs..=20date:=2007/03/2007=2001:29=20PM?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Originally committed as revision 9732 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavutil/avutil.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'libavutil') diff --git a/libavutil/avutil.h b/libavutil/avutil.h index 1ae8cbc..b491dc9 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 }; -- cgit v1.1