Skip to content

Commit

Permalink
delete unused variable.
Browse files Browse the repository at this point in the history
  • Loading branch information
aikiriao committed Jun 17, 2024
1 parent 49bcc53 commit fa28b19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/lpc/src/lpc.c
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@ static LPCError LPC_CalculateCoef(
/* 入力サンプル数が少ないときは、係数が発散することが多数
* => 無音データとして扱い、係数はすべて0とする */
if (num_samples < coef_order) {
uint32_t i, k;
uint32_t i;
for (i = 0; i < coef_order + 1; i++) {
lpcc->parcor_coef[i] = 0.0;
}
Expand Down

0 comments on commit fa28b19

Please sign in to comment.