silly typo fixes

This commit is contained in:
Diego Biurrun
2012-08-21 01:02:13 +02:00
parent 4a7af92cc8
commit a5f8873620
14 changed files with 21 additions and 20 deletions

View File

@@ -607,7 +607,7 @@ static void calc_input_response(WMAVoiceContext *s, float *lpcs,
/* 70.57 =~ 1/log10(1.0331663) */
idx = (pwr * gain_mul - 0.0295) * 70.570526123;
if (idx > 127) { // fallback if index falls outside table range
if (idx > 127) { // fall back if index falls outside table range
coeffs[n] = wmavoice_energy_table[127] *
powf(1.0331663, idx - 127);
} else