X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavcodec%2Fdct-test.c;h=3bd95fdf2dd4fe116d18fed22507c9f484421dc4;hb=e1b2f6ec119dc43a66ff731b98c768778497ff95;hp=2222cd5144da31a133dd3cec404e13da65948a05;hpb=537a9e5cc28fe55deedc30953737cff124ac570f;p=ffmpeg diff --git a/libavcodec/dct-test.c b/libavcodec/dct-test.c index 2222cd5144d..3bd95fdf2dd 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); @@ -511,10 +511,11 @@ static void idct248_error(const char *name, static void help(void) { - printf("dct-test [-i] []\n" + printf("dct-test [-i] [] []\n" "test-number 0 -> test with random matrixes\n" " 1 -> test with random sparse matrixes\n" " 2 -> do 3. test from mpeg4 std\n" + "bits Number of time domain bits to use, 8 is default\n" "-i test IDCT implementations\n" "-4 test IDCT248 implementations\n" "-t speed test\n");