# HG changeset patch # User benoit # Date 1184746276 0 # Node ID 6797bf24b2dea35060b982d6bd90026169cb6489 # Parent 4d3f4347b71868ecd66701098b45a0cce7dae019 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 diff -r 4d3f4347b718 -r 6797bf24b2de avutil.h --- a/avutil.h Sat Jul 14 14:34:40 2007 +0000 +++ b/avutil.h Wed Jul 18 08:11:16 2007 +0000 @@ -103,6 +103,8 @@ 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 };