]> git.sesse.net Git - ffmpeg/blobdiff - libavfilter/drawutils.c
Merge commit 'c88d245c9866e48cb8a238b7564964c1fcf3315f'
[ffmpeg] / libavfilter / drawutils.c
index aefd09d1ea10c2ec9e68f07fe590f2f80e37cb8c..aebc000f4cc6966b77ee1cde05c0434a61ad3807 100644 (file)
@@ -313,7 +313,6 @@ static void blend_line(uint8_t *dst, unsigned src, unsigned alpha,
     unsigned tau = 0x1010101 - alpha;
     int x;
 
-    src *= alpha;
     if (left) {
         unsigned suba = (left * alpha) >> hsub;
         *dst = (*dst * (0x1010101 - suba) + src * suba) >> 24;