lavfi/drawutils: fix blending computation in blend_line function

If width is not alligned with hsub, background component should only be
multiplied once by sub alpha component.
pull/8/head
Matthieu Bouron 12 years ago committed by Nicolas George
parent f27eb1b702
commit be0a67bd65
  1. 1
      libavfilter/drawutils.c

@ -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;

Loading…
Cancel
Save