fs.h
上传用户:luckfish
上传日期:2021-12-16
资源大小:77k
文件大小:1k
源码类别:

语音压缩

开发平台:

Visual C++

  1. /*
  2. 2.4 kbps MELP Proposed Federal Standard speech coder
  3. version 1.2
  4. Copyright (c) 1996, Texas Instruments, Inc.  
  5. Texas Instruments has intellectual property rights on the MELP
  6. algorithm.  The Texas Instruments contact for licensing issues for
  7. commercial and non-government use is William Gordon, Director,
  8. Government Contracts, Texas Instruments Incorporated, Semiconductor
  9. Group (phone 972 480 7442).
  10. */
  11. /*
  12.  
  13.   fs.h: Fourier series functions include file
  14. */
  15. void fft(float *datam1,int nn,int isign);
  16. void find_harm(float input[], float mag[],float pitch,int num_harm,int length);
  17. int findmax(float input[], int npts);
  18. void idft_real(float real[], float signal[], int length);