summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libavcodec/vc1.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vc1.c b/libavcodec/vc1.c
index 115ee717d5..433df7b07b 100644
--- a/libavcodec/vc1.c
+++ b/libavcodec/vc1.c
@@ -334,7 +334,7 @@ static int av_always_inline vc1_filter_line(uint8_t* src, int stride, int pq){
d = ((d ^ d_sign) - d_sign) >> 3;
d_sign ^= a0_sign;
- if( (d_sign ^ clip_sign) | ~d )
+ if( d_sign ^ clip_sign )
d = 0;
else{
d = FFMIN(d, clip);