diff options
Diffstat (limited to 'lib/rbcodec/codecs/libopus/celt/mdct.h')
-rw-r--r-- | lib/rbcodec/codecs/libopus/celt/mdct.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/rbcodec/codecs/libopus/celt/mdct.h b/lib/rbcodec/codecs/libopus/celt/mdct.h index 1abc1d17f7..933aafcda1 100644 --- a/lib/rbcodec/codecs/libopus/celt/mdct.h +++ b/lib/rbcodec/codecs/libopus/celt/mdct.h @@ -61,10 +61,15 @@ 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); +#if defined(CPU_COLDFIRE) +#define MDCT_ICODE ICODE_ATTR +#else +#define MDCT_ICODE +#endif /** 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 * OPUS_RESTRICT out, - const opus_val16 * OPUS_RESTRICT window, int overlap, int shift, int stride) ICODE_ATTR; + const opus_val16 * OPUS_RESTRICT window, int overlap, int shift, int stride); #endif |