Commit 9ac78726 authored by Luca Barbato's avatar Luca Barbato

Missing static in float_to_int16_altivec declaration

Originally committed as revision 14967 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent f1588ed5
......@@ -160,7 +160,7 @@ float_to_int16_one_altivec(const float *src)
return vec_packs(t0,t1);
}
void float_to_int16_altivec(int16_t *dst, const float *src, int len)
static void float_to_int16_altivec(int16_t *dst, const float *src, int len)
{
int i;
vector signed short d0, d1, d;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment