diff options
author | Jonathan Wright <jonathan.wright@arm.com> | 2019-05-08 15:43:26 +0100 |
---|---|---|
committer | Jonathan Wright <jonathan.wright@arm.com> | 2019-06-13 12:59:18 +0100 |
commit | 0927aa3f57d4a90d02576155e6ce4380aee98bcb (patch) | |
tree | de047bbeccf3b7763b6cfe47f17f7a6fcad0dc79 /jsimd_none.c | |
parent | d78acdd58d99e49d9b7c1d97c347d4a9239c3f6b (diff) |
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 'jsimd_none.c')
-rw-r--r-- | jsimd_none.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/jsimd_none.c b/jsimd_none.c index 3cb6c80..2087e69 100644 --- a/jsimd_none.c +++ b/jsimd_none.c @@ -169,6 +169,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) @@ -181,6 +187,12 @@ jsimd_h2v1_fancy_upsample(j_decompress_ptr cinfo, jpeg_component_info *compptr, { } +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) { |