// file: $SPEECH_HOMEWORK4/hw4/util/calculate_snr/v1.0/calculate_snr_constants.h // // make sure the definitions are made only once // #ifndef __ISIP_CALCULATE_SNR_CONSTANTS #define __ISIP_CALCULATE_SNR_CONSTANTS // isip include files // #ifndef __ISIP_INTEGRAL_CONSTANTS #include #endif #ifndef __ISIP_SIGNAL_CONSTANTS #include #endif // define the help file // #define CLPC_HELP_FILE (char_1*)"$SPEECH_HOMEWORK4/util/calculate_lpc/v1.0/calculate_lpc.help" // define command line identifiers // #define CLPC_PARAM_OPT (char_1*)"-param" #define CLPC_INPUT_OPT (char_1*)"-input" #define CLPC_OUTPUT_OPT (char_1*)"-output" #define CLPC_DEBUG_OPT (char_1*)"-debug" #define CLPC_HELP_OPT (char_1*)"-help" #define CLPC_NUM_CHAN_OPT (char_1*)"-c" #define CLPC_WINDOW_OPT (char_1*)"-w" #define CLPC_FREQ_OPT (char_1*)"-sf" #define CLPC_WIN_CENTER_OPT (char_1*)"-wc" #define CLPC_PRE_EMPHASIZE_OPT (char_1*)"-pre" #define CLPC_LP_ORDER_OPT (char_1*)"-lp" #define CLPC_HAMMING_OPT (char_1*)"-hamm" #define CLPC_RECTANGULAR_OPT (char_1*)"-rect" // define bytes per sample // #define CLPC_BYTES_PER_SAMPLE (int_4)2 // define number of msec in a sec // #define CLPC_NUMBER_MSEC_PER_SEC (int_4)1000 // end of file // #endif