summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordcommander <dcommander@3789f03b-4d11-0410-bbf8-ca57d06f2519>2012-06-29 23:51:35 +0000
committerdcommander <dcommander@3789f03b-4d11-0410-bbf8-ca57d06f2519>2012-06-29 23:51:35 +0000
commit3694638694a7e751744de4f6f5b016ffe2f3c943 (patch)
treef1247d6e5e1b463156377739df12fd719e397b25
parentb0a9d68d28ca1ab2012cfde7a960cc54fdcc08d8 (diff)
Cosmetic fixes to argument lists
git-svn-id: https://libjpeg-turbo.svn.sourceforge.net/svnroot/libjpeg-turbo@852 3789f03b-4d11-0410-bbf8-ca57d06f2519
-rw-r--r--branches/1.2.x/java/TJExample.java10
-rw-r--r--branches/1.2.x/tjbench.c4
2 files changed, 7 insertions, 7 deletions
diff --git a/branches/1.2.x/java/TJExample.java b/branches/1.2.x/java/TJExample.java
index fc5d53a..e726892 100644
--- a/branches/1.2.x/java/TJExample.java
+++ b/branches/1.2.x/java/TJExample.java
@@ -80,13 +80,13 @@ public class TJExample implements TJCustomFilter {
System.out.println(" compressed using no subsampling or grayscale, or 16x8 for 4:2:2 or 16x16");
System.out.println(" for 4:2:0.)\n");
System.out.println("-display = Display output image (Output file need not be specified in this");
- System.out.println(" case.)");
- System.out.println("-fastupsample = Use fast, inaccurate upsampling code to perform 4:2:2 and 4:2:0");
- System.out.println(" YUV decoding");
+ System.out.println(" case.)\n");
+ System.out.println("-fastupsample = Use the fastest chrominance upsampling algorithm available in");
+ System.out.println(" the underlying codec\n");
System.out.println("-fastdct = Use the fastest DCT/IDCT algorithms available in the underlying");
- System.out.println(" codec");
+ System.out.println(" codec\n");
System.out.println("-accuratedct = Use the most accurate DCT/IDCT algorithms available in the");
- System.out.println(" underlying codec");
+ System.out.println(" underlying codec\n");
System.exit(1);
}
diff --git a/branches/1.2.x/tjbench.c b/branches/1.2.x/tjbench.c
index a56eb3b..26a1972 100644
--- a/branches/1.2.x/tjbench.c
+++ b/branches/1.2.x/tjbench.c
@@ -680,8 +680,8 @@ void usage(char *progname)
printf(" Force MMX, SSE, SSE2, or SSE3 code paths in the underlying codec\n");
printf("-rgb, -bgr, -rgbx, -bgrx, -xbgr, -xrgb =\n");
printf(" Test the specified color conversion path in the codec (default: BGR)\n");
- printf("-fastupsample = Use fast, inaccurate upsampling code to perform 4:2:2 and 4:2:0\n");
- printf(" YUV decoding\n");
+ printf("-fastupsample = Use the fastest chrominance upsampling algorithm available in\n");
+ printf(" the underlying codec\n");
printf("-fastdct = Use the fastest DCT/IDCT algorithms available in the underlying\n");
printf(" codec\n");
printf("-accuratedct = Use the most accurate DCT/IDCT algorithms available in the\n");