语音谱进行分析
typedef struct
{
UInt16 m_HighFrequency;
UInt16 m_LowFrequency;
Int16 m_pReal[FRAME_LEN];
Int16 m_pImage[FRAME_LEN];
Int32 m_pReal32[FRAME_LEN];
Int32 m_pImage32[FRAME_LEN];
PInt16 m_pInFrame;
PInt16 m_pOutFrame;
Int32 m_pTmp[FRAME_LEN];
PInt16 m_pRealTmp;
PInt16 m_pImageTmp;
PUInt16 m_pGain;
Int16 m_Q;
Int16 m_sIsTestSig;
}TSpectrum,Ptr PSpectrum;
/* public interface */
void Call
Spectrum_Init(
PSpectrum pThis,
PInt16 pInFrame,
PInt16 pOutFrame,
PUInt16 pGain
);
void Call
Spectrum_Fraq2Time(
PSpectrum pThis
);
void Call
Spectrum_Time2Fraq(
PSpectrum pThis
);
void Call
Spectrum_