Skip to content
Snippets Groups Projects
Commit 4eef2ed7 authored by Diego Biurrun's avatar Diego Biurrun
Browse files

ppc: fmtconvert: Drop two unused variables.

parent 9ec89710
No related branches found
No related tags found
No related merge requests found
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment