summaryrefslogtreecommitdiff
path: root/libavcodec/fic.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavcodec/fic.c')
-rw-r--r--libavcodec/fic.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/fic.c b/libavcodec/fic.c
index f5a2ffe369..0f9f798e43 100644
--- a/libavcodec/fic.c
+++ b/libavcodec/fic.c
@@ -195,7 +195,7 @@ static av_always_inline void fic_alpha_blend(uint8_t *dst, uint8_t *src,
int i;
for (i = 0; i < size; i++)
- dst[i] = (dst[i] * (256 - alpha[i]) + src[i] * alpha[i]) >> 8;
+ dst[i] += ((src[i] - dst[i]) * alpha[i]) >> 8;
}
static void fic_draw_cursor(AVCodecContext *avctx, int cur_x, int cur_y)