Mercurial > hg > aimc
diff trunk/src/Modules/Output/FileOutputHTK.cc @ 278:5b8b9ea1218a
- Added a basic main function to test that all the can be fitted together
- Fixed an initialisation bug in ModuleFileInput that left the buffer size at zero
- Added proper description strings to the input and output modules
- Fixed an out-by-a-factor-of-1000 bug in the SAI memory allocation (oops)
- Added LOG_INFO_NN fucnction to log without a newline. Useful for the ASCII art module chain in aimc.cc.
author | tomwalters |
---|---|
date | Thu, 18 Feb 2010 19:35:07 +0000 |
parents | 6b4921704eb1 |
children | f469d936337f |
line wrap: on
line diff
--- a/trunk/src/Modules/Output/FileOutputHTK.cc Thu Feb 18 16:55:40 2010 +0000 +++ b/trunk/src/Modules/Output/FileOutputHTK.cc Thu Feb 18 19:35:07 2010 +0000 @@ -40,6 +40,11 @@ namespace aimc { FileOutputHTK::FileOutputHTK(Parameters *params) : Module(params) { + module_description_ = "File output in HTK format"; + module_identifier_ = "htk_out"; + module_type_ = "output"; + module_version_ = "$Id$"; + file_handle_ = NULL; header_written_ = false; filename_[0] = '\0';