math_lib.h
上传用户:cxx_68
上传日期:2021-02-21
资源大小:161k
文件大小:2k
源码类别:

语音压缩

开发平台:

Visual C++

  1. /*
  2. 2.4 kbps MELP Proposed Federal Standard speech coder
  3. Fixed-point C code, version 1.0
  4. Copyright (c) 1998, 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. The fixed-point version of the voice codec Mixed Excitation Linear
  11. Prediction (MELP) is based on specifications on the C-language software
  12. simulation contained in GSM 06.06 which is protected by copyright and
  13. is the property of the European Telecommunications Standards Institute
  14. (ETSI). This standard is available from the ETSI publication office
  15. tel. +33 (0)4 92 94 42 58. ETSI has granted a license to United States
  16. Department of Defense to use the C-language software simulation contained
  17. in GSM 06.06 for the purposes of the development of a fixed-point
  18. version of the voice codec Mixed Excitation Linear Prediction (MELP).
  19. Requests for authorization to make other use of the GSM 06.06 or
  20. otherwise distribute or modify them need to be addressed to the ETSI
  21. Secretariat fax: +33 493 65 47 16.
  22. */
  23. /* 
  24.    math_lib.h    Math include file.
  25.                  (Log and Divide functions.)  
  26.    Copyright (c) 1997 by Texas Instruments, Inc.  All rights reserved.
  27. */
  28. #ifndef _math_lib_h
  29. #define _math_lib_h_
  30. /* External function definitions */
  31. Shortword divider(Shortword numer, Shortword denom, Shortword numer_shift, 
  32.   Shortword denom_shift);
  33. Shortword L_divider2 (Longword numer, Longword denom, Shortword numer_shift, 
  34.       Shortword denom_shift);
  35. Shortword log10_fxp(Shortword x, Shortword Q);
  36. Shortword L_log10_fxp(Longword x, Shortword Q);
  37. Shortword pow10_fxp(Shortword x, Shortword Q);
  38. Shortword sqrt_fxp (Shortword x, Shortword Q);
  39. Shortword L_sqrt_fxp(Longword x, Shortword Q);
  40. Shortword L_pow_fxp(Longword x,Shortword power,Shortword Q_in,Shortword Q_out);
  41. Shortword sin_fxp(Shortword x);
  42. Shortword cos_fxp(Shortword x);
  43. Shortword acos_fxp(Shortword x);
  44. #endif