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.h | |
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.h')
-rw-r--r-- | jsimd.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -75,6 +75,7 @@ EXTERN(void) jsimd_int_upsample(j_decompress_ptr cinfo, EXTERN(int) jsimd_can_h2v2_fancy_upsample(void); EXTERN(int) jsimd_can_h2v1_fancy_upsample(void); +EXTERN(int) jsimd_can_h1v2_fancy_upsample(void); EXTERN(void) jsimd_h2v2_fancy_upsample(j_decompress_ptr cinfo, jpeg_component_info *compptr, @@ -84,6 +85,10 @@ EXTERN(void) jsimd_h2v1_fancy_upsample(j_decompress_ptr cinfo, jpeg_component_info *compptr, JSAMPARRAY input_data, JSAMPARRAY *output_data_ptr); +EXTERN(void) jsimd_h1v2_fancy_upsample(j_decompress_ptr cinfo, + jpeg_component_info *compptr, + JSAMPARRAY input_data, + JSAMPARRAY *output_data_ptr); EXTERN(int) jsimd_can_h2v2_merged_upsample(void); EXTERN(int) jsimd_can_h2v1_merged_upsample(void); |