diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2012-05-08 08:39:37 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2012-05-08 08:39:37 +0200 |
commit | 143a5c55ff4d792e66045b6b0c44d26fe30158f1 (patch) | |
tree | dcf0c775022125e560716cd6b2baf791fe15147e /libavutil/pixfmt.h | |
parent | 7da0a07283e8546c7cf4cde9eca7ad4fe9f57fb4 (diff) | |
download | ffmpeg-143a5c55ff4d792e66045b6b0c44d26fe30158f1.tar.gz |
Add yuva422p pix_fmt.
Diffstat (limited to 'libavutil/pixfmt.h')
-rw-r--r-- | libavutil/pixfmt.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavutil/pixfmt.h b/libavutil/pixfmt.h index b3a8dd045a..1e81a2ae37 100644 --- a/libavutil/pixfmt.h +++ b/libavutil/pixfmt.h @@ -180,6 +180,7 @@ enum PixelFormat { PIX_FMT_0BGR, ///< packed BGR 8:8:8, 32bpp, 0BGR0BGR... PIX_FMT_BGR0, ///< packed BGR 8:8:8, 32bpp, BGR0BGR0... PIX_FMT_YUVA444P, ///< planar YUV 4:4:4 32bpp, (1 Cr & Cb sample per 1x1 Y & A samples) + PIX_FMT_YUVA422P, ///< planar YUV 4:2:2 24bpp, (1 Cr & Cb sample per 2x1 Y & A samples) 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 }; |