From d9fea0b588801581851cf9f7dc3647cb1cd9d962 Mon Sep 17 00:00:00 2001 From: Fabrice Bellard Date: Mon, 6 Aug 2001 01:53:21 +0000 Subject: [PATCH] added 422P and 444P formats (need to patch ffmpeg.c so that it is handled in all the program) Originally committed as revision 38 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/avcodec.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 1e1c2efb23..fe78557404 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -26,6 +26,8 @@ enum PixelFormat { PIX_FMT_YUV422, PIX_FMT_RGB24, PIX_FMT_BGR24, + PIX_FMT_YUV422P, + PIX_FMT_YUV444P, }; /* in bytes */