Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.xiph.org/xiph/opus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'celt/mdct.h')
-rw-r--r--celt/mdct.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/celt/mdct.h b/celt/mdct.h
index 5ec26d0a..d7218213 100644
--- a/celt/mdct.h
+++ b/celt/mdct.h
@@ -42,6 +42,7 @@
#ifndef MDCT_H
#define MDCT_H
+#include "opus_defines.h"
#include "kiss_fft.h"
#include "arch.h"
@@ -49,19 +50,21 @@ typedef struct {
int n;
int maxshift;
const kiss_fft_state *kfft[4];
- const kiss_twiddle_scalar * restrict trig;
+ const kiss_twiddle_scalar * OPUS_RESTRICT trig;
} mdct_lookup;
int clt_mdct_init(mdct_lookup *l,int N, int maxshift);
void clt_mdct_clear(mdct_lookup *l);
/** Compute a forward MDCT and scale by 4/N, trashes the input array */
-void clt_mdct_forward(const mdct_lookup *l, kiss_fft_scalar *in, kiss_fft_scalar *out,
+void clt_mdct_forward(const mdct_lookup *l, kiss_fft_scalar *in,
+ kiss_fft_scalar * OPUS_RESTRICT out,
const opus_val16 *window, int overlap, int shift, int stride);
/** Compute a backward MDCT (no scaling) and performs weighted overlap-add
(scales implicitly by 1/2) */
-void clt_mdct_backward(const mdct_lookup *l, kiss_fft_scalar *in, kiss_fft_scalar *out,
- const opus_val16 * restrict window, int overlap, int shift, int stride);
+void clt_mdct_backward(const mdct_lookup *l, kiss_fft_scalar *in,
+ kiss_fft_scalar * OPUS_RESTRICT out,
+ const opus_val16 * OPUS_RESTRICT window, int overlap, int shift, int stride);
#endif