diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-11-12 07:55:25 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-12 07:55:25 +0100 |
commit | ba4c808721592a8558686b518d12f36e0fe60957 (patch) | |
tree | 90bfefa3d3b0d524c562b6280776807595a10400 /thirdparty/opus/celt/pitch.h | |
parent | 067c259ef139a1d60b64386ff596dfea690aa06d (diff) | |
parent | e00426c512a7905f5f925d382c443bab7a0ca693 (diff) |
Merge pull request #33311 from SneakyFish5/update-opus
Update opus to 1.3.1 and opusfile to 0.11
Diffstat (limited to 'thirdparty/opus/celt/pitch.h')
-rw-r--r-- | thirdparty/opus/celt/pitch.h | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/thirdparty/opus/celt/pitch.h b/thirdparty/opus/celt/pitch.h index d3503532a0..e425f56aea 100644 --- a/thirdparty/opus/celt/pitch.h +++ b/thirdparty/opus/celt/pitch.h @@ -46,8 +46,7 @@ #include "mips/pitch_mipsr1.h" #endif -#if ((defined(OPUS_ARM_ASM) && defined(FIXED_POINT)) \ - || defined(OPUS_ARM_MAY_HAVE_NEON_INTR)) +#if (defined(OPUS_ARM_ASM) || defined(OPUS_ARM_MAY_HAVE_NEON_INTR)) # include "arm/pitch_arm.h" #endif @@ -184,17 +183,10 @@ opus_val32 void #endif celt_pitch_xcorr_c(const opus_val16 *_x, const opus_val16 *_y, - opus_val32 *xcorr, int len, int max_pitch); - -#if !defined(OVERRIDE_PITCH_XCORR) -#ifdef FIXED_POINT -opus_val32 -#else -void -#endif -celt_pitch_xcorr(const opus_val16 *_x, const opus_val16 *_y, opus_val32 *xcorr, int len, int max_pitch, int arch); +#ifndef OVERRIDE_PITCH_XCORR +# define celt_pitch_xcorr celt_pitch_xcorr_c #endif #endif |