Skip to content
Snippets Groups Projects
Commit e7f3b507 authored by Michael Niedermayer's avatar Michael Niedermayer
Browse files

avcodec/mips/compute_antialias_float: remove unused variable

parent 97bb456b
No related branches found
No related tags found
No related merge requests found
......@@ -61,7 +61,6 @@ static void compute_antialias_mips_float(MPADecodeContext *s,
{
float *ptr, *ptr_end;
float *csa = &csa_table[0][0];
int n;
/* temporary variables */
float in1, in2, in3, in4, in5, in6, in7, in8;
float out1, out2, out3, out4;
......@@ -72,10 +71,8 @@ static void compute_antialias_mips_float(MPADecodeContext *s,
if (!g->switch_point)
return;
/* XXX: check this for 8000Hz case */
n = 1;
ptr_end = ptr + 18;
} else {
n = 31;
ptr_end = ptr + 558;
}
......
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