[FFmpeg-cvslog] Add pix_fmt_info for yuva444.
Carl Eugen Hoyos
git at videolan.org
Mon Jan 30 11:37:41 CET 2012
ffmpeg | branch: master | Carl Eugen Hoyos <cehoyos at ag.or.at> | Mon Jan 30 11:24:02 2012 +0100| [6838df0488aa4ae4f66751ed2eed63e4c69b7751] | committer: Carl Eugen Hoyos
Add pix_fmt_info for yuva444.
Reviewed-by: Paul B Mahol
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=6838df0488aa4ae4f66751ed2eed63e4c69b7751
---
libavcodec/imgconvert.c | 5 +++++
libavcodec/version.h | 2 +-
2 files changed, 6 insertions(+), 1 deletions(-)
diff --git a/libavcodec/imgconvert.c b/libavcodec/imgconvert.c
index 9fcd94c..51f6b0e 100644
--- a/libavcodec/imgconvert.c
+++ b/libavcodec/imgconvert.c
@@ -113,6 +113,11 @@ static const PixFmtInfo pix_fmt_info[PIX_FMT_NB] = {
.color_type = FF_COLOR_YUV,
},
+ [PIX_FMT_YUVA444P] = {
+ .is_alpha = 1,
+ .color_type = FF_COLOR_YUV,
+ },
+
/* JPEG YUV */
[PIX_FMT_YUVJ420P] = {
.color_type = FF_COLOR_YUV_JPEG,
diff --git a/libavcodec/version.h b/libavcodec/version.h
index b27ffc9..097909a 100644
--- a/libavcodec/version.h
+++ b/libavcodec/version.h
@@ -22,7 +22,7 @@
#define LIBAVCODEC_VERSION_MAJOR 54
#define LIBAVCODEC_VERSION_MINOR 0
-#define LIBAVCODEC_VERSION_MICRO 100
+#define LIBAVCODEC_VERSION_MICRO 101
#define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \
LIBAVCODEC_VERSION_MINOR, \
More information about the ffmpeg-cvslog
mailing list