Browse Source

Merge commit '26e8fa3b508eb047e85f4e923fc8e82a1aa656ba'

* commit '26e8fa3b508eb047e85f4e923fc8e82a1aa656ba':
  tiny_psnr: Use the correct abs() version

Merged-by: Hendrik Leppkes <h.leppkes@gmail.com>
tags/n3.0
Hendrik Leppkes 10 years ago
parent
commit
fc97b1f091
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      tests/tiny_psnr.c

+ 1
- 1
tests/tiny_psnr.c View File

@@ -190,7 +190,7 @@ static int run_psnr(FILE *f[2], int len, int shift, int skip_bytes)
b = buf[1][j];
}
sse += (a - b) * (a - b);
dist = abs(a - b);
dist = llabs(a - b);
if (dist > maxdist)
maxdist = dist;
break;


Loading…
Cancel
Save