diff options
Diffstat (limited to 'common/jpeg')
-rw-r--r-- | common/jpeg/simd/jsimd_i386.c | 2 | ||||
-rw-r--r-- | common/jpeg/simd/jsimd_x86_64.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/common/jpeg/simd/jsimd_i386.c b/common/jpeg/simd/jsimd_i386.c index 66af0248..ab52519b 100644 --- a/common/jpeg/simd/jsimd_i386.c +++ b/common/jpeg/simd/jsimd_i386.c @@ -382,7 +382,7 @@ jsimd_h2v2_fancy_upsample (j_decompress_ptr cinfo, { if ((simd_support & JSIMD_SSE2) && IS_ALIGNED_SSE(jconst_fancy_upsample_sse2)) - jsimd_h2v1_fancy_upsample_sse2(cinfo->max_v_samp_factor, + jsimd_h2v2_fancy_upsample_sse2(cinfo->max_v_samp_factor, compptr->downsampled_width, input_data, output_data_ptr); else if (simd_support & JSIMD_MMX) jsimd_h2v2_fancy_upsample_mmx(cinfo->max_v_samp_factor, diff --git a/common/jpeg/simd/jsimd_x86_64.c b/common/jpeg/simd/jsimd_x86_64.c index 3437a9a5..92610074 100644 --- a/common/jpeg/simd/jsimd_x86_64.c +++ b/common/jpeg/simd/jsimd_x86_64.c @@ -260,7 +260,7 @@ jsimd_h2v2_fancy_upsample (j_decompress_ptr cinfo, JSAMPARRAY input_data, JSAMPARRAY * output_data_ptr) { - jsimd_h2v1_fancy_upsample_sse2(cinfo->max_v_samp_factor, + jsimd_h2v2_fancy_upsample_sse2(cinfo->max_v_samp_factor, compptr->downsampled_width, input_data, output_data_ptr); } |