mirror of
https://github.com/cookiengineer/audacity
synced 2025-12-19 23:21:33 +01:00
Upgrade libsoxr to 0.1.3
This commit is contained in:
23
lib-src/libsoxr/src/util32s.h
Normal file
23
lib-src/libsoxr/src/util32s.h
Normal file
@@ -0,0 +1,23 @@
|
||||
/* SoX Resampler Library Copyright (c) 2007-16 robs@users.sourceforge.net
|
||||
* Licence for this file: LGPL v2.1 See LICENCE for details. */
|
||||
|
||||
#if !defined soxr_util32s_included
|
||||
#define soxr_util32s_included
|
||||
|
||||
#include <stddef.h>
|
||||
|
||||
void * _soxr_simd32_aligned_malloc(size_t);
|
||||
void * _soxr_simd32_aligned_calloc(size_t, size_t);
|
||||
void _soxr_simd32_aligned_free(void *);
|
||||
|
||||
#define SIMD_ALIGNED_MALLOC _soxr_simd32_aligned_malloc
|
||||
#define SIMD_ALIGNED_CALLOC _soxr_simd32_aligned_calloc
|
||||
#define SIMD_ALIGNED_FREE _soxr_simd32_aligned_free
|
||||
|
||||
void _soxr_ordered_convolve_simd32(int n, void * not_used, float * a, float const * b);
|
||||
void _soxr_ordered_partial_convolve_simd32(int n, float * a, float const * b);
|
||||
|
||||
#define ORDERED_CONVOLVE_SIMD _soxr_ordered_convolve_simd32
|
||||
#define ORDERED_PARTIAL_CONVOLVE_SIMD _soxr_ordered_partial_convolve_simd32
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user