1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-09-30 08:35:41 +02:00

Fix 10L in r16670 (broke deblocking code)

Originally committed as revision 16671 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Jason Garrett-Glaser 2009-01-18 07:20:12 +00:00
parent 0a359cf157
commit 5a44906d8e

View File

@ -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);