Remove some disabled printf debug cruft.

This commit is contained in:
Diego Biurrun
2011-04-29 20:00:53 +02:00
parent 09cbf60f8e
commit 2e15305b70
18 changed files with 0 additions and 197 deletions
-9
View File
@@ -178,15 +178,6 @@ static void wma_lsp_to_curve_init(WMACodecContext *s, int frame_len)
s->lsp_pow_m_table2[i] = b - a;
b = a;
}
#if 0
for(i=1;i<20;i++) {
float v, r1, r2;
v = 5.0 / i;
r1 = pow_m1_4(s, v);
r2 = pow(v,-0.25);
printf("%f^-0.25=%f e=%f\n", v, r1, r2 - r1);
}
#endif
}
/**