summaryrefslogtreecommitdiff
path: root/libswscale
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2012-01-27 00:43:23 +0000
committerMichael Niedermayer <michaelni@gmx.at>2012-01-28 01:30:41 +0100
commitf9ca1ac7968f155db51944eac11d393d862e1baa (patch)
tree5262b4b535362761fcb310259024d063316009fc /libswscale
parent01fcbdf9cedcf14418b5886205261e532167f949 (diff)
sws/pixfmt/pixdesc: add support for yuva444p
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> Conflicts: libavutil/avutil.h libavutil/pixfmt.h
Diffstat (limited to 'libswscale')
-rw-r--r--libswscale/utils.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libswscale/utils.c b/libswscale/utils.c
index 5826c17e31..b483d07406 100644
--- a/libswscale/utils.c
+++ b/libswscale/utils.c
@@ -111,6 +111,7 @@ static const FormatEntry format_entries[PIX_FMT_NB] = {
[PIX_FMT_YUV440P] = { 1 , 1 },
[PIX_FMT_YUVJ440P] = { 1 , 1 },
[PIX_FMT_YUVA420P] = { 1 , 1 },
+ [PIX_FMT_YUVA444P] = { 1 , 1 },
[PIX_FMT_RGB48BE] = { 1 , 1 },
[PIX_FMT_RGB48LE] = { 1 , 1 },
[PIX_FMT_RGBA64BE] = { 0 , 0 },