This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
Fix 10L in r16670 (broke deblocking code)
Originally committed as revision 16671 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Jason Garrett-Glaser
16 years ago
parent
0a359cf157
commit
5a44906d8e
1 changed files
with
1 additions
and
1 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavcodec/vc1.c
+ 1
- 1
libavcodec/vc1.c
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 = ((d ^ d_sign) - d_sign) >> 3;
d_sign ^= a0_sign;
d_sign ^= a0_sign;
if(
(
d_sign ^ clip_sign
) | ~d
)
if( d_sign ^ clip_sign )
d = 0;
d = 0;
else{
else{
d = FFMIN(d, clip);
d = FFMIN(d, clip);
Write
Preview
Loading…
Cancel
Save