mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2025-02-17 11:28:05 +00:00
Merge commit '26e8fa3b508eb047e85f4e923fc8e82a1aa656ba'
* commit '26e8fa3b508eb047e85f4e923fc8e82a1aa656ba': tiny_psnr: Use the correct abs() version Merged-by: Hendrik Leppkes <h.leppkes@gmail.com>
This commit is contained in:
commit
fc97b1f091
@ -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…
x
Reference in New Issue
Block a user