diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-12-03 15:23:30 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-12-03 15:23:30 +0000 |
commit | 9686df2be543b740ec71e6ef633f312b8592813f (patch) | |
tree | 19f9d20b719c124cba7a6f878d0f84e1c0c82ed3 /libavcodec/celp_math.h | |
parent | 26ae363e06722389964dae79e1f19a0a7f66b6d0 (diff) | |
download | ffmpeg-9686df2be543b740ec71e6ef633f312b8592813f.tar.gz |
Delete unnecessary 'extern' keywords.
Originally committed as revision 15990 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/celp_math.h')
-rw-r--r-- | libavcodec/celp_math.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/celp_math.h b/libavcodec/celp_math.h index ce0726fba1..96f4158a4e 100644 --- a/libavcodec/celp_math.h +++ b/libavcodec/celp_math.h @@ -91,6 +91,6 @@ static inline int bidir_sal(int value, int offset) * * @return dot product = sum of elementwise products */ -extern float ff_dot_productf(const float* a, const float* b, int length); +float ff_dot_productf(const float* a, const float* b, int length); #endif /* AVCODEC_CELP_MATH_H */ |