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

语音压缩

开发平台:

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.   fs_lib.c: Fourier series subroutines 
  25. */
  26. /*  compiler include files  */
  27. #include <stdio.h>
  28. #include <stdlib.h>
  29. #include <math.h>
  30. #include "spbstd.h"
  31. #include "mathhalf.h"
  32. #include "mathdp31.h"
  33. #include "wmops.h"
  34. #include "mat.h"
  35. #include "math_lib.h"
  36. #include "fs.h"
  37. #include "constant.h"
  38. /*  compiler constants */
  39. #define PRINT 1
  40. /*  external variable */
  41. extern int complexity;
  42. /* */
  43. /* Subroutine FIND_HARM: find Fourier coefficients using */
  44. /* FFT of input signal divided into pitch dependent bins. */
  45. /* */
  46. /*  Q values:
  47.     input - Q0
  48.     fsmag - Q13
  49.     pitch - Q7 */
  50. #define FFTLENGTH 512
  51. /* Memory definition */
  52. static Shortword find_hbuf[2*FFTLENGTH];
  53. static Longword mag[FFTLENGTH];
  54. static Shortword wr_array[FFTLENGTH/2+1];
  55. static Shortword wi_array[FFTLENGTH/2+1];
  56. void find_harm(Shortword input[],Shortword fsmag[],Shortword pitch,
  57.        Shortword num_harm,Shortword length)
  58. {
  59.     Shortword i, j, k, iwidth, i2;
  60.     Shortword fwidth;
  61.     Shortword num_harm_Q11;
  62.     Longword  avg;
  63.     Shortword temp;
  64.     Shortword shift, max;
  65.     Longword *L_fsmag;
  66.     
  67.     MEM_ALLOC(MALLOC, L_fsmag, num_harm, Longword);
  68.     /* Find normalization factor of frame and */
  69.     /* scale input to maximum precision.      */
  70.     max = 0;       data_move();
  71.     for (i = 0; i < length; i++) {
  72.       temp = abs_s(input[i]);
  73.       compare_nonzero();
  74.       if (temp > max)
  75. max = temp;
  76.     }
  77.     shift = norm_s(max);
  78.     /* initialize fsmag */
  79.     for (i = 0; i < num_harm; i++)
  80.       fsmag[i] = ONE_Q13;
  81.     /* Perform peak-picking on FFT of input signal */
  82.     /* Calculate FFT of complex signal in scratch buffer */
  83.     v_zap(find_hbuf,2*FFTLENGTH);
  84.     for (i = 0; i < 2*length; i+=2) {
  85.       find_hbuf[i] = shl(input[i/2],shift);    data_move();
  86.     }
  87.     fft(find_hbuf,FFTLENGTH,MONE_Q15);
  88.     /* Implement pitch dependent staircase function */
  89.     /* Harmonic bin width */
  90.     /* fwidth=Q6 */
  91.     fwidth = shr(divide_s((Shortword)FFTLENGTH,pitch),2);
  92.     /* iwidth = (int) fwidth */
  93.     iwidth = shr(fwidth,6);
  94.     compare_nonzero();
  95.     if (iwidth < 2) {
  96.       iwidth = 2;      data_move();
  97.     }
  98.     i2 = shr(iwidth,1);
  99.     /* if (num_harm > 0.25*pitch) num_harm = 0.25*pitch */
  100.     /* temp = 0.25*pitch in Q0 */
  101.     temp = shr(pitch,9);
  102.     compare_nonzero();
  103.     if (num_harm > temp) {
  104.       num_harm = temp;
  105.     }
  106.     /* initialize avg to make sure that it is non-zero */
  107.     avg = 1;       L_data_move();
  108.     for (k = 0; k < num_harm; k++) {
  109.       /* i = ((k+1)*fwidth) - i2 + 0.5 */ /* Start at peak-i2 */
  110.       temp = extract_l(L_mult(add(k,1),fwidth));  /* temp=Q7 */
  111.       i = shr(add(sub(temp,shl(i2,7)),(Shortword)X05_Q7),7);
  112.       /* Calculate magnitude squared of coefficients */
  113.       for (j = i; j < i+iwidth; j++) {
  114. mag[j] = L_add(L_mult(find_hbuf[2*j],find_hbuf[2*j]),
  115.        L_mult(find_hbuf[(2*j)+1],find_hbuf[(2*j)+1]));
  116. L_data_move();
  117.       }
  118.       j = add(i,findmax(&mag[i],iwidth));
  119.       L_fsmag[k] = mag[j];       L_data_move();
  120.       avg = L_add(avg,mag[j]);
  121.     }
  122.     /* Normalize Fourier series values to average magnitude */
  123.     num_harm_Q11 = shl(num_harm,11);
  124.     for (i = 0; i < num_harm; i++) {
  125.       /* temp = num_harm/(avg+ .0001) */
  126.       /* fsmag[i] = sqrt(temp*fsmag[i]) */
  127.       temp = L_divider2(L_fsmag[i],avg,0,0);     /* temp=Q15 */
  128.       temp = mult(num_harm_Q11,temp);    /* temp=Q11 */
  129.       fsmag[i] = shl(sqrt_fxp(temp,11),2);      data_move();
  130.     }
  131.     MEM_FREE(FREE,L_fsmag);
  132. } /* find_harm */
  133.     
  134. /* Subroutine FFT: Fast Fourier Transform  */
  135. /**************************************************************
  136. * Replaces data by its DFT, if isign is 1, or replaces data   *
  137. * by inverse DFT times nn if isign is -1.  data is a complex  *
  138. * array of length nn, input as a real array of length 2*nn.   *
  139. * nn MUST be an integer power of two.  This is not checked    *
  140. * The real part of the number should be in the zeroeth        *
  141. * of data , and the imaginary part should be in the next      *
  142. * element.  Hence all the real parts should have even indeces *
  143. * and the imaginary parts, odd indeces.       *
  144. * Data is passed in an array starting in position 0, but the  *
  145. * code is copied from Fortran so uses an internal pointer     *
  146. * which accesses position 0 as position 1, etc.       *
  147. * This code uses e+jwt sign convention, so isign should be    *
  148. * reversed for e-jwt.                                         *
  149. ***************************************************************/
  150. /* Q values:
  151.    datam1 - Q14
  152.    isign - Q15 */
  153. #define SWAP(a,b) temp1 = (a);(a) = (b); (b) = temp1
  154. void fft(Shortword *datam1,Shortword nn,Shortword isign)
  155. {
  156. Shortword n,mmax,m,j,istep,i;
  157. Shortword wr,wi,temp1;
  158. Longword register L_tempr,L_tempi;
  159. Shortword *data;
  160. Longword L_temp1,L_temp2;
  161. Shortword index,index_step;
  162. /*  Use pointer indexed from 1 instead of 0 */
  163. data = &datam1[-1];
  164. n = shl(nn,1);
  165. j = 1;
  166. for( i = 1; i < n; i+=2 ) {
  167.   if ( j > i) {
  168.     SWAP(data[j],data[i]);    data_move();    data_move();
  169.     SWAP(data[j+1],data[i+1]);    data_move();    data_move();
  170.   }
  171.   m = nn;
  172.   while ( m >= 2 && j > m ) {
  173. j = sub(j,m);
  174. m = shr(m,1);
  175.   }
  176.   j = add(j,m);
  177. }
  178. mmax = 2;
  179. /* initialize index step */
  180. index_step = nn;
  181. while ( n > mmax) {
  182.   istep = shl(mmax,1);  /* istep = 2 * mmax */
  183.   index = 0;
  184.   index_step = shr(index_step,1);
  185.   wr = ONE_Q15;
  186.   wi = 0;
  187.   for ( m = 1; m < mmax;m+=2) {
  188.     for ( i = m; i <= n; i += istep) {
  189. j = i + mmax;
  190. /* note: complexity is reduced since L_shr is not necessary 
  191.    on TMS32C5x with SPM=0, mac and msu can be used */
  192. /*tempr = wr * data[j] - wi * data[j+1] */
  193. L_temp1 = L_shr(L_mult(wr,data[j]),1);
  194. L_temp2 = L_shr(L_mult(wi,data[j+1]),1);
  195. L_tempr = L_sub(L_temp1,L_temp2);
  196. complexity -= (2+2+2);
  197. /* tempi = wr * data[j+1] + wi * data[j] */
  198. L_temp1 = L_shr(L_mult(wr,data[j+1]),1);
  199. L_temp2 = L_shr(L_mult(wi,data[j]),1);
  200.        L_tempi = L_add(L_temp1,L_temp2);
  201. complexity -= (2+2+2);
  202.     /* data[j] = data[i] - tempr */
  203. L_temp1 = L_shr(L_deposit_h(data[i]),1);
  204.     data[j] = extract_h(L_sub(L_temp1,L_tempr));
  205. complexity -= 2;
  206. /* data[i] += tempr */
  207. data[i] = extract_h(L_add(L_temp1,L_tempr));
  208. /* data[j+1] = data[i+1] - tempi */
  209. L_temp1 = L_shr(L_deposit_h(data[i+1]),1);
  210. data[j+1] = extract_h(L_sub(L_temp1,L_tempi));
  211. complexity -= 2;
  212. /* data[i+1] += tempi */
  213. data[i+1] = extract_h(L_add(L_temp1,L_tempi));
  214.     }
  215.     index = add(index,index_step);
  216.     wr = wr_array[index];
  217.     if (isign < 0)
  218.       wi = negate(wi_array[index]);
  219.     else
  220.       wi = wi_array[index];
  221.   }
  222.   mmax = istep;
  223. }
  224. } /* fft */
  225. /*                                                              */
  226. /*      Subroutine FINDMAX: find maximum value in an            */
  227. /*      input array.                                            */
  228. /*                                                              */
  229. Shortword findmax(Longword input[],Shortword npts)
  230. {
  231.   Shortword register    i, maxloc;
  232.   Longword register  maxval, *p_in;
  233.   p_in = &input[0];
  234.   maxloc = 0;    data_move();
  235.   maxval = input[maxloc];    data_move();
  236.   for (i = 1; i < npts; i++ ) {
  237.     compare_nonzero();
  238.     if (*(++p_in) > maxval) {
  239.       maxloc = i;    data_move();
  240.       maxval = *p_in;    data_move();
  241.     }
  242.   }
  243.   return(maxloc);
  244. }
  245. /* Initialization of wr_array and wi_array */
  246. void fs_init()
  247. {
  248.   Shortword i;
  249.   Shortword fft_len2,shift,step,theta;
  250.   fft_len2 = shr(FFTLENGTH,1);
  251.   shift = norm_s(fft_len2);
  252.   step = shl(2,shift);
  253.   theta = 0;
  254.   for (i = 0; i <= fft_len2; i++) {
  255.     wr_array[i] = cos_fxp(theta);    data_move();
  256.     wi_array[i] = sin_fxp(theta);    data_move();
  257.     if (i >= (fft_len2-1))
  258.       theta = ONE_Q15;
  259.     else
  260.       theta = add(theta,step);
  261.   }
  262. }
  263. /* */
  264. /* Subroutine IDFT_REAL: take inverse discrete Fourier  */
  265. /* transform of real input coefficients. */
  266. /* Assume real time signal, so reduce computation */
  267. /* using symmetry between lower and upper DFT */
  268. /* coefficients. */
  269. /* */
  270. /*  Q values:
  271.     real - Q13
  272.     signal - Q15
  273. */
  274. #define DFTMAX 160
  275. /* Memory definition */
  276. static Shortword idftc[DFTMAX];
  277. void idft_real(Shortword real[], Shortword signal[], Shortword length)
  278. {
  279.     Shortword i, j, k, k_inc, length2;
  280.     Shortword w, w2;
  281.     Shortword temp;
  282.     Longword L_temp;
  283. #if (PRINT)
  284.     if (length > DFTMAX) {
  285. printf("****ERROR: IDFT size too large **** n");
  286. exit(1);
  287.     }
  288. #endif
  289.     
  290.     length2 = add(shr(length,1),1);
  291.     /* w = TWOPI / length; */
  292.     w = divide_s(TWO_Q3,length);   /* w = 2/length in Q18 */
  293.     for (i = 0; i < length; i++ ) {
  294.         L_temp = L_mult(w,i);      /* L_temp in Q19 */
  295. /* make sure argument for cos function is less than 1 */
  296. L_compare_nonzero();
  297. if (L_temp > (Longword)ONE_Q19) {
  298.   /* cos(pi+x) = cos(pi-x) */
  299.   L_temp = L_sub((Longword)TWO_Q19,L_temp);
  300. }
  301. else if (L_temp == (Longword)ONE_Q19)
  302.   L_temp = L_sub(L_temp,1);
  303. L_temp = L_shr(L_temp,4);      /* L_temp in Q15 */
  304. temp = extract_l(L_temp);
  305. idftc[i] = cos_fxp(temp);      /* idftc in Q15 */
  306.     }
  307.     w = shr(w,1);        /* w = 2/length in Q17 */
  308.     w2 = shr(w,1);       /* w2 = 1/length in Q17 */
  309.     real[0] = mult(real[0],w2);     /* real in Q15 */
  310.     temp = sub(length2,1);
  311.     for (i = 1; i < temp; i++ ) {
  312.       /* real[i] *= (2.0/length); */
  313.       real[i] = mult(real[i],w);
  314.     }
  315.     temp = shl(i,1);
  316.     if (temp == length)
  317.       /* real[i] *= (1.0/length); */
  318.       real[i] = mult(real[i],w2);
  319.     else
  320.       /* real[i] *= (2.0/length);*/
  321.       real[i] = mult(real[i],w);
  322.     for (i = 0; i < length; i++ ) {
  323. L_temp = L_deposit_h(real[0]);    /* L_temp in Q31 */
  324. k_inc = i;
  325. k = k_inc;
  326. for (j = 1; j < length2; j++ ) {
  327.     L_temp = L_mac(L_temp,real[j],idftc[k]);
  328.     k += k_inc;
  329.     if (k >= length)
  330. k -= length;
  331. }
  332. signal[i] = round(L_temp);
  333.     }
  334. } /* IDFT_REAL */