Home
last modified time | relevance | path

Searched refs:max_frames (Results 1 – 13 of 13) sorted by relevance

/external/srec/srec/crec/
Dsrec_initialize.c79 int max_frames, in allocate_recognition1() argument
112 rec->max_frames = (frameID)max_frames; in allocate_recognition1()
113 …rec->best_model_cost_for_frame = (costdata*)CALLOC_CLR(max_frames, sizeof(costdata), "search.srec.… in allocate_recognition1()
114 rec->word_lattice = allocate_word_lattice((frameID)max_frames); in allocate_recognition1()
147 int max_frames, in allocate_recognition() argument
157 if (check_parameter_range(max_frames, 1, MAXframeID, "max_frames")) in allocate_recognition()
187 …rec->cost_offset_for_frame = (costdata*)CALLOC_CLR(max_frames, sizeof(costdata), "search.srec.curr… in allocate_recognition()
188 …rec->accumulated_cost_offset = (bigcostdata*)CALLOC_CLR(max_frames, sizeof(bigcostdata), "search.s… in allocate_recognition()
189 rec->max_frames = (frameID)max_frames; in allocate_recognition()
190 for (i = 0; i < max_frames; i++) in allocate_recognition()
[all …]
Dword_lattice.c54 srec_word_lattice *allocate_word_lattice(frameID max_frames) in allocate_word_lattice() argument
59 wl->max_frames = max_frames; in allocate_word_lattice()
60 …wl->words_for_frame = (wtokenID*) CALLOC_CLR(max_frames, sizeof(wtokenID), "search.word_lattice.wo… in allocate_word_lattice()
62 …wl->whether_sorted = (asr_int16_t*)CALLOC_CLR(max_frames, sizeof(asr_int16_t), "search.word_latti… in allocate_word_lattice()
77 for (ifr = 0; ifr < wl->max_frames; ifr++) in initialize_word_lattice()
103 if (frame >= wl->max_frames) in lattice_add_word_tokens()
543 ASSERT(frame < wl->max_frames);
Dsrec_eosd.c115 else if (rec->current_search_frame >= rec->word_lattice->max_frames - 1 in srec_check_end_of_speech()
Dsrec.c2017 if (rec1->current_search_frame >= (rec1->word_lattice->max_frames - 1)) in multi_srec_viterbi()
2062 if (rec2->current_search_frame >= (rec2->word_lattice->max_frames - 1)) in multi_srec_viterbi()
2079 if (rec1->current_search_frame >= (rec1->word_lattice->max_frames - 1)) in multi_srec_viterbi()
/external/srec/srec/include/
Dsrec.h130 frameID max_frames; member
263 frameID max_frames; member
298 frameID max_frames; member
Dword_lattice.h49 srec_word_lattice *allocate_word_lattice(frameID max_frames);
Dc42mul.h78 int max_frames,
Dsimapi.h293 int max_frames; /* max number of frames in for searching */ member
/external/srec/srec/ca/
Drec_basi.c90 hRecInput->max_frames, in CA_ConfigureRecognition()
102 hRecInput->max_frames); in CA_ConfigureRecognition()
/external/srec/config/en.us/
Dbaseline.par80 CREC.Recognizer.max_frames = 1000;
Dbaseline8k.par91 CREC.Recognizer.max_frames = 1000;
Dbaseline11k.par89 CREC.Recognizer.max_frames = 1000;
/external/srec/srec/Recognizer/src/
DRecognizerImpl.c589 CHKLOG(rc, ESR_SessionGetInt("CREC.Recognizer.max_frames", &params->max_frames)); in SR_AcousticModels_LoadLegacyRecognizerParameters()