diff armv4l/float_arm_vfp.c @ 8250:cf4d575b1982 libavcodec

Delete unnecessary 'extern' keywords.
author diego
date Wed, 03 Dec 2008 15:23:30 +0000
parents 2487a9db02a0
children
line wrap: on
line diff
--- a/armv4l/float_arm_vfp.c	Wed Dec 03 03:34:31 2008 +0000
+++ b/armv4l/float_arm_vfp.c	Wed Dec 03 15:23:30 2008 +0000
@@ -20,10 +20,10 @@
 
 #include "libavcodec/dsputil.h"
 
-extern void ff_vector_fmul_vfp(float *dst, const float *src, int len);
-extern void ff_vector_fmul_reverse_vfp(float *dst, const float *src0,
-                                       const float *src1, int len);
-extern void ff_float_to_int16_vfp(int16_t *dst, const float *src, long len);
+void ff_vector_fmul_vfp(float *dst, const float *src, int len);
+void ff_vector_fmul_reverse_vfp(float *dst, const float *src0,
+                                const float *src1, int len);
+void ff_float_to_int16_vfp(int16_t *dst, const float *src, long len);
 
 void ff_float_init_arm_vfp(DSPContext* c, AVCodecContext *avctx)
 {