mirror of https://git.ffmpeg.org/ffmpeg.git
Use av_restrict instead of restrict in libavcodec/opus_celt.c.
This commit is contained in:
parent
bebce653e5
commit
30aeab29e4
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue