Use av_restrict instead of restrict in libavcodec/opus_celt.c.

This commit is contained in:
Carl Eugen Hoyos 2014-05-16 00:43:54 +02:00
parent bebce653e5
commit 30aeab29e4

View File

@ -991,7 +991,7 @@ static inline int celt_pulses2bits(const uint8_t *cache, int pulses)
return (pulses == 0) ? 0 : cache[pulses] + 1;
}
static inline void celt_normalize_residual(const int * restrict iy, float * restrict X,
static inline void celt_normalize_residual(const int * av_restrict iy, float * av_restrict X,
int N, float g)
{
int i;