diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2008-08-23 21:10:38 +0000 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2008-08-23 21:10:38 +0000 |
commit | 0a3650c9f005d76381464aaf776a7206d5a6ecfc (patch) | |
tree | e6ca9c24115c4feee402f61e4d347a14275d4ab5 | |
parent | e1f27dc22b5b441553e84d3ed0c8aa504591c278 (diff) | |
download | ffmpeg-0a3650c9f005d76381464aaf776a7206d5a6ecfc.tar.gz |
Remove unused variables
Originally committed as revision 14929 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/ppc/float_altivec.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/ppc/float_altivec.c b/libavcodec/ppc/float_altivec.c index 600ce2774e..4763ba2938 100644 --- a/libavcodec/ppc/float_altivec.c +++ b/libavcodec/ppc/float_altivec.c @@ -163,8 +163,6 @@ float_to_int16_one_altivec(const float *src) void float_to_int16_altivec(int16_t *dst, const float *src, int len) { int i; - vector float s0, s1; - vector signed int t0, t1; vector signed short d0, d1, d; vector unsigned char align; if(((long)dst)&15) //FIXME |