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
tiny_psnr: Use the correct abs() version
tags/n3.0
Vittorio Giovara
9 years ago
parent
c9943f00cf
commit
26e8fa3b50
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
tests/tiny_psnr.c
+ 1
- 1
tests/tiny_psnr.c
View File
@@ -208,7 +208,7 @@ int main(int argc, char *argv[])
b = buf[1][j];
}
sse += (a - b) * (a - b);
dist = abs(a - b);
dist =
ll
abs(a - b);
if (dist > maxdist)
maxdist = dist;
break;
Write
Preview
Loading…
Cancel
Save