Commit 4eef2ed7 authored by Diego Biurrun's avatar Diego Biurrun

ppc: fmtconvert: Drop two unused variables.

parent 9ec89710
......@@ -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);
......
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