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

Side by Side Diff: third_party/libjpeg_turbo/jpegcomp.h

Issue 7554002: Updates libjpeg-turbo to 1.1.90 (r677) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/
Patch Set: '' Created 9 years, 4 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 | « third_party/libjpeg_turbo/jmorecfg.h ('k') | third_party/libjpeg_turbo/jpegint.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 /*
2 * jpegcomp.h
3 *
4 * Copyright (C) 2010, D. R. Commander
5 * For conditions of distribution and use, see the accompanying README file.
6 *
7 * JPEG compatibility macros
8 * These declarations are considered internal to the JPEG library; most
9 * applications using the library shouldn't need to include this file.
10 */
11
12 #if JPEG_LIB_VERSION >= 70
13 #define _DCT_scaled_size DCT_h_scaled_size
14 #define _min_DCT_scaled_size min_DCT_h_scaled_size
15 #define _min_DCT_h_scaled_size min_DCT_h_scaled_size
16 #define _min_DCT_v_scaled_size min_DCT_v_scaled_size
17 #define _jpeg_width jpeg_width
18 #define _jpeg_height jpeg_height
19 #else
20 #define _DCT_scaled_size DCT_scaled_size
21 #define _min_DCT_scaled_size min_DCT_scaled_size
22 #define _min_DCT_h_scaled_size min_DCT_scaled_size
23 #define _min_DCT_v_scaled_size min_DCT_scaled_size
24 #define _jpeg_width image_width
25 #define _jpeg_height image_height
26 #endif
OLDNEW
« no previous file with comments | « third_party/libjpeg_turbo/jmorecfg.h ('k') | third_party/libjpeg_turbo/jpegint.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698