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

语音压缩

开发平台:

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. /*  Coeff.c: filter coefficient file */
  24. /*                                   */
  25. /*                                                                  */
  26. /* (C) 1997  Texas Instruments                                      */
  27. /*                                                                  */
  28. #include <stdio.h>
  29. #include "mathhalf.h"
  30. #include "melp.h"
  31. /* Lowpass filter coefficient in second-order sections */
  32. /* Butterworth, 6th order, Cutoff at 1 kHz */
  33. /* matlab commands: [z,p,k]=butter(6,1000/4000);  */
  34. /*                      sos=zp2sos(z,p,k);        */
  35. /* Q13 */
  36. Shortword lpf_num[(LPF_ORD/2)*3] = {
  37.         713, 1426, 713,
  38. 798, 1600, 801,
  39. 1016, 2028, 1012};
  40. /* sign of coefficients for lpf_den is reversed */
  41. Shortword lpf_den[(LPF_ORD/2)*3] = {
  42.         -8192, 6884, -1543, 
  43. -8192, 7723, -2731, 
  44. -8192, 9793, -5657};
  45. /* Butterworth bandpass filters in second-order sections */
  46. /* matlab scrpt: ~wmlai/dod/fixedpt/bp_sos_fxp.m */
  47. /* Q13 */
  48. Shortword bpf_num[NUM_BANDS*((BPF_ORD/2)*3)] = {
  49. 285, 567, 283,        /* lowpass, cutoff at 500 Hz */
  50. 245, 491, 245,
  51.         227, 455, 228,
  52. 5001, -10001, 5001,   /* bandpass, pass band at 500-1000 Hz */
  53. 429, 857, 429,
  54. 1359, 0, -1359,
  55. 4470, -8941, 4470,    /* bandpass, pass band at 1000-2000 Hz */
  56. 1624, 3248, 1624,
  57. 2399, 0, -2399,
  58. 4470, 8941, 4470,     /* bandpass, pass band at 2000-3000 Hz */
  59. 1624, -3248, 1624,
  60. 2399, 0, -2399,
  61. 1020, -2028, 1008,    /* highpass, cutoff at 3000 Hz */
  62. 795, -1599, 805,
  63. 713, -1426, 713};
  64. /* sign of coefficients for bpf_den is reversed */
  65. Shortword bpf_den[NUM_BANDS*((BPF_ORD/2)*3)] = {
  66. -8192, 13772, -6715,      /* lowpass, cutoff at 500 Hz */
  67. -8192, 11913, -4703,
  68.         -8192, 11051, -3770,
  69. -8192, 14036, -7108,      /* bandpass, pass band at 500-1000 Hz */
  70. -8192, 10624, -6408,
  71. -8192, 11585, -5474,
  72. -8192, 9687, -6002,       /* bandpass, pass band at 1000-2000 Hz */
  73. -8192, 645, -5339,
  74. -8192, 4799, -3393,
  75. -8192, -9687, -6002,      /* bandpass, pass band at 2000-3000 Hz */
  76. -8192, -645, -5339,
  77. -8192, -4799, -3393,
  78. -8192, -9793, -5657,      /* highpass, cutoff at 3000 Hz */
  79. -8192, -7723, -2731,
  80. -8192, -6883, -1543};
  81. /* Hamming window coefficents in Q15 */
  82. Shortword win_cof[LPC_FRAME] = {
  83.         2621,
  84. 2628,
  85. 2651,
  86. 2689,
  87. 2741,
  88. 2808,
  89. 2891,
  90. 2988,
  91. 3099,
  92. 3225,
  93. 3366,
  94. 3521,
  95. 3690,
  96. 3873,
  97. 4070,
  98. 4280,
  99. 4504,
  100. 4741,
  101. 4990,
  102. 5253,
  103. 5528,
  104. 5815,
  105. 6113,
  106. 6424,
  107. 6745,
  108. 7078,
  109. 7421,
  110. 7774,
  111. 8138,
  112. 8510,
  113. 8892,
  114. 9283,
  115. 9682,
  116. 10089,
  117. 10504,
  118. 10925,
  119. 11354,
  120. 11789,
  121. 12230,
  122. 12676,
  123. 13127,
  124. 13583,
  125. 14043,
  126. 14506,
  127. 14973,
  128. 15442,
  129. 15914,
  130. 16387,
  131. 16862,
  132. 17337,
  133. 17813,
  134. 18289,
  135. 18764,
  136. 19238,
  137. 19711,
  138. 20181,
  139. 20649,
  140. 21115,
  141. 21576,
  142. 22034,
  143. 22488,
  144. 22936,
  145. 23380,
  146. 23818,
  147. 24250,
  148. 24675,
  149. 25093,
  150. 25504,
  151. 25907,
  152. 26302,
  153. 26688,
  154. 27066,
  155. 27434,
  156. 27792,
  157. 28140,
  158. 28478,
  159. 28805,
  160. 29121,
  161. 29426,
  162. 29719,
  163. 30000,
  164. 30268,
  165. 30524,
  166. 30768,
  167. 30998,
  168. 31215,
  169. 31419,
  170. 31609,
  171. 31785,
  172. 31947,
  173. 32094,
  174. 32228,
  175. 32347,
  176. 32451,
  177. 32541,
  178. 32616,
  179. 32676,
  180. 32721,
  181. 32751,
  182. 32766,
  183. 32766,
  184. 32751,
  185. 32721,
  186. 32676,
  187. 32616,
  188. 32541,
  189. 32451,
  190. 32347,
  191. 32228,
  192. 32094,
  193. 31947,
  194. 31785,
  195. 31609,
  196. 31419,
  197. 31215,
  198. 30998,
  199. 30768,
  200. 30524,
  201. 30268,
  202. 30000,
  203. 29719,
  204. 29426,
  205. 29121,
  206. 28805,
  207. 28478,
  208. 28140,
  209. 27792,
  210. 27434,
  211. 27066,
  212. 26688,
  213. 26302,
  214. 25907,
  215. 25504,
  216. 25093,
  217. 24675,
  218. 24250,
  219. 23818,
  220. 23380,
  221. 22936,
  222. 22488,
  223. 22034,
  224. 21576,
  225. 21115,
  226. 20649,
  227. 20181,
  228. 19711,
  229. 19238,
  230. 18764,
  231. 18289,
  232. 17813,
  233. 17337,
  234. 16862,
  235. 16387,
  236. 15914,
  237. 15442,
  238. 14973,
  239. 14506,
  240. 14043,
  241. 13583,
  242. 13127,
  243. 12676,
  244. 12230,
  245. 11789,
  246. 11354,
  247. 10925,
  248. 10504,
  249. 10089,
  250. 9682,
  251. 9283,
  252. 8892,
  253. 8510,
  254. 8138,
  255. 7774,
  256. 7421,
  257. 7078,
  258. 6745,
  259. 6424,
  260. 6113,
  261. 5815,
  262. 5528,
  263. 5253,
  264. 4990,
  265. 4741,
  266. 4504,
  267. 4280,
  268. 4070,
  269. 3873,
  270. 3690,
  271. 3521,
  272. 3366,
  273. 3225,
  274. 3099,
  275. 2988,
  276. 2891,
  277. 2808,
  278. 2741,
  279. 2689,
  280. 2651,
  281. 2628,
  282. 2621};
  283. /* Bandpass filter coeffients */
  284. Shortword bp_cof[NUM_BANDS][MIX_ORD+1] = {
  285. {
  286.         0,        /* lowpass, cutoff at 500 Hz */
  287.       -50,
  288.      -115,
  289.      -185,
  290.      -245,
  291.      -274,
  292.      -253,
  293.      -165,
  294.         0,
  295.       242,
  296.       548,
  297.       897,
  298.      1257,
  299.      1590,
  300.      1860,
  301.      2036,
  302.      2097,
  303.      2036,
  304.      1860,
  305.      1590,
  306.      1257,
  307.       897,
  308.       548,
  309.       242,
  310.         0,
  311.      -165,
  312.      -253,
  313.      -274,
  314.      -245,
  315.      -185,
  316.      -115,
  317.       -50,
  318. 0
  319. },
  320. {
  321.         0,      /* bandpass, pass band at 500-1000 Hz */
  322.       -41,
  323.       -46,
  324.        42,
  325.       238,
  326.       470,
  327.       593,
  328.       456,
  329.         0,
  330.      -668,
  331.     -1286,
  332.     -1539,
  333.     -1221,
  334.      -362,
  335.       748,
  336.      1677,
  337.      2037,
  338.      1677,
  339.       748,
  340.      -362,
  341.     -1221,
  342.     -1539,
  343.     -1286,
  344.      -668,
  345.         0,
  346.       456,
  347.       593,
  348.       470,
  349.       238,
  350.        42,
  351.       -46,
  352.       -41,
  353.         0
  354. },
  355. {
  356.         0,      /* bandpass, pass band at 1000-2000 Hz */
  357.       -38,
  358.       162,
  359.       342,
  360.         0,
  361.      -506,
  362.      -357,
  363.       126,
  364.         0,
  365.      -185,
  366.       774,
  367.      1656,
  368.         0,
  369.     -2933,
  370.     -2627,
  371.      1556,
  372.      4188,
  373.      1556,
  374.     -2627,
  375.     -2933,
  376.         0,
  377.      1656,
  378.       774,
  379.      -185,
  380.         0,
  381.       126,
  382.      -357,
  383.      -506,
  384.         0,
  385.       342,
  386.       162,
  387.       -38,
  388.         0
  389. },
  390. {
  391.         0,      /* bandpass, pass band at 2000-3000 Hz */
  392.        38,
  393.       162,
  394.      -342,
  395.         0,
  396.       506,
  397.      -357,
  398.      -126,
  399.         0,
  400.       185,
  401.       774,
  402.     -1656,
  403.         0,
  404.      2933,
  405.     -2627,
  406.     -1556,
  407.      4188,
  408.     -1556,
  409.     -2627,
  410.      2933,
  411.         0,
  412.     -1656,
  413.       774,
  414.       185,
  415.         0,
  416.      -126,
  417.      -357,
  418.       506,
  419.         0,
  420.      -342,
  421.       162,
  422.        38,
  423. 0
  424. },
  425. {
  426.         0,      /* highpass, cutoff at 3000 Hz */
  427.        91,
  428.      -161,
  429.       140,
  430.         0,
  431.      -208,
  432.       354,
  433.      -302,
  434.         0,
  435.       442,
  436.      -768,
  437.       680,
  438.         0,
  439.     -1205,
  440.      2604,
  441.     -3725,
  442.      4153,
  443.     -3725,
  444.      2604,
  445.     -1205,
  446.         0,
  447.       680,
  448.      -768,
  449.       442,
  450.         0,
  451.      -302,
  452.       354,
  453.      -208,
  454.         0,
  455.       140,
  456.      -161,
  457.        91,
  458.         0}};
  459. /* Triangle pulse dispersion filter */
  460. Shortword disp_cof[DISP_ORD+1] = {
  461.     -5670,
  462.      -461,
  463.       401,
  464.      3724,
  465.        65,
  466.         0,
  467.      1484,
  468.       -30,
  469.       -34,
  470.       836,
  471.     -2077,
  472.       -40,
  473.       463,
  474.      7971,
  475.      -579,
  476.        -6,
  477.      1923,
  478.      -107,
  479.       199,
  480.       902,
  481.     -1098,
  482.       197,
  483.       471,
  484.     27150,
  485.        11,
  486.      -118,
  487.      2406,
  488.      -170,
  489.       425,
  490.       960,
  491.      -652,
  492.       399,
  493.       387,
  494.    -12755,
  495.       236,
  496.      -378,
  497.      2761,
  498.      -117,
  499.       705,
  500.       973,
  501.      -409,
  502.       608,
  503.        25,
  504.     -2539,
  505.       408,
  506.      -892,
  507.      2381,
  508.       155,
  509.      1156,
  510.       876,
  511.      -244,
  512.       846,
  513.         6,
  514.      -926,
  515.       564,
  516.     -1967,
  517.     -2319,
  518.       300,
  519.      1993,
  520.       592,
  521.      -104,
  522.      1129,
  523.         9,
  524.      -345,
  525.       710};