aboutsummaryrefslogtreecommitdiff
path: root/simd/x86_64
diff options
context:
space:
mode:
authorJonathan Wright <jonathan.wright@arm.com>2019-05-08 15:43:26 +0100
committerJonathan Wright <jonathan.wright@arm.com>2019-06-13 12:59:18 +0100
commit0927aa3f57d4a90d02576155e6ce4380aee98bcb (patch)
treede047bbeccf3b7763b6cfe47f17f7a6fcad0dc79 /simd/x86_64
parentd78acdd58d99e49d9b7c1d97c347d4a9239c3f6b (diff)
downloadlibjpeg-turbo-0927aa3f57d4a90d02576155e6ce4380aee98bcb.tar.gz
Add SIMD function stubs for h1v2_fancy_upsample
Adds arm, arm64, i386 and x86_64 SIMD function stubs for h1v2_fancy_upsample. Arm NEON acceleration for h1v2_fancy_upsample will be added in a future commit. Bug: 922430 Change-Id: I93f27230f105ed875c8a656d77e9b760eaefe7d8
Diffstat (limited to 'simd/x86_64')
-rw-r--r--simd/x86_64/jsimd.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/simd/x86_64/jsimd.c b/simd/x86_64/jsimd.c
index 1e5698b3..dc639fc8 100644
--- a/simd/x86_64/jsimd.c
+++ b/simd/x86_64/jsimd.c
@@ -472,6 +472,12 @@ 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)
@@ -500,6 +506,12 @@ 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)
{