diff options
author | Moonchild <moonchild@palemoon.org> | 2022-05-04 17:03:37 +0000 |
---|---|---|
committer | Moonchild <moonchild@palemoon.org> | 2022-05-04 17:03:37 +0000 |
commit | 2366accae51d17f1f5c7d72f18dbf0776bc02c7d (patch) | |
tree | 2e65fcda905083ca32f8a1ae86ed62a0f2f6fd8c /media/libopus/celt/x86/celt_lpc_sse.h | |
parent | d01ae5cf25433bef452c8b9ff0aa0ae796b966a0 (diff) | |
download | uxp-2366accae51d17f1f5c7d72f18dbf0776bc02c7d.tar.gz |
Issue #1890 - Update libopus
This resolves #1890
Diffstat (limited to 'media/libopus/celt/x86/celt_lpc_sse.h')
-rw-r--r-- | media/libopus/celt/x86/celt_lpc_sse.h | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/media/libopus/celt/x86/celt_lpc_sse.h b/media/libopus/celt/x86/celt_lpc_sse.h index c5ec796ed5..7d1ecf7533 100644 --- a/media/libopus/celt/x86/celt_lpc_sse.h +++ b/media/libopus/celt/x86/celt_lpc_sse.h @@ -41,12 +41,11 @@ void celt_fir_sse4_1( opus_val16 *y, int N, int ord, - opus_val16 *mem, int arch); #if defined(OPUS_X86_PRESUME_SSE4_1) -#define celt_fir(x, num, y, N, ord, mem, arch) \ - ((void)arch, celt_fir_sse4_1(x, num, y, N, ord, mem, arch)) +#define celt_fir(x, num, y, N, ord, arch) \ + ((void)arch, celt_fir_sse4_1(x, num, y, N, ord, arch)) #else @@ -56,11 +55,10 @@ extern void (*const CELT_FIR_IMPL[OPUS_ARCHMASK + 1])( opus_val16 *y, int N, int ord, - opus_val16 *mem, int arch); -# define celt_fir(x, num, y, N, ord, mem, arch) \ - ((*CELT_FIR_IMPL[(arch) & OPUS_ARCHMASK])(x, num, y, N, ord, mem, arch)) +# define celt_fir(x, num, y, N, ord, arch) \ + ((*CELT_FIR_IMPL[(arch) & OPUS_ARCHMASK])(x, num, y, N, ord, arch)) #endif #endif |