diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-02-01 01:54:19 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-02-01 12:51:13 +0100 |
commit | 4eef2ed707444fd1fac2bd25cefae912a179762f (patch) | |
tree | 2c0f1889cca7cf95dab91d1abdcb927c61361588 | |
parent | 9ec8971060a00f249f387a2baef949ec59de26a7 (diff) | |
download | ffmpeg-4eef2ed707444fd1fac2bd25cefae912a179762f.tar.gz |
ppc: fmtconvert: Drop two unused variables.
-rw-r--r-- | libavcodec/ppc/fmtconvert_altivec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/ppc/fmtconvert_altivec.c b/libavcodec/ppc/fmtconvert_altivec.c index 68e5e0079e..694e9306f0 100644 --- a/libavcodec/ppc/fmtconvert_altivec.c +++ b/libavcodec/ppc/fmtconvert_altivec.c @@ -92,8 +92,8 @@ static void float_to_int16_altivec(int16_t *dst, const float *src, long len) static void float_to_int16_stride_altivec(int16_t *dst, const float *src, long len, int stride) { - int i, j; - vector signed short d, s; + int i; + vector signed short d; for (i = 0; i < len - 7; i += 8) { d = float_to_int16_one_altivec(src + i); |