HomeSort by relevance Sort by last modified time
    Searched refs:hRecog (Results 1 - 7 of 7) sorted by null

  /external/srec/srec/ca/
rec_resu.c 43 int CA_FullResultScore(CA_Recog *hRecog, int *score, int do_incsil)
47 srec_get_top_choice_score(hRecog->recm, &cost, do_incsil);
54 int CA_FullResultLabel(CA_Recog *hRecog, char *label, int len)
59 rc = srec_get_top_choice_transcription(hRecog->recm, label, len, 1);
65 END_CATCH_CA_EXCEPT(hRecog)
74 ESR_ReturnCode CA_GetRecogID(CA_Recog *hRecog, int *id)
76 srec_get_bestcost_recog_id(hRecog->recm, id);
80 ESR_ReturnCode CA_FullResultWordIDs(CA_Recog *hRecog, wordID *wordIDs, size_t* len)
82 return srec_get_top_choice_wordIDs(hRecog->recm, wordIDs, len);
85 void CA_ClearResults(CA_Recog *hRecog)
    [all...]
rec_basi.c 44 CA_Recog *hRecog = NULL;
58 hRecog = (CA_Recog *) CALLOC_CLR(1, sizeof(CA_Recog), "ca.hRecog");
60 hRecog->setup_count = 0;
61 hRecog->is_running = False;
62 hRecog->is_configured = False;
63 hRecog->is_resultBlocked = False;
64 hRecog->ca_rtti = CA_RECOGNIZER_SIGNATURE;
66 hRecog->recm = (multi_srec*)CALLOC_CLR(1, sizeof(multi_srec), "ca.hRecog.srec")
    [all...]
rec_load.c 43 void CA_LoadModelsInAcoustic(CA_Recog *hRecog, CA_Acoustic *hAcoust,
48 ASSERT(hRecog);
57 rc = add_acoustic_model_for_recognition(hRecog->recm, hAcoust->swimodel);
61 END_CATCH_CA_EXCEPT(hRecog)
65 void CA_UnloadRecognitionModels(CA_Recog *hRecog)
69 rc = clear_acoustic_models_for_recognition(hRecog->recm);
71 END_CATCH_CA_EXCEPT(hRecog)
rec_nbes.c 41 CA_NBestList *CA_PrepareNBestList(CA_Recog *hRecog, int num, asr_int32_t *bestScore)
46 ASSERT(hRecog);
48 newList = (CA_NBestList*)srec_nbest_prepare_list(hRecog->recm, num, bestScore);
52 END_CATCH_CA_EXCEPT(hRecog)
syn_srec.c 308 int CA_SetupSyntaxForRecognizer(CA_Syntax *hSyntax, CA_Recog *hRecog)
312 rc = activate_grammar_for_recognition(hRecog->recm, hSyntax->synx, rule);
321 int CA_CeilingSyntaxForRecognizer(CA_Syntax *hSyntax, CA_Recog *hRecog)
323 if(!hSyntax || !hRecog)
325 if(!hSyntax->synx || !hRecog->recm)
327 hSyntax->synx->max_searchable_nodes = hRecog->recm->max_fsm_nodes;
328 hSyntax->synx->max_searchable_arcs = hRecog->recm->max_fsm_arcs;
353 void CA_ClearSyntaxForRecognizer(CA_Syntax *hSyntax, CA_Recog *hRecog)
357 rc = clear_grammars_for_recognition(hRecog->recm);
ann_api.c 113 int CA_AnnotateFromResults(CA_Annotation* hAnnotation, CA_Recog *hRecog)
119 ASSERT(hRecog);
126 seg_cnt = annotation_from_results(hAnnotation->data, &hRecog->rec);
  /external/srec/srec/include/
simapi.h 842 * CA_AdvanceRecognitionByFrame( hRecog, hPattern, hUtt );
    [all...]

Completed in 37 milliseconds