summaryrefslogtreecommitdiff
path: root/libavutil/pixdesc.c
diff options
context:
space:
mode:
authorHendrik Leppkes <h.leppkes@gmail.com>2015-09-09 12:56:49 +0200
committerLuca Barbato <lu_zero@gentoo.org>2015-09-10 12:08:57 +0200
commitc7ed26ad6035793c7212c17545b0ded18b72db69 (patch)
tree87ea317cacc3d52fc262961832892fe69662137c /libavutil/pixdesc.c
parente336c51e6ffcdb93fbcf3c6153d378400608526b (diff)
pixdesc: Add missing alpha flag for yuva420p9be
Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
Diffstat (limited to 'libavutil/pixdesc.c')
-rw-r--r--libavutil/pixdesc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/pixdesc.c b/libavutil/pixdesc.c
index 7989c4a08c..029291ac62 100644
--- a/libavutil/pixdesc.c
+++ b/libavutil/pixdesc.c
@@ -588,7 +588,7 @@ static const AVPixFmtDescriptor av_pix_fmt_descriptors[AV_PIX_FMT_NB] = {
{ 2, 2, 0, 0, 9, 1, 8, 1 }, /* V */
{ 3, 2, 0, 0, 9, 1, 8, 1 }, /* A */
},
- .flags = AV_PIX_FMT_FLAG_BE | AV_PIX_FMT_FLAG_PLANAR,
+ .flags = AV_PIX_FMT_FLAG_BE | AV_PIX_FMT_FLAG_PLANAR | AV_PIX_FMT_FLAG_ALPHA,
},
[AV_PIX_FMT_YUVA420P9LE] = {
.name = "yuva420p9le",