wmops.c
上传用户: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.   wmops_lib.c: dummy routines for weighted MOPS estimation.
  25. */
  26. /*  compiler include files  */
  27. #include        <stdio.h>
  28. #include        <math.h>
  29. #include "spbstd.h"
  30. #include "wmops.h"
  31. extern int complexity;
  32. /*
  33.     Data Move: constant -> variable
  34.                variable -> variable
  35.        result of operation -> array variable
  36.        arithmetic test on array variable
  37. */
  38. void data_move()
  39. {
  40.   complexity += 1;
  41. }
  42. void L_data_move()
  43. {
  44.   complexity += 2;
  45. }
  46. /*
  47.     Logical operation: AND, OR, XOR, NOT
  48. */
  49. void logic()
  50. {
  51.   complexity += 1;
  52. }
  53. void L_logic()
  54. {
  55.   complexity += 2;
  56. }
  57. /*
  58.     Arithmetic test: IF, WHILE, DO..WHILE
  59. */
  60. void compare_zero()
  61. {
  62.   complexity += 2;
  63. }
  64. void compare_nonzero()
  65. {
  66.   /* To perform a comparison between two short variables or a short variable 
  67.      and a non-zero constant, a subtract (sub) must be performed first. */
  68.   complexity += 3;
  69. }
  70. void L_compare_nonzero()
  71. {
  72.   /* To perform a comparison between two long variables or a long variable 
  73.      and a non-zero constant, a subtract (L_sub) must be performed first. */
  74.   complexity += 4;
  75. }