| OLD | NEW |
| 1 /* | 1 /* |
| 2 * jsimddct.h | 2 * jsimddct.h |
| 3 * | 3 * |
| 4 * Copyright 2009 Pierre Ossman <ossman@cendio.se> for Cendio AB | 4 * Copyright 2009 Pierre Ossman <ossman@cendio.se> for Cendio AB |
| 5 * | 5 * |
| 6 * Based on the x86 SIMD extension for IJG JPEG library, | 6 * Based on the x86 SIMD extension for IJG JPEG library, |
| 7 * Copyright (C) 1999-2006, MIYASAKA Masaru. | 7 * Copyright (C) 1999-2006, MIYASAKA Masaru. |
| 8 * For conditions of distribution and use, see copyright notice in jsimdext.inc |
| 8 * | 9 * |
| 9 */ | 10 */ |
| 10 | 11 |
| 11 /* Short forms of external names for systems with brain-damaged linkers. */ | 12 /* Short forms of external names for systems with brain-damaged linkers. */ |
| 12 | 13 |
| 13 #ifdef NEED_SHORT_EXTERNAL_NAMES | 14 #ifdef NEED_SHORT_EXTERNAL_NAMES |
| 14 #define jsimd_can_convsamp jSCanConv | 15 #define jsimd_can_convsamp jSCanConv |
| 15 #define jsimd_can_convsamp_float jSCanConvF | 16 #define jsimd_can_convsamp_float jSCanConvF |
| 16 #define jsimd_convsamp jSConv | 17 #define jsimd_convsamp jSConv |
| 17 #define jsimd_convsamp_float jSConvF | 18 #define jsimd_convsamp_float jSConvF |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 jpeg_component_info * compptr, | 93 jpeg_component_info * compptr, |
| 93 JCOEFPTR coef_block, | 94 JCOEFPTR coef_block, |
| 94 JSAMPARRAY output_buf, | 95 JSAMPARRAY output_buf, |
| 95 JDIMENSION output_col)); | 96 JDIMENSION output_col)); |
| 96 EXTERN(void) jsimd_idct_float JPP((j_decompress_ptr cinfo, | 97 EXTERN(void) jsimd_idct_float JPP((j_decompress_ptr cinfo, |
| 97 jpeg_component_info * compptr, | 98 jpeg_component_info * compptr, |
| 98 JCOEFPTR coef_block, | 99 JCOEFPTR coef_block, |
| 99 JSAMPARRAY output_buf, | 100 JSAMPARRAY output_buf, |
| 100 JDIMENSION output_col)); | 101 JDIMENSION output_col)); |
| 101 | 102 |
| OLD | NEW |