Commit 5a44906d authored by Jason Garrett-Glaser's avatar Jason Garrett-Glaser

Fix 10L in r16670 (broke deblocking code)

Originally committed as revision 16671 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 0a359cf1
......@@ -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);
......
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