TJExample: Remove "underlying codec" references

(Oversight from 9a146f0f23)
This commit is contained in:
DRC
2023-01-20 16:02:30 -06:00
parent 0738305ec5
commit 2aac545899
2 changed files with 9 additions and 15 deletions

View File

@@ -1,6 +1,6 @@
/* /*
* Copyright (C)2011-2012, 2014-2015, 2017-2018 D. R. Commander. * Copyright (C)2011-2012, 2014-2015, 2017-2018, 2023 D. R. Commander.
* All Rights Reserved. * All Rights Reserved.
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met: * modification, are permitted provided that the following conditions are met:
@@ -136,14 +136,11 @@ class TJExample implements TJCustomFilter {
System.out.println("-display = Display output image (Output filename need not be specified in this"); System.out.println("-display = Display output image (Output filename need not be specified in this");
System.out.println(" case.)\n"); System.out.println(" case.)\n");
System.out.println("-fastupsample = Use the fastest chrominance upsampling algorithm available in"); System.out.println("-fastupsample = Use the fastest chrominance upsampling algorithm available\n");
System.out.println(" the underlying codec.\n");
System.out.println("-fastdct = Use the fastest DCT/IDCT algorithms available in the underlying"); System.out.println("-fastdct = Use the fastest DCT/IDCT algorithm available\n");
System.out.println(" codec.\n");
System.out.println("-accuratedct = Use the most accurate DCT/IDCT algorithms available in the"); System.out.println("-accuratedct = Use the most accurate DCT/IDCT algorithm available\n");
System.out.println(" underlying codec.\n");
System.exit(1); System.exit(1);
} }

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright (C)2011-2012, 2014-2015, 2017, 2019, 2021-2022 * Copyright (C)2011-2012, 2014-2015, 2017, 2019, 2021-2023
* D. R. Commander. All Rights Reserved. * D. R. Commander. All Rights Reserved.
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without
@@ -149,14 +149,11 @@ static void usage(char *programName)
printf("General Options\n"); printf("General Options\n");
printf("---------------\n\n"); printf("---------------\n\n");
printf("-fastupsample = Use the fastest chrominance upsampling algorithm available in\n"); printf("-fastupsample = Use the fastest chrominance upsampling algorithm available\n\n");
printf(" the underlying codec.\n\n");
printf("-fastdct = Use the fastest DCT/IDCT algorithms available in the underlying\n"); printf("-fastdct = Use the fastest DCT/IDCT algorithm available\n\n");
printf(" codec.\n\n");
printf("-accuratedct = Use the most accurate DCT/IDCT algorithms available in the\n"); printf("-accuratedct = Use the most accurate DCT/IDCT algorithm available\n\n");
printf(" underlying codec.\n\n");
exit(1); exit(1);
} }