diff options
Diffstat (limited to 'simd/x86_64/jsimd.c')
-rw-r--r-- | simd/x86_64/jsimd.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/simd/x86_64/jsimd.c b/simd/x86_64/jsimd.c index dc639fc..eb76679 100644 --- a/simd/x86_64/jsimd.c +++ b/simd/x86_64/jsimd.c @@ -472,12 +472,6 @@ jsimd_can_h2v1_fancy_upsample(void) return 0; } -GLOBAL(int) -jsimd_can_h1v2_fancy_upsample(void) -{ - return 0; -} - GLOBAL(void) jsimd_h2v2_fancy_upsample(j_decompress_ptr cinfo, jpeg_component_info *compptr, JSAMPARRAY input_data, JSAMPARRAY *output_data_ptr) @@ -506,12 +500,6 @@ jsimd_h2v1_fancy_upsample(j_decompress_ptr cinfo, jpeg_component_info *compptr, output_data_ptr); } -GLOBAL(void) -jsimd_h1v2_fancy_upsample(j_decompress_ptr cinfo, jpeg_component_info *compptr, - JSAMPARRAY input_data, JSAMPARRAY *output_data_ptr) -{ -} - GLOBAL(int) jsimd_can_h2v2_merged_upsample(void) { @@ -1043,8 +1031,6 @@ jsimd_can_encode_mcu_AC_first_prepare(void) return 0; if (sizeof(JCOEF) != 2) return 0; - if (SIZEOF_SIZE_T != 8) - return 0; if (simd_support & JSIMD_SSE2) return 1; @@ -1069,8 +1055,6 @@ jsimd_can_encode_mcu_AC_refine_prepare(void) return 0; if (sizeof(JCOEF) != 2) return 0; - if (SIZEOF_SIZE_T != 8) - return 0; if (simd_support & JSIMD_SSE2) return 1; |