diff options
author | Johnathan Corgan <johnathan@corganlabs.com> | 2014-04-21 09:41:31 -0700 |
---|---|---|
committer | Johnathan Corgan <johnathan@corganlabs.com> | 2014-04-21 09:41:31 -0700 |
commit | 33e5aeb722ba4fc1c2ae3162c4940b546037717f (patch) | |
tree | c3f1e57feeab5ea07e0bc5d7d56791c881f457b7 /gr-vocoder/lib/codec2/dump.h | |
parent | a3998949d9c65076d91e3165733a5abd381ad882 (diff) | |
parent | 5efae492bb690e8e92fe18fb0abe0aff345c3935 (diff) |
Merge branch 'merge-codec2-update'
Diffstat (limited to 'gr-vocoder/lib/codec2/dump.h')
-rw-r--r-- | gr-vocoder/lib/codec2/dump.h | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/gr-vocoder/lib/codec2/dump.h b/gr-vocoder/lib/codec2/dump.h index 4b92d009d9..a61fdaab69 100644 --- a/gr-vocoder/lib/codec2/dump.h +++ b/gr-vocoder/lib/codec2/dump.h @@ -26,7 +26,10 @@ #ifndef __DUMP__ #define __DUMP__ +#include "defines.h" #include "comp.h" +#include "kiss_fft.h" +#include "codec2_internal.h" void dump_on(char filename_prefix[]); void dump_off(); @@ -40,17 +43,23 @@ void dump_Ew(COMP Ew[]); void dump_model(MODEL *m); void dump_quantised_model(MODEL *m); +void dump_Pwn(COMP Pw[]); void dump_Pw(COMP Pw[]); +void dump_Rw(float Rw[]); void dump_lsp(float lsp[]); +void dump_weights(float w[], int ndim); +void dump_lsp_(float lsp_[]); void dump_ak(float ak[], int order); +void dump_ak_(float ak[], int order); void dump_E(float E); -void dump_resample(float w[], float A[], int n); +void dump_lpc_snr(float snr); /* phase modelling */ void dump_snr(float snr); void dump_phase(float phase[], int L); void dump_phase_(float phase[], int L); +void dump_hephase(int ind[], int dim); /* NLP states */ @@ -63,5 +72,6 @@ void dump_Rk(float Rk[]); /* post filter */ void dump_bg(float e, float bg_est, float percent_uv); +void dump_Pwb(COMP Pwb[]); #endif |