www.pudn.com > ETSI_ES_202_212_software.rar > CompCepsExports.h


/*===============================================================================
 *      ETSI ES 202 212   Distributed Speech Recognition
 *      Extended Advanced Front-End Feature Extraction Algorithm & Compression Algorithm
 *      Speech Reconstruction Algorithm.
 *      C-language software implementation                                      
 *      Version 1.1.1   October, 2003                                            
 *===============================================================================*/
/*-------------------------------------------------------------------------------
 *
 * FILE NAME: CompCepsExports.h
 * PURPOSE:   Calculating cepstral features and logE for the de-noised
 *            input frame.
 *
 *-------------------------------------------------------------------------------*/
#ifndef _COMPCEPSEXPORTS_H
#define _COMPCEPSEXPORTS_H

extern CompCepsStructX *DoCompCepsAlloc (void);
extern void             DoCompCepsInit (FEParamsX *This);
extern BOOLEAN          DoCompCeps (X_FLOAT32 *Data, X_FLOAT32 *Coef, FEParamsX *This);
extern void             DoCompCepsDelete (CompCepsStructX *WPX);

#endif