Commit b704eaef authored by darkshikari's avatar darkshikari

Fix 10L in r16670 (broke deblocking code)


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@16671 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 1c167141
......@@ -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