summaryrefslogtreecommitdiff
path: root/sine.h
diff options
context:
space:
mode:
Diffstat (limited to 'sine.h')
-rw-r--r--sine.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sine.h b/sine.h
index 5c7455c..21d21fb 100644
--- a/sine.h
+++ b/sine.h
@@ -34,12 +34,12 @@
34 34
35C2CONST c2const_create(int Fs, float framelength_ms); 35C2CONST c2const_create(int Fs, float framelength_ms);
36 36
37void make_analysis_window(C2CONST *c2const, codec2_fft_cfg fft_fwd_cfg, float w[], COMP W[]); 37void make_analysis_window(C2CONST *c2const, codec2_fft_cfg fft_fwd_cfg, float w[], float W[]);
38float hpf(float x, float states[]); 38float hpf(float x, float states[]);
39void dft_speech(C2CONST *c2const, codec2_fft_cfg fft_fwd_cfg, COMP Sw[], float Sn[], float w[]); 39void dft_speech(C2CONST *c2const, codec2_fft_cfg fft_fwd_cfg, COMP Sw[], float Sn[], float w[]);
40void two_stage_pitch_refinement(C2CONST *c2const, MODEL *model, COMP Sw[]); 40void two_stage_pitch_refinement(C2CONST *c2const, MODEL *model, COMP Sw[]);
41void estimate_amplitudes(MODEL *model, COMP Sw[], COMP W[], int est_phase); 41void estimate_amplitudes(MODEL *model, COMP Sw[], float W[], int est_phase);
42float est_voicing_mbe(C2CONST *c2const, MODEL *model, COMP Sw[], COMP W[]); 42float est_voicing_mbe(C2CONST *c2const, MODEL *model, COMP Sw[], float W[]);
43void make_synthesis_window(C2CONST *c2const, float Pn[]); 43void make_synthesis_window(C2CONST *c2const, float Pn[]);
44void synthesise(int n_samp, codec2_fftr_cfg fftr_inv_cfg, float Sn_[], MODEL *model, float Pn[], int shift); 44void synthesise(int n_samp, codec2_fftr_cfg fftr_inv_cfg, float Sn_[], MODEL *model, float Pn[], int shift);
45 45