aboutsummaryrefslogtreecommitdiff
path: root/src/interp.c
diff options
context:
space:
mode:
authordrowe67 <[email protected]>2023-07-14 13:40:56 +0930
committerDavid Rowe <[email protected]>2023-07-14 13:40:56 +0930
commitfb4547abe6fc20a0e9aa4c3049d5359027d0d89e (patch)
tree2d3e60ea9096f23e1c24a5b774d31a924a151f3d /src/interp.c
parentdf99cbee341a556dcab6233f595eaa3c1d48bc94 (diff)
some files missed on the first pass
Diffstat (limited to 'src/interp.c')
-rw-r--r--src/interp.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/interp.c b/src/interp.c
index 188e3d8..08a9518 100644
--- a/src/interp.c
+++ b/src/interp.c
@@ -150,14 +150,14 @@ float sample_log_amp(MODEL *model, float w) {
\*---------------------------------------------------------------------------*/
void interpolate_lsp(codec2_fft_cfg fft_fwd_cfg,
- MODEL *interp, /* interpolated model params */
- MODEL *prev, /* previous frames model params */
- MODEL *next, /* next frames model params */
- float *prev_lsps, /* previous frames LSPs */
- float prev_e, /* previous frames LPC energy */
- float *next_lsps, /* next frames LSPs */
- float next_e, /* next frames LPC energy */
- float *ak_interp, /* interpolated aks for this frame */
+ MODEL *interp, /* interpolated model params */
+ MODEL *prev, /* previous frames model params */
+ MODEL *next, /* next frames model params */
+ float *prev_lsps, /* previous frames LSPs */
+ float prev_e, /* previous frames LPC energy */
+ float *next_lsps, /* next frames LSPs */
+ float next_e, /* next frames LPC energy */
+ float *ak_interp, /* interpolated aks for this frame */
float *lsps_interp, /* interpolated lsps for this frame */
float Wo_min) {
int i;