Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
| michael@0 | 1 | /* |
| michael@0 | 2 | * jpegcomp.h |
| michael@0 | 3 | * |
| michael@0 | 4 | * Copyright (C) 2010, D. R. Commander |
| michael@0 | 5 | * For conditions of distribution and use, see the accompanying README file. |
| michael@0 | 6 | * |
| michael@0 | 7 | * JPEG compatibility macros |
| michael@0 | 8 | * These declarations are considered internal to the JPEG library; most |
| michael@0 | 9 | * applications using the library shouldn't need to include this file. |
| michael@0 | 10 | */ |
| michael@0 | 11 | |
| michael@0 | 12 | #if JPEG_LIB_VERSION >= 70 |
| michael@0 | 13 | #define _DCT_scaled_size DCT_h_scaled_size |
| michael@0 | 14 | #define _DCT_h_scaled_size DCT_h_scaled_size |
| michael@0 | 15 | #define _DCT_v_scaled_size DCT_v_scaled_size |
| michael@0 | 16 | #define _min_DCT_scaled_size min_DCT_h_scaled_size |
| michael@0 | 17 | #define _min_DCT_h_scaled_size min_DCT_h_scaled_size |
| michael@0 | 18 | #define _min_DCT_v_scaled_size min_DCT_v_scaled_size |
| michael@0 | 19 | #define _jpeg_width jpeg_width |
| michael@0 | 20 | #define _jpeg_height jpeg_height |
| michael@0 | 21 | #else |
| michael@0 | 22 | #define _DCT_scaled_size DCT_scaled_size |
| michael@0 | 23 | #define _DCT_h_scaled_size DCT_scaled_size |
| michael@0 | 24 | #define _DCT_v_scaled_size DCT_scaled_size |
| michael@0 | 25 | #define _min_DCT_scaled_size min_DCT_scaled_size |
| michael@0 | 26 | #define _min_DCT_h_scaled_size min_DCT_scaled_size |
| michael@0 | 27 | #define _min_DCT_v_scaled_size min_DCT_scaled_size |
| michael@0 | 28 | #define _jpeg_width image_width |
| michael@0 | 29 | #define _jpeg_height image_height |
| michael@0 | 30 | #endif |