Browse Source

Add pix_fmt_info for yuva444.

Reviewed-by: Paul B Mahol
tags/n0.11
Carl Eugen Hoyos 14 years ago
parent
commit
6838df0488
2 changed files with 6 additions and 1 deletions
  1. +5
    -0
      libavcodec/imgconvert.c
  2. +1
    -1
      libavcodec/version.h

+ 5
- 0
libavcodec/imgconvert.c View File

@@ -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,


+ 1
- 1
libavcodec/version.h View File

@@ -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, \


Loading…
Cancel
Save