summaryrefslogtreecommitdiff
path: root/jcinit.c
diff options
context:
space:
mode:
authorTom Hudson <tomhudson@google.com>2016-05-04 13:22:56 -0400
committerTom Hudson <tomhudson@google.com>2016-05-04 13:22:56 -0400
commit0d47d2d3a728e78676a15b1d818cc668cb7e5a9c (patch)
tree044a430eeaa2dec4d6de7b624da15fda1b8ed25f /jcinit.c
parent9d35298a6223278a66423f828a949d93d94d5911 (diff)
Update to libjpeg_turbo 1.4.90
(Duplicate of https://codereview.chromium.org/1939823002/ for landing.) TBR=noel@chromium.org,thakis@chromium.org BUG=608347, 398235, 591927 Review URL: https://codereview.chromium.org/1953443002 .
Diffstat (limited to 'jcinit.c')
-rw-r--r--jcinit.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/jcinit.c b/jcinit.c
index de0ade2..463bd8c 100644
--- a/jcinit.c
+++ b/jcinit.c
@@ -3,7 +3,8 @@
*
* Copyright (C) 1991-1997, Thomas G. Lane.
* This file is part of the Independent JPEG Group's software.
- * For conditions of distribution and use, see the accompanying README file.
+ * For conditions of distribution and use, see the accompanying README.ijg
+ * file.
*
* This file contains initialization logic for the JPEG compressor.
* This routine is in charge of selecting the modules to be executed and
@@ -60,7 +61,7 @@ jinit_compress_master (j_compress_ptr cinfo)
/* Need a full-image coefficient buffer in any multi-pass mode. */
jinit_c_coef_controller(cinfo,
- (boolean) (cinfo->num_scans > 1 || cinfo->optimize_coding));
+ (boolean) (cinfo->num_scans > 1 || cinfo->optimize_coding));
jinit_c_main_controller(cinfo, FALSE /* never need full buffer here */);
jinit_marker_writer(cinfo);