Commit 8bc80016 authored by Michael Niedermayer's avatar Michael Niedermayer

avfilter/vf_removelogo: Add () to protect the argument of apply_mask_fudge_factor()

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent d501b986
......@@ -114,7 +114,7 @@ AVFILTER_DEFINE_CLASS(removelogo);
* opinion. This will calculate only at init-time, so you can put a
* long expression here without effecting performance.
*/
#define apply_mask_fudge_factor(x) (((x) >> 2) + x)
#define apply_mask_fudge_factor(x) (((x) >> 2) + (x))
/**
* Pre-process an image to give distance information.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment