Home | History | Annotate | Download | only in bin

Lines Matching defs:fst

23 #include <fst/script/project.h>
28 namespace s = fst::script;
29 using fst::script::FstClass;
30 using fst::script::MutableFstClass;
35 usage += " [in.fst [out.fst]]\n";
47 MutableFstClass *fst = MutableFstClass::Read(in_name, true);
48 if (!fst) return 1;
50 fst::ProjectType project_type = FLAGS_project_output ?
51 fst::PROJECT_OUTPUT : fst::PROJECT_INPUT;
53 s::Project(fst, project_type);
55 fst->Write(out_name);