diff --git a/java/TJBench.java b/java/TJBench.java index 37706b23..1eb1caea 100644 --- a/java/TJBench.java +++ b/java/TJBench.java @@ -781,11 +781,11 @@ final class TJBench { System.out.println("-componly = Stop after running compression tests. Do not test decompression."); System.out.println("-lossless = Generate lossless JPEG images when compressing (implies"); System.out.println(" -subsamp 444). PSV is the predictor selection value (1-7)."); - System.out.println("-maxmemory = Memory limit (in megabytes) for intermediate buffers used with"); + System.out.println("-maxmemory N = Memory limit (in megabytes) for intermediate buffers used with"); System.out.println(" progressive JPEG compression and decompression, Huffman table"); System.out.println(" optimization, lossless JPEG compression, and lossless transformation"); System.out.println(" [default = no limit]"); - System.out.println("-maxpixels = Input image size limit (in pixels) [default = no limit]"); + System.out.println("-maxpixels N = Input image size limit (in pixels) [default = no limit]"); System.out.println("-nowrite = Do not write reference or output images (improves consistency of"); System.out.println(" benchmark results)"); System.out.println("-rgb, -bgr, -rgbx, -bgrx, -xbgr, -xrgb ="); diff --git a/tjbench.c b/tjbench.c index e9e73c45..316c5df5 100644 --- a/tjbench.c +++ b/tjbench.c @@ -918,11 +918,11 @@ static void usage(char *progName) printf("-componly = Stop after running compression tests. Do not test decompression.\n"); printf("-lossless = Generate lossless JPEG images when compressing (implies\n"); printf(" -subsamp 444). PSV is the predictor selection value (1-7).\n"); - printf("-maxmemory = Memory limit (in megabytes) for intermediate buffers used with\n"); + printf("-maxmemory N = Memory limit (in megabytes) for intermediate buffers used with\n"); printf(" progressive JPEG compression and decompression, Huffman table\n"); printf(" optimization, lossless JPEG compression, and lossless transformation\n"); printf(" [default = no limit]\n"); - printf("-maxpixels = Input image size limit (in pixels) [default = no limit]\n"); + printf("-maxpixels N = Input image size limit (in pixels) [default = no limit]\n"); printf("-nowrite = Do not write reference or output images (improves consistency of\n"); printf(" benchmark results)\n"); printf("-rgb, -bgr, -rgbx, -bgrx, -xbgr, -xrgb =\n");