#include <sent/stddefs.h>
#include <sent/htk_hmm.h>
rdhmmdef_data.cのインクルード依存関係図
関数 | |
HTK_HMM_Data * | htk_hmmdata_new (HTK_HMM_INFO *hmminfo) |
void | htk_hmmdata_add (HTK_HMM_INFO *hmm, HTK_HMM_Data *new) |
static HTK_HMM_Data * | htk_hmmdata_read (FILE *fp, HTK_HMM_INFO *hmm) |
Read one new data and returns the pointer | |
void | def_HMM (char *name, FILE *fp, HTK_HMM_INFO *hmm) |
変数 | |
char * | rdhmmdef_token |
Current token |
rdhmmdef_data.c で定義されています。
HTK_HMM_Data* htk_hmmdata_new | ( | HTK_HMM_INFO * | hmminfo | ) |
Allocate a new data and return it.
rdhmmdef_data.c の 35 行で定義されています。
参照元 htk_hmmdata_read().
void htk_hmmdata_add | ( | HTK_HMM_INFO * | hmm, | |
HTK_HMM_Data * | new | |||
) |
Add a new data to the global structure.
hmm | [i/o] HMM definition data to store it | |
new | [in] new data to be added |
rdhmmdef_data.c の 57 行で定義されています。
static HTK_HMM_Data* htk_hmmdata_read | ( | FILE * | fp, | |
HTK_HMM_INFO * | hmm | |||
) | [static] |
Read one new data and returns the pointer
If a sub-component of this data is directly defined at here, they will be read from here and assigned to this data. If a sub-component is not defined here but a macro name referencing to the component previously defined in other place, the data will be searched by the macro name and the pointer to the found component will be assigned to this model.
fp | [in] file pointer | |
hmm | [in] HMM definition data |
rdhmmdef_data.c の 99 行で定義されています。
参照元 def_HMM().
void def_HMM | ( | char * | name, | |
FILE * | fp, | |||
HTK_HMM_INFO * | hmm | |||
) |
Read a new data and store it as a macro.
name | [in] macro name | |
fp | [in] file pointer | |
hmm | [i/o] HMM definition data |
rdhmmdef_data.c の 159 行で定義されています。
参照元 rdhmmdef().