search for: neon_simd

Displaying 1 result from an estimated 1 matches for "neon_simd".

2014 Sep 10
4
[RFC PATCH v1 0/3] Introducing ARM SIMD Support
...c: Use optimized routine for wave_operation mdct: implement arm simd implementation for mdct configure.ac | 5 ++ lib/Makefile.am | 6 +- lib/block.c | 14 ++--- lib/mdct.c | 102 +------------------------------- lib/simd/Makefile.am | 9 +++ lib/simd/neon_simd.c | 158 ++++++++++++++++++++++++++++++++++++++++++++++++++ lib/simd/no_simd.c | 129 +++++++++++++++++++++++++++++++++++++++++ lib/simd/simd.h | 40 +++++++++++++ 8 files changed, 351 insertions(+), 112 deletions(-) create mode 100644 lib/simd/Makefile.am create mode 100644 lib/simd/n...