lspmaq.c 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285
  1. /**********************************************************************
  2. Each of the companies; Lucent, Motorola, Nokia, and Qualcomm (hereinafter
  3. referred to individually as "Source" or collectively as "Sources") do
  4. hereby state:
  5. To the extent to which the Source(s) may legally and freely do so, the
  6. Source(s), upon submission of a Contribution, grant(s) a free,
  7. irrevocable, non-exclusive, license to the Third Generation Partnership
  8. Project 2 (3GPP2) and its Organizational Partners: ARIB, CCSA, TIA, TTA,
  9. and TTC, under the Source's copyright or copyright license rights in the
  10. Contribution, to, in whole or in part, copy, make derivative works,
  11. perform, display and distribute the Contribution and derivative works
  12. thereof consistent with 3GPP2's and each Organizational Partner's
  13. policies and procedures, with the right to (i) sublicense the foregoing
  14. rights consistent with 3GPP2's and each Organizational Partner's policies
  15. and procedures and (ii) copyright and sell, if applicable) in 3GPP2's name
  16. or each Organizational Partner's name any 3GPP2 or transposed Publication
  17. even though this Publication may contain the Contribution or a derivative
  18. work thereof. The Contribution shall disclose any known limitations on
  19. the Source's rights to license as herein provided.
  20. When a Contribution is submitted by the Source(s) to assist the
  21. formulating groups of 3GPP2 or any of its Organizational Partners, it
  22. is proposed to the Committee as a basis for discussion and is not to
  23. be construed as a binding proposal on the Source(s). The Source(s)
  24. specifically reserve(s) the right to amend or modify the material
  25. contained in the Contribution. Nothing contained in the Contribution
  26. shall, except as herein expressly provided, be construed as conferring
  27. by implication, estoppel or otherwise, any license or right under (i)
  28. any existing or later issuing patent, whether or not the use of
  29. information in the document necessarily employs an invention of any
  30. existing or later issued patent, (ii) any copyright, (iii) any
  31. trademark, or (iv) any other intellectual property right.
  32. With respect to the Software necessary for the practice of any or
  33. all Normative portions of the Enhanced Variable Rate Codec (EVRC) as
  34. it exists on the date of submittal of this form, should the EVRC be
  35. approved as a Specification or Report by 3GPP2, or as a transposed
  36. Standard by any of the 3GPP2's Organizational Partners, the Source(s)
  37. state(s) that a worldwide license to reproduce, use and distribute the
  38. Software, the license rights to which are held by the Source(s), will
  39. be made available to applicants under terms and conditions that are
  40. reasonable and non-discriminatory, which may include monetary compensation,
  41. and only to the extent necessary for the practice of any or all of the
  42. Normative portions of the EVRC or the field of use of practice of the
  43. EVRC Specification, Report, or Standard. The statement contained above
  44. is irrevocable and shall be binding upon the Source(s). In the event
  45. the rights of the Source(s) in and to copyright or copyright license
  46. rights subject to such commitment are assigned or transferred, the
  47. Source(s) shall notify the assignee or transferee of the existence of
  48. such commitments.
  49. *******************************************************************/
  50. /*======================================================================*/
  51. /* Enhanced Variable Rate Codec - Bit-Exact C Specification */
  52. /* Copyright (C) 1997-1998 Telecommunications Industry Association. */
  53. /* All rights reserved. */
  54. /*----------------------------------------------------------------------*/
  55. /* Note: Reproduction and use of this software for the design and */
  56. /* development of North American Wideband CDMA Digital */
  57. /* Cellular Telephony Standards is authorized by the TIA. */
  58. /* The TIA does not authorize the use of this software for any */
  59. /* other purpose. */
  60. /* */
  61. /* The availability of this software does not provide any license */
  62. /* by implication, estoppel, or otherwise under any patent rights */
  63. /* of TIA member companies or others covering any use of the */
  64. /* contents herein. */
  65. /* */
  66. /* Any copies of this software or derivative works must include */
  67. /* this and all other proprietary notices. */
  68. /*======================================================================*/
  69. /* Memory Usage: */
  70. /* ROM: 1 */
  71. /* Static/Global RAM: 0 */
  72. /* Stack/Local RAM: 527 */
  73. /*----------------------------------------------------------------------*/
  74. /*********************************************************************************
  75. * ***** LSP matrix quantization ************ *
  76. * *
  77. * Input Arguments *
  78. * *************** *
  79. * x Input LSP matrix x(ndimx,kdim), i.e., kdim rows of *
  80. * ndimx elements. *
  81. * LSP vectors row by row. *
  82. * ndim Actual vector dimension (LSP order). ndim <= ndimx *
  83. * kdim Number of LSP vectors, i.e., number of rows in the main matrix. *
  84. * many Number of sub-matrices. *
  85. * nsub Array containing "many" sub-matrices sizes. nsub(i) is the size *
  86. * of the rows in the ith sub-matrix. Sum(i)[ nsub(i) ] = ndim *
  87. * book (1D). Contains "many" codebooks in series. The ith codebook *
  88. * contains matices of size kdim rows by nsub(i) columns. *
  89. * i.e., kdim vectors of size nsub(i) in series. *
  90. * alp Weight adjustment factor. alp=0 no weight *
  91. * alp >0 input is weighted *
  92. * nsiz Contain "many" size values. nsiz(i) is the number of matrices *
  93. * in codebook i. *
  94. * *
  95. * Output arguments *
  96. * **************** *
  97. * y Output matrix. The quantized version of x (same size). *
  98. * index Contains "many" indices of the best matrix from each codebook *
  99. * d Aux. array, at least the size of max( nsiz(i) ) *
  100. * *
  101. *********************************************************************************/
  102. /*===========================================================================
  103. INCLUDES
  104. ===========================================================================*/
  105. #include <fcntl.h>
  106. #include <stdio.h>
  107. //#include <math.h>
  108. #include "macro.h"
  109. #include "rom.h"
  110. //#include "mathevrc.h"
  111. #include "dsp_math.h"
  112. #include "mathdp31.h"
  113. /*===========================================================================
  114. GLOBAL VARIABLES
  115. ===========================================================================*/
  116. /*===========================================================================
  117. FUNCTIONS
  118. ===========================================================================*/
  119. void
  120. lspmaq(INT16 *x, INT16 ndim, INT16 kdim, INT16 many, INT16 *nsub,
  121. INT16 *nsiz, INT16 alp, INT16 *y, INT16 *index, INT16 br, INT16 *lsptab)
  122. {
  123. /*===========================================================================
  124. LOCAL VARIABLE DECLARATIONS
  125. ===========================================================================*/
  126. #define SCALED_OneDivPI2 5215
  127. static INT16 df = MIN_LSP_SEP;
  128. register INT16 i, j, m, im, jp, jm, jpm, jj;
  129. INT16 dm;
  130. INT16 d[2048];
  131. INT16 shft_fctr[ORDER];
  132. INT32 ltemp1;
  133. INT32 ltemp2;
  134. INT16 stemp1;
  135. /*===========================================================================
  136. START C CODE
  137. ===========================================================================*/
  138. jj = 0;
  139. /* Find weights */
  140. y[0] = sub(x[1], x[0]);
  141. y[ndim - 1] = sub(x[ndim - 1], x[ndim - 2]);
  142. for (i = 1; i < ndim - 1; i++)
  143. y[i] = Min(sub(x[i], x[i - 1]), sub(x[i + 1], x[i]));
  144. for (i = 0; i < ndim; i = add(i, 1))
  145. {
  146. if (y[i] != 0)
  147. {
  148. shft_fctr[i] = norm_s(y[i]);
  149. y[i] = shl(y[i], shft_fctr[i]);
  150. y[i] = add(mult(divide_s(alp, y[i]), SCALED_OneDivPI2),
  151. shr(0x4000, shft_fctr[i] - 1));
  152. }
  153. else
  154. {
  155. y[i] = 18346;
  156. shft_fctr[i] = 4;
  157. }
  158. }
  159. /* Code all sub-matrices */
  160. im = 0;
  161. jp = 0;
  162. for (m = 0; m < many; m = add(m, 1))
  163. {
  164. for (j = 0; j < nsiz[m]; j = add(j, 1))
  165. d[j] = 0;
  166. for (j = 0; j < nsiz[m]; j = add(j, 1))
  167. {
  168. /* jm = km * j; */
  169. jm = shr(extract_l(L_mult(nsub[m], j)), 1);
  170. ltemp2 = 0;
  171. jpm = add(jp, jm);
  172. for (i = 0; i < nsub[m]; i++)
  173. {
  174. /* Rounding instead of extracting the high word
  175. * in the following statements causes an error on
  176. * input frame 141 of enc_lspmaq.in (female).
  177. */
  178. stemp1 = sub(x[i + im], lsptab[jpm + i]);
  179. ltemp1 = L_shl(L_mult(y[i + im], stemp1),
  180. shft_fctr[i + im]);
  181. ltemp2 = L_add(ltemp2,
  182. L_mult(extract_h(ltemp1),
  183. stemp1));
  184. }
  185. d[j] = round32(ltemp2);
  186. }
  187. if (im > 0)
  188. {
  189. for (j = 0; j < nsiz[m]; j = add(j, 1))
  190. {
  191. jm = shr(extract_l(L_mult(nsub[m], j)), 1);
  192. jpm = add(jp, jm);
  193. if (lsptab[jpm] <= add(y[im - 1], df))
  194. {
  195. d[j] = 0x7FFF;
  196. }
  197. }
  198. }
  199. dm = 0x7FFF;
  200. for (j = 0; j < nsiz[m]; j = add(j, 1))
  201. {
  202. if (d[j] <= dm)
  203. {
  204. dm = d[j];
  205. jj = j;
  206. }
  207. }
  208. index[m] = jj;
  209. jpm = add(jp, shr(extract_l(L_mult(nsub[m], index[m])), 1));
  210. for (i = 0; i < nsub[m]; i = add(i, 1))
  211. {
  212. y[im + i] = lsptab[jpm + i];
  213. }
  214. im = add(im, nsub[m]);
  215. jp = add(jp, shr(extract_l(L_mult(nsub[m], nsiz[m])), 1));
  216. }
  217. } /* END MODULE lspmaq */
  218. /***************************************************************************
  219. * Routine name: lspmaq_dec *
  220. * Function: VQ of line spectral frequencies - Decoder part. *
  221. * Inputs: *
  222. * ndim - Actual vector dimension (LSP order). *
  223. * kdim - Number of LSP vectors, i.e., number of rows in the main *
  224. * matrix. *
  225. * many - Number of sub-matrices. *
  226. * nsub - Array containing "many" sub-matrices sizes. nsub(i) is *
  227. * the size of the rows in the ith sub-matrix. *
  228. * Sum(i)[ nsub(i) ] = ndim. *
  229. * book - (1D). Contains "many" codebooks in series. The ith *
  230. * codebook contains matices of size kdim rows by nsub(i) *
  231. * columns. i.e., kdim vectors of size nsub(i) in series. *
  232. * alp - Weight adjustment factor. alp=0 no weight. alp >0 input *
  233. * is weighted. *
  234. * nsiz - Contain "many" size values. nsiz(i) is the number of *
  235. * matrices in codebook i. *
  236. * *
  237. * Outputs: y - Output matrix. The quantized version of x (same size). *
  238. * index - Contains "many" indices of the best matrix from each *
  239. * codebook. *
  240. * *
  241. * *
  242. * Program written by Dror Nahumi, Dep. 45370H *
  243. ***************************************************************************/
  244. void lspmaq_dec(INT16 ndim, INT16 kdim, INT16 many, INT16 *nsub,
  245. INT16 *nsiz, INT16 *y, INT16 *index, INT16 br, INT16 *lsptab)
  246. {
  247. register int i, m, im, jp, jpm;
  248. /* Code all sub-matrices */
  249. im = 0;
  250. jp = 0;
  251. for (m = 0; m < many; m++)
  252. {
  253. jpm = add(jp, extract_l(L_shr(L_mult(nsub[m], index[m]), 1)));
  254. for (i = 0; i < nsub[m]; i++)
  255. y[im + i] = lsptab[jpm + i];
  256. im = add(im, nsub[m]);
  257. jp = add(jp, extract_l(L_shr(L_mult(nsub[m], nsiz[m]), 1)));
  258. }
  259. }