summaryrefslogtreecommitdiff
path: root/libavcodec/vc1.c
diff options
context:
space:
mode:
authorJason Garrett-Glaser <darkshikari@gmail.com>2009-01-18 07:20:12 +0000
committerJason Garrett-Glaser <darkshikari@gmail.com>2009-01-18 07:20:12 +0000
commit5a44906d8e2bc8e0578edb9115bec15e8181e8bf (patch)
tree6c77fafe91762d7ab1c101eaecf2a78345a2cc21 /libavcodec/vc1.c
parent0a359cf157957f3eb37760f731fa75dd320fd659 (diff)
Fix 10L in r16670 (broke deblocking code)
Originally committed as revision 16671 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vc1.c')
-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);