Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-04-16 16:15:09 +0400
committerMichael Niedermayer <michaelni@gmx.at>2013-04-16 16:27:14 +0400
commit1314f534e54d13cfe7a0280614e7ca6655072b80 (patch)
tree9739822f69c0c34e19236f9f26a55fcce2a14c9f
parent0b06bd1c7a1df2d957d4a74765359ec024c971f5 (diff)
avutil/pixdesc: fix rgb0 descriptors
Found-by: durandal_1707 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-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,
},