From 20cea0c7de870d2fee6036082f202b431f49e200 Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Tue, 2 Jun 2015 18:54:37 +0000 Subject: avfilter/vf_blend: fix vividlight blend mode Pointed-out-by: Rudolf Polzer Signed-off-by: Paul B Mahol --- libavfilter/vf_blend.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavfilter/vf_blend.c') diff --git a/libavfilter/vf_blend.c b/libavfilter/vf_blend.c index 49711acbcb..33d3f283d6 100644 --- a/libavfilter/vf_blend.c +++ b/libavfilter/vf_blend.c @@ -214,7 +214,7 @@ DEFINE_BLEND(reflect, (B == 255) ? B : FFMIN(255, (A * A / (255 - B)))) DEFINE_BLEND(and, A & B) DEFINE_BLEND(or, A | B) DEFINE_BLEND(xor, A ^ B) -DEFINE_BLEND(vividlight, (B < 128) ? BURN(A, 2 * B) : DODGE(A, 2 * (B - 128))) +DEFINE_BLEND(vividlight, (A < 128) ? BURN(2 * A, B) : DODGE(2 * (A - 128), B)) static void blend_expr(const uint8_t *top, int top_linesize, const uint8_t *bottom, int bottom_linesize, -- cgit v1.2.3