diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2014-05-16 00:43:54 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2014-05-16 00:43:54 +0200 |
commit | 30aeab29e468926599e953235a75f84c50bdb499 (patch) | |
tree | 46765f096994148849aef2731cb0e9a65f5e130f /libavcodec | |
parent | bebce653e5601ceafa004db0eb6b2c7d4d16f0c0 (diff) | |
download | ffmpeg-30aeab29e468926599e953235a75f84c50bdb499.tar.gz |
Use av_restrict instead of restrict in libavcodec/opus_celt.c.
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/opus_celt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/opus_celt.c b/libavcodec/opus_celt.c index 26d15392f2..c3830a048f 100644 --- a/libavcodec/opus_celt.c +++ b/libavcodec/opus_celt.c @@ -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; |