pit.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.   pit.h: include file for pitch subroutines
  13.   
  14. */
  15. /* External function definitions */
  16. float double_chk(float sig_in[], float *pcorr, float pitch, float pdouble, int pmin, int pmax, int lmin);
  17. void double_ver(float sig_in[], float *pcorr, float pitch, int pmin, int pmax, int lmin);
  18. float find_pitch(float sig_in[],float *pcorr,int lower,int upper,int length);
  19. float frac_pch(float sig_in[], float *corr, float pitch, int range, int pmin, int pmax, int lmin);
  20. float pitch_ana(float speech[], float resid[], float pitch_est, float pitch_avg, float *pcorr2);
  21. void pitch_ana_init(int pmin, int pmax, int fr, int lpf_ord, int lmin);
  22. float p_avg_update(float pitch, float pcorr, float pthresh);
  23. void p_avg_init(float pdecay, float default_pitch, int num_good);