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

语音压缩

开发平台:

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. #include "typedefs.h"
  24. #ifndef __MATHHALF
  25. #define __MATHHALF
  26. /* addition */
  27. /************/
  28. Shortword add(Shortword var1, Shortword var2);  /* 1 ops */
  29. Shortword sub(Shortword var1, Shortword var2);  /* 1 ops */
  30. Longword L_add(Longword L_var1, Longword L_var2);       /* 2 ops */
  31. Longword L_sub(Longword L_var1, Longword L_var2);       /* 2 ops */
  32. /* multiplication */
  33. /******************/
  34. Shortword mult(Shortword var1, Shortword var2); /* 1 ops */
  35. Longword L_mult(Shortword var1, Shortword var2);        /* 1 ops */
  36. Shortword mult_r(Shortword var1, Shortword var2);       /* 2 ops */
  37. /* arithmetic shifts */
  38. /*********************/
  39. Shortword shr(Shortword var1, Shortword var2);  /* 1 ops */
  40. Shortword shl(Shortword var1, Shortword var2);  /* 1 ops */
  41. Longword L_shr(Longword L_var1, Shortword var2);        /* 2 ops */
  42. Longword L_shl(Longword L_var1, Shortword var2);        /* 2 ops */
  43. Shortword shift_r(Shortword var, Shortword var2);       /* 2 ops */
  44. Longword L_shift_r(Longword L_var, Shortword var2);     /* 3 ops */
  45. /* absolute value  */
  46. /*******************/
  47. Shortword abs_s(Shortword var1);       /* 1 ops */
  48. Longword L_abs(Longword var1);         /* 3 ops */
  49. /* multiply accumulate  */
  50. /************************/
  51. Longword L_mac(Longword L_var3,
  52.                       Shortword var1, Shortword var2);  /* 1 op */
  53. Shortword mac_r(Longword L_var3,
  54.                        Shortword var1, Shortword var2); /* 2 op */
  55. Longword L_msu(Longword L_var3,
  56.                       Shortword var1, Shortword var2);  /* 1 op */
  57. Shortword msu_r(Longword L_var3,
  58.                        Shortword var1, Shortword var2); /* 2 op */
  59. /* negation  */
  60. /*************/
  61. Shortword negate(Shortword var1);      /* 1 ops */
  62. Longword L_negate(Longword L_var1);    /* 2 ops */
  63. /* Accumulator manipulation */
  64. /****************************/
  65. Longword L_deposit_l(Shortword var1);  /* 1 ops */
  66. Longword L_deposit_h(Shortword var1);  /* 1 ops */
  67. Shortword extract_l(Longword L_var1);  /* 1 ops */
  68. Shortword extract_h(Longword L_var1);  /* 1 ops */
  69. /* Round */
  70. /*********/
  71. Shortword round(Longword L_var1);      /* 1 ops */
  72. /* Normalization */
  73. /*****************/
  74. Shortword norm_l(Longword L_var1);     /* 30 ops */
  75. Shortword norm_s(Shortword var1);      /* 15 ops */
  76. /* Division */
  77. /************/
  78. Shortword divide_s(Shortword var1, Shortword var2);     /* 18 ops */
  79. /* Non-saturating instructions */
  80. /*******************************/
  81. Longword L_add_c(Longword L_Var1, Longword L_Var2);     /* 2 ops */
  82. Longword L_sub_c(Longword L_Var1, Longword L_Var2);     /* 2 ops */
  83. Longword L_sat(Longword L_var1);       /* 4 ops */
  84. Longword L_macNs(Longword L_var3,
  85.                         Shortword var1, Shortword var2);        /* 1 ops */
  86. Longword L_msuNs(Longword L_var3,
  87.                         Shortword var1, Shortword var2);        /* 1 ops */
  88. #endif