summaryrefslogtreecommitdiff
path: root/libavutil
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-04-16 14:15:09 +0200
committerMichael Niedermayer <michaelni@gmx.at>2013-04-16 14:27:14 +0200
commit1314f534e54d13cfe7a0280614e7ca6655072b80 (patch)
tree9739822f69c0c34e19236f9f26a55fcce2a14c9f /libavutil
parent0b06bd1c7a1df2d957d4a74765359ec024c971f5 (diff)
avutil/pixdesc: fix rgb0 descriptors
Found-by: durandal_1707 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavutil')
-rw-r--r--libavutil/pixdesc.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/libavutil/pixdesc.c b/libavutil/pixdesc.c
index c17eae50e4..d3cec170ea 100644
--- a/libavutil/pixdesc.c
+++ b/libavutil/pixdesc.c
@@ -498,7 +498,6 @@ const AVPixFmtDescriptor av_pix_fmt_descriptors[AV_PIX_FMT_NB] = {
{ 0, 3, 1, 0, 7 }, /* R */
{ 0, 3, 2, 0, 7 }, /* G */
{ 0, 3, 3, 0, 7 }, /* B */
- { 0, 3, 4, 0, 7 }, /* A */
},
.flags = PIX_FMT_RGB,
},
@@ -523,7 +522,6 @@ const AVPixFmtDescriptor av_pix_fmt_descriptors[AV_PIX_FMT_NB] = {
{ 0, 3, 3, 0, 7 }, /* R */
{ 0, 3, 2, 0, 7 }, /* G */
{ 0, 3, 1, 0, 7 }, /* B */
- { 0, 3, 4, 0, 7 }, /* A */
},
.flags = PIX_FMT_RGB,
},