summaryrefslogtreecommitdiffstats
path: root/libavfilter/x86
diff options
context:
space:
mode:
Diffstat (limited to 'libavfilter/x86')
-rw-r--r--libavfilter/x86/vf_eq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/x86/vf_eq.c b/libavfilter/x86/vf_eq.c
index cfcc18f..2e42cdf 100644
--- a/libavfilter/x86/vf_eq.c
+++ b/libavfilter/x86/vf_eq.c
@@ -72,7 +72,7 @@ static void process_MMX(EQParameters *param, uint8_t *dst, int dst_stride,
for (i = w&7; i; i--) {
pel = ((*src++ * contrast) >> 12) + brightness;
- if (pel & 768)
+ if (pel & ~255)
pel = (-pel) >> 31;
*dst++ = pel;
}
OpenPOWER on IntegriCloud