README.md, jquant2.c: Use gender-neutral pronouns

Closes #444
This commit is contained in:
DRC
2020-07-28 13:00:39 -05:00
parent a46c111d9f
commit 30282a878c
2 changed files with 5 additions and 5 deletions

View File

@@ -179,8 +179,8 @@ supported and which aren't.
NOTE: As of this writing, extensive research has been conducted into the NOTE: As of this writing, extensive research has been conducted into the
usefulness of DCT scaling as a means of data reduction and SmartScale as a usefulness of DCT scaling as a means of data reduction and SmartScale as a
means of quality improvement. The reader is invited to peruse the research at means of quality improvement. Readers are invited to peruse the research at
<http://www.libjpeg-turbo.org/About/SmartScale> and draw his/her own conclusions, <http://www.libjpeg-turbo.org/About/SmartScale> and draw their own conclusions,
but it is the general belief of our project that these features have not but it is the general belief of our project that these features have not
demonstrated sufficient usefulness to justify inclusion in libjpeg-turbo. demonstrated sufficient usefulness to justify inclusion in libjpeg-turbo.

View File

@@ -4,7 +4,7 @@
* This file was part of the Independent JPEG Group's software: * This file was part of the Independent JPEG Group's software:
* Copyright (C) 1991-1996, Thomas G. Lane. * Copyright (C) 1991-1996, Thomas G. Lane.
* libjpeg-turbo Modifications: * libjpeg-turbo Modifications:
* Copyright (C) 2009, 2014-2015, D. R. Commander. * Copyright (C) 2009, 2014-2015, 2020, D. R. Commander.
* For conditions of distribution and use, see the accompanying README.ijg * For conditions of distribution and use, see the accompanying README.ijg
* file. * file.
* *
@@ -1145,7 +1145,7 @@ start_pass_2_quant(j_decompress_ptr cinfo, boolean is_pre_scan)
int i; int i;
/* Only F-S dithering or no dithering is supported. */ /* Only F-S dithering or no dithering is supported. */
/* If user asks for ordered dither, give him F-S. */ /* If user asks for ordered dither, give them F-S. */
if (cinfo->dither_mode != JDITHER_NONE) if (cinfo->dither_mode != JDITHER_NONE)
cinfo->dither_mode = JDITHER_FS; cinfo->dither_mode = JDITHER_FS;
@@ -1263,7 +1263,7 @@ jinit_2pass_quantizer(j_decompress_ptr cinfo)
cquantize->sv_colormap = NULL; cquantize->sv_colormap = NULL;
/* Only F-S dithering or no dithering is supported. */ /* Only F-S dithering or no dithering is supported. */
/* If user asks for ordered dither, give him F-S. */ /* If user asks for ordered dither, give them F-S. */
if (cinfo->dither_mode != JDITHER_NONE) if (cinfo->dither_mode != JDITHER_NONE)
cinfo->dither_mode = JDITHER_FS; cinfo->dither_mode = JDITHER_FS;