]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/webp.c
Merge commit '2f172f1ae984b763c06069adb51d0053b3834f4b'
[ffmpeg] / libavcodec / webp.c
index 66c2d57c84fa8f34e274653c5a1dbe183fec5034..274708df793456f15a471e27c2b96de5fb38edd3 100644 (file)
@@ -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);