diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2008-08-25 16:32:03 +0000 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2008-08-25 16:32:03 +0000 |
commit | 9ac78726b8d5445bf26d982e74db24c6387a9ed3 (patch) | |
tree | fcb855b65d2819fa81e52a975ad03dc09babed56 | |
parent | f1588ed525c76954e4a72ee2b2fb33d799fe17ed (diff) | |
download | ffmpeg-9ac78726b8d5445bf26d982e74db24c6387a9ed3.tar.gz |
Missing static in float_to_int16_altivec declaration
Originally committed as revision 14967 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/ppc/float_altivec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/ppc/float_altivec.c b/libavcodec/ppc/float_altivec.c index 4763ba2938..1f39d8f461 100644 --- a/libavcodec/ppc/float_altivec.c +++ b/libavcodec/ppc/float_altivec.c @@ -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; |