You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
Use av_restrict instead of restrict in libavcodec/opus_celt.c.
This commit is contained in:
@@ -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;
|
||||
|
Reference in New Issue
Block a user