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

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPascal Massimino <pascal.massimino@gmail.com>2014-09-23 01:48:57 +0400
committerMichael Niedermayer <michaelni@gmx.at>2014-09-23 19:15:20 +0400
commite5b3112996c3da45aa03b39c5ade375d40d4407d (patch)
tree250459f914699037720fd3bbc2733836681e5747 /libavcodec/webp.c
parentb0f7de3e7c735cf6e222006ecbbd3e11b5f90a21 (diff)
avcodec/webp: fix default palette color 0xff000000 -> 0x00000000
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/webp.c')
-rw-r--r--libavcodec/webp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/webp.c b/libavcodec/webp.c
index 66c2d57c84..274708df79 100644
--- a/libavcodec/webp.c
+++ b/libavcodec/webp.c
@@ -1066,7 +1066,7 @@ static int apply_color_indexing_transform(WebPContext *s)
p = GET_PIXEL(img->frame, x, y);
i = p[2];
if (i >= pal->frame->width) {
- AV_WB32(p, 0xFF000000);
+ AV_WB32(p, 0x00000000);
} else {
const uint8_t *pi = GET_PIXEL(pal->frame, i, 0);
AV_COPY32(p, pi);