From 9d6e0ac6737f94553b826db6b1962383666295db Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Thu, 24 Jan 2013 00:49:47 +0100 Subject: floatdsp: restrict->av_restrict Fix msvc Signed-off-by: Michael Niedermayer --- libavutil/float_dsp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavutil/float_dsp.h') diff --git a/libavutil/float_dsp.h b/libavutil/float_dsp.h index 0bcfe8b06f..d0447d6346 100644 --- a/libavutil/float_dsp.h +++ b/libavutil/float_dsp.h @@ -147,7 +147,7 @@ typedef struct AVFloatDSPContext { * @param v2 second input vector, difference output, 16-byte aligned * @param len length of vectors, multiple of 4 */ - void (*butterflies_float)(float *restrict v1, float *restrict v2, int len); + void (*butterflies_float)(float *av_restrict v1, float *av_restrict v2, int len); /** * Calculate the scalar product of two vectors of floats. -- cgit v1.2.3