summaryrefslogtreecommitdiff
path: root/jdcoefct.h
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 /jdcoefct.h
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 'jdcoefct.h')
-rw-r--r--jdcoefct.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/jdcoefct.h b/jdcoefct.h
index 2f7bbe5..bf6beb2 100644
--- a/jdcoefct.h
+++ b/jdcoefct.h
@@ -5,11 +5,11 @@
* Copyright (C) 1994-1997, Thomas G. Lane.
* libjpeg-turbo Modifications:
* Copyright 2009 Pierre Ossman <ossman@cendio.se> for Cendio AB
- * For conditions of distribution and use, see the accompanying README file.
+ * For conditions of distribution and use, see the accompanying README.ijg
+ * file.
*/
#define JPEG_INTERNALS
-#include "jinclude.h"
#include "jpeglib.h"
@@ -41,7 +41,7 @@ typedef struct {
JBLOCKROW MCU_buffer[D_MAX_BLOCKS_IN_MCU];
/* Temporary workspace for one MCU */
- JCOEF * workspace;
+ JCOEF *workspace;
#ifdef D_MULTISCAN_FILES_SUPPORTED
/* In multi-pass modes, we need a virtual block array for each component. */
@@ -50,12 +50,12 @@ typedef struct {
#ifdef BLOCK_SMOOTHING_SUPPORTED
/* When doing block smoothing, we latch coefficient Al values here */
- int * coef_bits_latch;
+ int *coef_bits_latch;
#define SAVED_COEFS 6 /* we save coef_bits[0..5] */
#endif
} my_coef_controller;
-typedef my_coef_controller * my_coef_ptr;
+typedef my_coef_controller *my_coef_ptr;
LOCAL(void)