Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(69)

Side by Side Diff: jpegcomp.h

Issue 10386084: Update libjpeg-turbo. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/libjpeg_turbo/
Patch Set: Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « jidctint.c ('k') | jpegtran.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * jpegcomp.h 2 * jpegcomp.h
3 * 3 *
4 * Copyright (C) 2010, D. R. Commander 4 * Copyright (C) 2010, D. R. Commander
5 * For conditions of distribution and use, see the accompanying README file. 5 * For conditions of distribution and use, see the accompanying README file.
6 * 6 *
7 * JPEG compatibility macros 7 * JPEG compatibility macros
8 * These declarations are considered internal to the JPEG library; most 8 * These declarations are considered internal to the JPEG library; most
9 * applications using the library shouldn't need to include this file. 9 * applications using the library shouldn't need to include this file.
10 */ 10 */
11 11
12 #if JPEG_LIB_VERSION >= 70 12 #if JPEG_LIB_VERSION >= 70
13 #define _DCT_scaled_size DCT_h_scaled_size 13 #define _DCT_scaled_size DCT_h_scaled_size
14 #define _DCT_h_scaled_size DCT_h_scaled_size
15 #define _DCT_v_scaled_size DCT_v_scaled_size
14 #define _min_DCT_scaled_size min_DCT_h_scaled_size 16 #define _min_DCT_scaled_size min_DCT_h_scaled_size
15 #define _min_DCT_h_scaled_size min_DCT_h_scaled_size 17 #define _min_DCT_h_scaled_size min_DCT_h_scaled_size
16 #define _min_DCT_v_scaled_size min_DCT_v_scaled_size 18 #define _min_DCT_v_scaled_size min_DCT_v_scaled_size
17 #define _jpeg_width jpeg_width 19 #define _jpeg_width jpeg_width
18 #define _jpeg_height jpeg_height 20 #define _jpeg_height jpeg_height
19 #else 21 #else
20 #define _DCT_scaled_size DCT_scaled_size 22 #define _DCT_scaled_size DCT_scaled_size
23 #define _DCT_h_scaled_size DCT_scaled_size
24 #define _DCT_v_scaled_size DCT_scaled_size
21 #define _min_DCT_scaled_size min_DCT_scaled_size 25 #define _min_DCT_scaled_size min_DCT_scaled_size
22 #define _min_DCT_h_scaled_size min_DCT_scaled_size 26 #define _min_DCT_h_scaled_size min_DCT_scaled_size
23 #define _min_DCT_v_scaled_size min_DCT_scaled_size 27 #define _min_DCT_v_scaled_size min_DCT_scaled_size
24 #define _jpeg_width image_width 28 #define _jpeg_width image_width
25 #define _jpeg_height image_height 29 #define _jpeg_height image_height
26 #endif 30 #endif
OLDNEW
« no previous file with comments | « jidctint.c ('k') | jpegtran.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698