diff options
Diffstat (limited to 'src/3rdparty/libjpeg/jdmainct.c')
-rw-r--r-- | src/3rdparty/libjpeg/jdmainct.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/3rdparty/libjpeg/jdmainct.c b/src/3rdparty/libjpeg/jdmainct.c index c5db1489a..c9a48fe11 100644 --- a/src/3rdparty/libjpeg/jdmainct.c +++ b/src/3rdparty/libjpeg/jdmainct.c @@ -27,7 +27,7 @@ * * Postprocessor input data is counted in "row groups". A row group * is defined to be (v_samp_factor * DCT_scaled_size / min_DCT_scaled_size) - * sample rows of each component. (We retquire DCT_scaled_size values to be + * sample rows of each component. (We require DCT_scaled_size values to be * chosen such that these numbers are integers. In practice DCT_scaled_size * values will likely be powers of two, so we actually have the stronger * condition that DCT_scaled_size / min_DCT_scaled_size is an integer.) @@ -45,7 +45,7 @@ * * Depending on the vertical scaling algorithm used, the upsampler may need * access to the sample row(s) above and below its current input row group. - * The upsampler is retquired to set need_context_rows TRUE at global selection + * The upsampler is required to set need_context_rows TRUE at global selection * time if so. When need_context_rows is FALSE, this controller can simply * obtain one iMCU row at a time from the coefficient controller and dole it * out as row groups to the postprocessor. @@ -54,7 +54,7 @@ * passed to postprocessing contains at least one row group's worth of samples * above and below the row group(s) being processed. Note that the context * rows "above" the first passed row group appear at negative row offsets in - * the passed buffer. At the top and bottom of the image, the retquired + * the passed buffer. At the top and bottom of the image, the required * context rows are manufactured by duplicating the first or last real sample * row; this avoids having special cases in the upsampling inner loops. * @@ -90,7 +90,7 @@ * 0 0 * We read alternate iMCU rows using each master pointer; thus the last two * row groups of the previous iMCU row remain un-overwritten in the workspace. - * The pointer lists are set up so that the retquired context rows appear to + * The pointer lists are set up so that the required context rows appear to * be adjacent to the proper places when we pass the pointer lists to the * upsampler. * @@ -338,7 +338,7 @@ start_pass_main (j_decompress_ptr cinfo, J_BUF_MODE pass_mode) /* * Process some data. - * This handles the simple case where no context is retquired. + * This handles the simple case where no context is required. */ METHODDEF(void) |