]> git.sesse.net Git - ffmpeg/commitdiff
lavfi/paletteuse: fix debug_mean_error after aba926e7d
authorClément Bœsch <u@pkh.me>
Sat, 28 Oct 2017 16:01:41 +0000 (18:01 +0200)
committerClément Bœsch <u@pkh.me>
Sat, 28 Oct 2017 16:03:28 +0000 (18:03 +0200)
libavfilter/vf_paletteuse.c

index 19017ac7b70b6bfa5d781352404e72a72c6c7058..84c31de3bebb88281bb7d97c80afec16432faacc 100644 (file)
@@ -787,9 +787,9 @@ static void debug_mean_error(PaletteUseContext *s, const AVFrame *in1,
         for (x = 0; x < in1->width; x++) {
             const uint32_t c1 = src1[x];
             const uint32_t c2 = palette[src2[x]];
-            const uint8_t rgb1[] = {c1 >> 16 & 0xff, c1 >> 8 & 0xff, c1 & 0xff};
-            const uint8_t rgb2[] = {c2 >> 16 & 0xff, c2 >> 8 & 0xff, c2 & 0xff};
-            mean_err += diff(rgb1, rgb2, s->trans_thresh);
+            const uint8_t argb1[] = {0xff, c1 >> 16 & 0xff, c1 >> 8 & 0xff, c1 & 0xff};
+            const uint8_t argb2[] = {0xff, c2 >> 16 & 0xff, c2 >> 8 & 0xff, c2 & 0xff};
+            mean_err += diff(argb1, argb2, s->trans_thresh);
         }
         src1 += src1_linesize;
         src2 += src2_linesize;