提交 5a44906d 编写于 作者: J Jason Garrett-Glaser

Fix 10L in r16670 (broke deblocking code)

Originally committed as revision 16671 to svn://svn.ffmpeg.org/ffmpeg/trunk
上级 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% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册