diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-10-08 19:57:30 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-10-08 19:57:30 +0200 |
commit | 3d5971d9f732ff2292527dd68174f493bae2eb47 (patch) | |
tree | 78600d341fcf647995f34fb5d18cd7871fe01f25 /libavcodec/dct-test.c | |
parent | f3bacced244b90975ceb6e7c283413d34761e26c (diff) | |
download | ffmpeg-3d5971d9f732ff2292527dd68174f493bae2eb47.tar.gz |
dct-test: better term for meximum error.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/dct-test.c')
-rw-r--r-- | libavcodec/dct-test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dct-test.c b/libavcodec/dct-test.c index 2222cd5144..409996f46f 100644 --- a/libavcodec/dct-test.c +++ b/libavcodec/dct-test.c @@ -316,7 +316,7 @@ static int dct_error(const struct algo *dct, int test, int is_idct, int speed, c spec_err = is_idct && (err_inf > 1 || omse > 0.02 || fabs(ome) > 0.0015); - printf("%s %s: ppe=%d omse=%0.8f ome=%0.8f syserr=%0.8f maxout=%d blockSumErr=%d\n", + printf("%s %s: max_err=%d omse=%0.8f ome=%0.8f syserr=%0.8f maxout=%d blockSumErr=%d\n", is_idct ? "IDCT" : "DCT", dct->name, err_inf, omse, ome, (double) sysErrMax / NB_ITS, maxout, blockSumErrMax); |