diff options
author | Jason Garrett-Glaser <darkshikari@gmail.com> | 2009-01-18 07:20:12 +0000 |
---|---|---|
committer | Jason Garrett-Glaser <darkshikari@gmail.com> | 2009-01-18 07:20:12 +0000 |
commit | 5a44906d8e2bc8e0578edb9115bec15e8181e8bf (patch) | |
tree | 6c77fafe91762d7ab1c101eaecf2a78345a2cc21 | |
parent | 0a359cf157957f3eb37760f731fa75dd320fd659 (diff) | |
download | ffmpeg-5a44906d8e2bc8e0578edb9115bec15e8181e8bf.tar.gz |
Fix 10L in r16670 (broke deblocking code)
Originally committed as revision 16671 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/vc1.c | 2 |
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); |