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

语音压缩

开发平台:

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 <stdio.h>
  24. #include <math.h>
  25. #include "spbstd.h"
  26. #include "mathhalf.h"
  27. #include "mathdp31.h"
  28. #include "wmops.h"
  29. #include "math_lib.h"
  30. #include "constant.h"
  31. extern int complexity;
  32. extern int saturation;
  33. Shortword DEBUG;
  34. /***************************************************************************
  35.  *
  36.  *   FUNCTION NAME: L_divider2
  37.  *
  38.  *   PURPOSE:
  39.  *
  40.  *     Divide numer by denom.  If numer is bigger than denom, a warning
  41.  *     is given and a zero is returned.
  42.  *
  43.  *
  44.  *   INPUTS:
  45.  *
  46.  *     numer
  47.  *                     32 bit long signed integer (Longword).
  48.  *     denom
  49.  *                     32 bit long signed integer (Longword).
  50.  *     numer_shift
  51.  *                     16 bit short signed integer (Shortword) represents
  52.  *                     number of right shifts for numer.
  53.  *     denom_shift
  54.  *                     16 bit short signed integer (Shortword) represents
  55.  *                     number of left shifts for denom.
  56.  *
  57.  *   OUTPUTS:
  58.  *
  59.  *     none
  60.  *
  61.  *   RETURN VALUE:
  62.  *
  63.  *     result
  64.  *                     16 bit short signed integer (Shortword).
  65.  *
  66.  *************************************************************************/
  67. Shortword L_divider2(Longword numer, Longword denom, Shortword numer_shift, 
  68.      Shortword denom_shift)
  69. {
  70.   
  71.   Shortword result;
  72.   Shortword sign=0;
  73.   Shortword short_shift=0;
  74.   Longword L_temp;
  75.   
  76.   DEBUG = 1;
  77.   if (denom==0&& DEBUG )
  78.     printf("L_divider2: division by 0n");
  79.   
  80.   /* increment complexity for if statement */
  81.   compare_zero();
  82.   if (numer<0) {
  83.     sign = !sign;    data_move();
  84.   }
  85.   /* increment complexity for if statement */
  86.   compare_zero();
  87.   if (denom<0) {
  88.     sign = !sign;    data_move();
  89.   }
  90.   L_temp = L_shl(denom, denom_shift);
  91.   denom = L_abs(L_temp);    L_data_move();
  92.   L_temp = L_shr(numer, numer_shift);
  93.   numer = L_abs(L_temp);    L_data_move();
  94.   
  95.   while (denom>(Longword)SW_MAX)
  96.     {
  97.       /* increment complexity for while statement */
  98.       L_compare_nonzero();
  99.       denom = L_shr(denom,1);    L_data_move();
  100.       short_shift = add(short_shift,1);    data_move();
  101.     }
  102.   numer = L_shr(numer, short_shift);    L_data_move();
  103.   if (numer > denom && DEBUG)
  104.       printf("warning: L_divide2>1: numer %.1f times denomn",
  105.      (float)numer / (float)denom);
  106.   
  107.   result = divide_s(extract_l(numer),extract_l(denom));
  108.   
  109.   /* increment complexity for if statement */
  110.   compare_zero();
  111.   if (sign) {
  112.     result = negate(result);    data_move();
  113.   }
  114.   return(result);
  115. } /* L_divider2 */
  116. /***************************************************************************
  117.  *
  118.  *   FUNCTION NAME: log10_fxp
  119.  *
  120.  *   PURPOSE:
  121.  *
  122.  *     Compute the logarithm to the base 10 of x.
  123.  *
  124.  *
  125.  *   INPUTS:
  126.  *
  127.  *     x
  128.  *                     16 bit short signed integer (Shortword).
  129.  *     Q
  130.  *                     16 bit short signed integer (Shortword) represents
  131.  *                     Q value of x.
  132.  *
  133.  *   OUTPUTS:
  134.  *
  135.  *     none
  136.  *
  137.  *   RETURN VALUE:
  138.  *
  139.  *     y
  140.  *                     16 bit short signed integer (Shortword) in Q12.
  141.  *
  142.  *************************************************************************/
  143. Shortword log10_fxp(Shortword x, Shortword Q)
  144. {
  145.   /* table is Q13 */
  146.   static Shortword table[256]=
  147.   {
  148.     0, 2466, 3908, 4932, 5725, 6374, 6923, 7398, 7817, 8192, 
  149.     8531, 8840, 9125, 9389, 9634, 9864, 10079, 10283, 10475, 10658, 
  150.     10831, 10997, 11155, 11306, 11451, 11591, 11725, 11855, 11979, 12100, 
  151.     12217, 12330, 12439, 12545, 12649, 12749, 12846, 12941, 13034, 13124, 
  152.     13211, 13297, 13381, 13463, 13543, 13621, 13697, 13772, 13846, 13917, 
  153.     13988, 14057, 14125, 14191, 14257, 14321, 14384, 14446, 14506, 14566, 
  154.     14625, 14683, 14740, 14796, 14851, 14905, 14959, 15011, 15063, 15115, 
  155.     15165, 15215, 15264, 15312, 15360, 15407, 15454, 15500, 15545, 15590, 
  156.     15634, 15677, 15721, 15763, 15805, 15847, 15888, 15929, 15969, 16009, 
  157.     16048, 16087, 16125, 16163, 16201, 16238, 16275, 16312, 16348, 16384, 
  158.     16419, 16454, 16489, 16523, 16557, 16591, 16624, 16657, 16690, 16723, 
  159.     16755, 16787, 16818, 16850, 16881, 16912, 16942, 16972, 17002, 17032, 
  160.     17062, 17091, 17120, 17149, 17177, 17206, 17234, 17262, 17289, 17317, 
  161.     17344, 17371, 17398, 17425, 17451, 17477, 17504, 17529, 17555, 17581, 
  162.     17606, 17631, 17656, 17681, 17705, 17730, 17754, 17778, 17802, 17826, 
  163.     17850, 17873, 17896, 17920, 17943, 17966, 17988, 18011, 18033, 18056, 
  164.     18078, 18100, 18122, 18144, 18165, 18187, 18208, 18229, 18250, 18271, 
  165.     18292, 18313, 18334, 18354, 18374, 18395, 18415, 18435, 18455, 18475, 
  166.     18494, 18514, 18533, 18553, 18572, 18591, 18610, 18629, 18648, 18667, 
  167.     18686, 18704, 18723, 18741, 18759, 18778, 18796, 18814, 18832, 18850, 
  168.     18867, 18885, 18903, 18920, 18937, 18955, 18972, 18989, 19006, 19023, 
  169.     19040, 19057, 19074, 19090, 19107, 19123, 19140, 19156, 19172, 19189, 
  170.     19205, 19221, 19237, 19253, 19269, 19284, 19300, 19316, 19331, 19347, 
  171.     19362, 19378, 19393, 19408, 19423, 19438, 19453, 19468, 19483, 19498, 
  172.     19513, 19528, 19542, 19557, 19572, 19586, 19600, 19615, 19629, 19643, 
  173.     19658, 19672, 19686, 19700, 19714, 19728 };
  174.   
  175.     Shortword y, interp_factor, interp_component;
  176.     Shortword index1, index2;
  177.     Shortword shift;
  178.     Shortword temp1, temp2;
  179.     Longword L_temp;
  180.     
  181.     shift = sub(7,Q);        data_move();
  182.     /* increment complexity for if statement */
  183.     compare_zero();
  184.     if (!x)
  185.       {
  186. return(-SW_MAX);
  187.       }
  188.     while( !(index2=shr(x,7)) && x)
  189.       {
  190. /* increment complexity for while statement */
  191. data_move();    compare_zero();
  192. x=shl(x,1);    data_move();
  193. shift = sub(shift,1);    data_move();
  194.       }
  195.     index1 = sub(index2,1);    data_move();
  196.     
  197.     /* interpolation */
  198.     interp_factor = shl((Shortword)(x&127),8);   logic();
  199.     temp1 = sub(table[index2],table[index1]);
  200.     interp_component = mult(temp1,interp_factor);        data_move();
  201.     /* return a Q12 */
  202.     L_temp = L_mult(table[1],shift);
  203.     L_temp = L_shr(L_temp,2);
  204.     temp1 = shr(table[index1],1);
  205.     temp1 = add(temp1,extract_l(L_temp));
  206.     temp2 = shr(interp_component,1);
  207.     y = add(temp1,temp2);    data_move();
  208.     return(y);
  209. } /* log10_fxp */
  210. /***************************************************************************
  211.  *
  212.  *   FUNCTION NAME: L_log10_fxp
  213.  *
  214.  *   PURPOSE:
  215.  *
  216.  *     Compute the logarithm to the base 10 of x.
  217.  *
  218.  *
  219.  *   INPUTS:
  220.  *
  221.  *     x
  222.  *                     32 bit long signed integer (Longword).
  223.  *     Q
  224.  *                     16 bit short signed integer (Shortword) represents
  225.  *                     Q value of x.
  226.  *
  227.  *   OUTPUTS:
  228.  *
  229.  *     none
  230.  *
  231.  *   RETURN VALUE:
  232.  *
  233.  *     y
  234.  *                     16 bit short signed integer (Shortword) in Q11.
  235.  *
  236.  *************************************************************************/
  237. Shortword L_log10_fxp(Longword x, Shortword Q)
  238. {
  239.   /* table is Q13 */
  240.   static Shortword table[256]=
  241.   {
  242.     0, 2466, 3908, 4932, 5725, 6374, 6923, 7398, 7817, 8192, 
  243.     8531, 8840, 9125, 9389, 9634, 9864, 10079, 10283, 10475, 10658, 
  244.     10831, 10997, 11155, 11306, 11451, 11591, 11725, 11855, 11979, 12100, 
  245.     12217, 12330, 12439, 12545, 12649, 12749, 12846, 12941, 13034, 13124, 
  246.     13211, 13297, 13381, 13463, 13543, 13621, 13697, 13772, 13846, 13917, 
  247.     13988, 14057, 14125, 14191, 14257, 14321, 14384, 14446, 14506, 14566, 
  248.     14625, 14683, 14740, 14796, 14851, 14905, 14959, 15011, 15063, 15115, 
  249.     15165, 15215, 15264, 15312, 15360, 15407, 15454, 15500, 15545, 15590, 
  250.     15634, 15677, 15721, 15763, 15805, 15847, 15888, 15929, 15969, 16009, 
  251.     16048, 16087, 16125, 16163, 16201, 16238, 16275, 16312, 16348, 16384, 
  252.     16419, 16454, 16489, 16523, 16557, 16591, 16624, 16657, 16690, 16723, 
  253.     16755, 16787, 16818, 16850, 16881, 16912, 16942, 16972, 17002, 17032, 
  254.     17062, 17091, 17120, 17149, 17177, 17206, 17234, 17262, 17289, 17317, 
  255.     17344, 17371, 17398, 17425, 17451, 17477, 17504, 17529, 17555, 17581, 
  256.     17606, 17631, 17656, 17681, 17705, 17730, 17754, 17778, 17802, 17826, 
  257.     17850, 17873, 17896, 17920, 17943, 17966, 17988, 18011, 18033, 18056, 
  258.     18078, 18100, 18122, 18144, 18165, 18187, 18208, 18229, 18250, 18271, 
  259.     18292, 18313, 18334, 18354, 18374, 18395, 18415, 18435, 18455, 18475, 
  260.     18494, 18514, 18533, 18553, 18572, 18591, 18610, 18629, 18648, 18667, 
  261.     18686, 18704, 18723, 18741, 18759, 18778, 18796, 18814, 18832, 18850, 
  262.     18867, 18885, 18903, 18920, 18937, 18955, 18972, 18989, 19006, 19023, 
  263.     19040, 19057, 19074, 19090, 19107, 19123, 19140, 19156, 19172, 19189, 
  264.     19205, 19221, 19237, 19253, 19269, 19284, 19300, 19316, 19331, 19347, 
  265.     19362, 19378, 19393, 19408, 19423, 19438, 19453, 19468, 19483, 19498, 
  266.     19513, 19528, 19542, 19557, 19572, 19586, 19600, 19615, 19629, 19643, 
  267.     19658, 19672, 19686, 19700, 19714, 19728 };
  268.   
  269.     Shortword y, interp_component;
  270.     Longword interp_factor;    
  271.     Shortword index1, index2;
  272.     Shortword shift;
  273.     Shortword temp1, temp2;
  274.     Longword L_temp;
  275.     
  276.     
  277.     shift = sub(23,Q);        data_move();
  278.     /* increment complexity for if statement */
  279.     compare_zero();
  280.     if (!x)
  281.       {
  282. return((Shortword)-SW_MAX);
  283.       }
  284.     
  285.     while( !(index2=extract_l(L_shr(x,23))) && x)
  286.       {
  287. /* increment complexity for while statement */
  288. compare_zero();    data_move();
  289. x=L_shl(x,1);
  290. shift = sub(shift,1);    data_move();
  291.       }
  292.     index1 = sub(index2,1);    data_move();
  293.     
  294.     
  295.     /* interpolation */
  296.     interp_factor = L_shl(x&(Longword)0x7fffff, 8);    L_logic();
  297.     temp1 = sub(table[index2],table[index1]);
  298.     interp_component = extract_h(L_mpy_ls(interp_factor,temp1));
  299.     /* return a Q11 */
  300.     L_temp = L_mult(table[1],shift);       /* log10(2^shift) */
  301.     L_temp = L_shr(L_temp,3);
  302.     temp1 = shr(table[index1],2);
  303.     temp1 = add(temp1,extract_l(L_temp));
  304.     temp2 = shr(interp_component,2);
  305.     y = add(temp1,temp2);   data_move();
  306.     
  307.       
  308.     return(y);
  309. } /* L_log10_fxp */
  310. /***************************************************************************
  311.  *
  312.  *   FUNCTION NAME: pow10_fxp
  313.  *
  314.  *   PURPOSE:
  315.  *
  316.  *     Compute 10 raised to the power x.
  317.  *
  318.  *
  319.  *   INPUTS:
  320.  *
  321.  *     x
  322.  *                     16 bit short signed integer (Shortword) in Q12.
  323.  *     Q
  324.  *                     16 bit short signed integer (Shortword) represents
  325.  *                     required Q value of returned result.
  326.  *
  327.  *   OUTPUTS:
  328.  *
  329.  *     none
  330.  *
  331.  *   RETURN VALUE:
  332.  *
  333.  *     y
  334.  *                     16 bit short signed integer (Shortword).
  335.  *
  336.  *************************************************************************/
  337. Shortword pow10_fxp(Shortword x, Shortword Q)
  338. {
  339.   /* table in Q11 */
  340.   Shortword table[257]=
  341.   {
  342.     2048, 2066, 2085, 2104, 2123, 2142, 2161, 2181, 2200, 2220, 
  343.     2240, 2260, 2281, 2302, 2322, 2343, 2364, 2386, 2407, 2429, 
  344.     2451, 2473, 2496, 2518, 2541, 2564, 2587, 2610, 2634, 2658, 
  345.     2682, 2706, 2731, 2755, 2780, 2805, 2831, 2856, 2882, 2908, 
  346.     2934, 2961, 2988, 3015, 3042, 3069, 3097, 3125, 3153, 3182, 
  347.     3211, 3240, 3269, 3298, 3328, 3358, 3389, 3419, 3450, 3481, 
  348.     3513, 3544, 3576, 3609, 3641, 3674, 3708, 3741, 3775, 3809, 
  349.     3843, 3878, 3913, 3948, 3984, 4020, 4056, 4093, 4130, 4167, 
  350.     4205, 4243, 4281, 4320, 4359, 4399, 4438, 4478, 4519, 4560, 
  351.     4601, 4643, 4684, 4727, 4769, 4813, 4856, 4900, 4944, 4989, 
  352.     5034, 5079, 5125, 5172, 5218, 5266, 5313, 5361, 5410, 5458, 
  353.     5508, 5558, 5608, 5658, 5710, 5761, 5813, 5866, 5919, 5972, 
  354.     6026, 6081, 6136, 6191, 6247, 6303, 6360, 6418, 6476, 6534, 
  355.     6593, 6653, 6713, 6774, 6835, 6897, 6959, 7022, 7085, 7149, 
  356.     7214, 7279, 7345, 7411, 7478, 7546, 7614, 7683, 7752, 7822, 
  357.     7893, 7964, 8036, 8109, 8182, 8256, 8331, 8406, 8482, 8559, 
  358.     8636, 8714, 8793, 8872, 8952, 9033, 9115, 9197, 9280, 9364, 
  359.     9449, 9534, 9620, 9707, 9795, 9883, 9973, 10063, 10154, 10245, 
  360.     10338, 10431, 10526, 10621, 10717, 10813, 10911, 11010, 11109, 11210, 
  361.     11311, 11413, 11516, 11620, 11725, 11831, 11938, 12046, 12155, 12265, 
  362.     12375, 12487, 12600, 12714, 12829, 12945, 13062, 13180, 13299, 13419, 
  363.     13540, 13663, 13786, 13911, 14036, 14163, 14291, 14420, 14550, 14682, 
  364.     14815, 14948, 15084, 15220, 15357, 15496, 15636, 15777, 15920, 16064, 
  365.     16209, 16355, 16503, 16652, 16803, 16955, 17108, 17262, 17418, 17576, 
  366.     17734, 17895, 18056, 18220, 18384, 18550, 18718, 18887, 19058, 19230, 
  367.     19404, 19579, 19756, 19934, 20114, 20296, 20480 };
  368.   
  369.   static Shortword tens_table[9]=
  370.   {
  371.     26844, 16777, 20972, 26214, 1, 10, 100, 1000, 10000
  372.   };
  373.   
  374.   static Shortword Q_table[4]=
  375.   {
  376.     28, 24, 21, 18
  377.   };
  378.   
  379.   
  380.   Shortword y, interp_factor, interp_component;
  381.   Shortword index1, index2;
  382.   Shortword ten_multiple;
  383.   Longword L_y;
  384.   Shortword temp1, temp2;
  385.   
  386.   
  387.   ten_multiple = shr(x,12);    data_move();
  388.   if (ten_multiple < -4)
  389.     return((Shortword)0);
  390.   else if (ten_multiple > 4) {
  391.     saturation = saturation + 1;
  392.     return((Shortword)SW_MAX);
  393.   }
  394.   
  395.   index1 = shr((Shortword)(x&(Shortword)0x0ff0), 4);    logic();  data_move();
  396.   index2 = add(index1,1);    data_move();
  397.   
  398.     
  399.   /* interpolation */
  400.   /* shift by 11 to make it a number between 0 & 1 in Q15 */
  401.   interp_factor = shl((Shortword)(x&(Shortword)0x000f),11);    logic();   data_move();
  402.   temp1 = sub(table[index2],table[index1]);
  403.   interp_component = mult(temp1,interp_factor);    data_move();
  404.   
  405.   /* L_y in Q12 if x >= 0 and in Q_table[temp2]+12 if x < 0 */
  406.   temp1 = add(table[index1], interp_component);
  407.   temp2 = add(ten_multiple,4);
  408.   L_y = L_mult(tens_table[temp2],temp1);     L_data_move();
  409.   /* increment complexity for if statement */
  410.   compare_zero();
  411.   if (ten_multiple >= 0)
  412.     {
  413.       temp1 = sub(12,Q);
  414.       L_y = L_shr(L_y, temp1);
  415.       y = extract_l(L_y);
  416.       if (extract_h(L_y)) {
  417. y=SW_MAX;    data_move();
  418. saturation = saturation + 1;
  419.       }
  420.     }
  421.   else
  422.     {
  423.       temp1 = add(Q_table[temp2],12);
  424.       temp1 = sub(temp1,Q);
  425.       y = extract_l(L_shr(L_y, temp1));
  426.     }
  427.   
  428.   return(y);
  429. } /* pow10_fxp */
  430. /***************************************************************************
  431.  *
  432.  *   FUNCTION NAME: sqrt_fxp
  433.  *
  434.  *   PURPOSE:
  435.  *
  436.  *     Compute the square root of x.
  437.  *
  438.  *
  439.  *   INPUTS:
  440.  *
  441.  *     x
  442.  *                     16 bit short signed integer (Shortword).
  443.  *     Q
  444.  *                     16 bit short signed integer (Shortword) represents
  445.  *                     Q value of x.
  446.  *
  447.  *   OUTPUTS:
  448.  *
  449.  *     none
  450.  *
  451.  *   RETURN VALUE:
  452.  *
  453.  *     temp
  454.  *                     16 bit short signed integer (Shortword) in same Q.
  455.  *
  456.  *************************************************************************/
  457. Shortword sqrt_fxp(Shortword x, Shortword Q)
  458. {
  459.   Shortword temp;
  460.   /* increment complexity for if statement */
  461.   compare_zero();
  462.   if (!x)
  463.     return((Shortword)0);
  464.   temp = shr(log10_fxp(x,Q),1);
  465.   temp = pow10_fxp(temp,Q);
  466.   return (temp);
  467. }
  468. /***************************************************************************
  469.  *
  470.  *   FUNCTION NAME: L_sqrt_fxp
  471.  *
  472.  *   PURPOSE:
  473.  *
  474.  *     Compute the square root of x.
  475.  *
  476.  *
  477.  *   INPUTS:
  478.  *
  479.  *     x
  480.  *                     32 bit long signed integer (Longword).
  481.  *     Q
  482.  *                     16 bit short signed integer (Shortword) represents
  483.  *                     Q value of x.
  484.  *
  485.  *   OUTPUTS:
  486.  *
  487.  *     none
  488.  *
  489.  *   RETURN VALUE:
  490.  *
  491.  *     temp
  492.  *                     16 bit short signed integer (Shortword) in same Q.
  493.  *
  494.  *************************************************************************/
  495. Shortword L_sqrt_fxp(Longword x, Shortword Q)
  496. {
  497.   Shortword temp;
  498.   /* increment complexity for if statement */
  499.   compare_zero();
  500.   if (!x)
  501.     return((Shortword)0);
  502.   temp = L_log10_fxp(x,Q);
  503.   /* temp in Q11, pow10 treat it as Q12, => no need to shr by 1. */
  504.   temp = pow10_fxp(temp,Q);
  505.   return (temp);
  506. }
  507. /***************************************************************************
  508.  *
  509.  *   FUNCTION NAME: L_pow_fxp
  510.  *
  511.  *   PURPOSE:
  512.  *
  513.  *     Compute the value of x raised to the power 'power'.
  514.  *
  515.  *
  516.  *   INPUTS:
  517.  *
  518.  *     x
  519.  *                     32 bit long signed integer (Longword).
  520.  *     power
  521.  *                     16 bit short signed integer (Shortword) in Q15.
  522.  *     Q_in
  523.  *                     16 bit short signed integer (Shortword) represents
  524.  *                     Q value of x.
  525.  *     Q_out
  526.  *                     16 bit short signed integer (Shortword) represents
  527.  *                     required Q value of returned result.
  528.  *
  529.  *   OUTPUTS:
  530.  *
  531.  *     none
  532.  *
  533.  *   RETURN VALUE:
  534.  *
  535.  *     temp
  536.  *                     16 bit short signed integer (Shortword).
  537.  *
  538.  *************************************************************************/
  539. Shortword L_pow_fxp(Longword x,Shortword power,Shortword Q_in,Shortword Q_out)
  540. {
  541.   Shortword temp;
  542.   /* increment complexity for if statement */
  543.   compare_zero();
  544.   if (!x)
  545.     return((Shortword)0);
  546.   temp = L_log10_fxp(x,Q_in);   /* temp in Q11 */
  547.   temp = mult(power,shl(temp,1));    data_move();   /* temp in Q12 */
  548.   temp = pow10_fxp(temp,Q_out);
  549.   return (temp);
  550. }
  551. /***************************************************************************
  552.  *
  553.  *   FUNCTION NAME: sin_fxp
  554.  *
  555.  *   PURPOSE:
  556.  *
  557.  *     Compute the sine of x whose value is expressed in radians/PI.
  558.  *
  559.  *
  560.  *   INPUTS:
  561.  *
  562.  *     x
  563.  *                     16 bit short signed integer (Shortword) in Q15.
  564.  *
  565.  *   OUTPUTS:
  566.  *
  567.  *     none
  568.  *
  569.  *   RETURN VALUE:
  570.  *
  571.  *     ty
  572.  *                     16 bit short signed integer (Shortword) in Q15.
  573.  *
  574.  *************************************************************************/
  575. #define PI_Q13     24576    /* M_PI*(1<<13) */
  576. Shortword sin_fxp(Shortword x)
  577. {
  578.     static Shortword table[129] =
  579.     { 
  580.             0,   402,   804,  1206,  1608,  2009,  2411,  2811,  3212,
  581.  3612,  4011,  4410,  4808,  5205,  5602,  5998,  6393,  6787,
  582.  7180,  7571,  7962,  8351,  8740,  9127,  9512,  9896, 10279,
  583. 10660, 11039, 11417, 11793, 12167, 12540, 12910, 13279, 13646,
  584. 14010, 14373, 14733, 15091, 15447, 15800, 16151, 16500, 16846,
  585. 17190, 17531, 17869, 18205, 18538, 18868, 19195, 19520, 19841,
  586. 20160, 20475, 20788, 21097, 21403, 21706, 22006, 22302, 22595,
  587. 22884, 23170, 23453, 23732, 24008, 24279, 24548, 24812, 25073,
  588. 25330, 25583, 25833, 26078, 26320, 26557, 26791, 27020, 27246,
  589. 27467, 27684, 27897, 28106, 28311, 28511, 28707, 28899, 29086,
  590. 29269, 29448, 29622, 29792, 29957, 30118, 30274, 30425, 30572,
  591. 30715, 30853, 30986, 31114, 31238, 31357, 31471, 31581, 31686,
  592. 31786, 31881, 31972, 32058, 32138, 32214, 32286, 32352, 32413,
  593. 32470, 32522, 32568, 32610, 32647, 32679, 32706, 32729, 32746,
  594. 32758, 32766, 32767
  595.     };
  596.     
  597.     Shortword tx, ty;
  598.     Shortword sign;
  599.     Shortword index1,index2;
  600.     Shortword m;
  601.     Shortword temp;
  602.     sign = 0;
  603.     if (x < 0) {
  604.         tx = negate(x);     data_move();
  605. sign = -1;     data_move();
  606.     }
  607.     else {
  608.       tx = x;     data_move();
  609.     }
  610.     /* if angle > pi/2, sin(angle) = sin(pi-angle) */
  611.     if (tx > X05_Q15)
  612.     {
  613.         tx = sub(ONE_Q15,tx);     data_move();
  614.     }
  615.     /* convert input to be within range 0-128 */
  616.     index1 = shr(tx,7);     data_move();
  617.     index2 = add(index1,1);     data_move();
  618.     
  619.     /* increment complexity for if statement */
  620.     compare_nonzero();
  621.     if (index1 == 128) {
  622.       if (sign != 0)
  623.         return(negate(table[index1]));
  624.       else
  625. return(table[index1]);
  626.     }
  627.     
  628.     m = sub(tx,shl(index1,7));
  629.     /* convert decimal part to Q15 */
  630.     m = shl(m,8);     data_move();
  631.     /* interpolate */
  632.     temp = sub(table[index2],table[index1]);
  633.     temp = mult(m,temp);
  634.     ty = add(table[index1],temp);     data_move();
  635.     /* increment complexity for if statement */
  636.     compare_zero();
  637.     if (sign != 0)
  638.         return(negate(ty));
  639.     else
  640.         return(ty);
  641. } /* sin_fxp */
  642. /***************************************************************************
  643.  *
  644.  *   FUNCTION NAME: cos_fxp
  645.  *
  646.  *   PURPOSE:
  647.  *
  648.  *     Compute the cosine of x whose value is expressed in radians/PI.
  649.  *
  650.  *
  651.  *   INPUTS:
  652.  *
  653.  *     x
  654.  *                     16 bit short signed integer (Shortword) in Q15.
  655.  *
  656.  *   OUTPUTS:
  657.  *
  658.  *     none
  659.  *
  660.  *   RETURN VALUE:
  661.  *
  662.  *     ty
  663.  *                     16 bit short signed integer (Shortword) in Q15.
  664.  *
  665.  *************************************************************************/
  666. Shortword cos_fxp(Shortword x)
  667. {
  668.     static Shortword table[129] =
  669.     { 
  670.         32767, 32766, 32758, 32746, 32729, 32706, 32679, 32647, 32610,
  671.         32568, 32522, 32470, 32413, 32352, 32286, 32214, 32138, 32058,
  672.         31972, 31881, 31786, 31686, 31581, 31471, 31357, 31238, 31114,
  673.         30986, 30853, 30715, 30572, 30425, 30274, 30118, 29957, 29792,
  674.         29622, 29448, 29269, 29086, 28899, 28707, 28511, 28311, 28106,
  675.         27897, 27684, 27467, 27246, 27020, 26791, 26557, 26320, 26078,
  676.         25833, 25583, 25330, 25073, 24812, 24548, 24279, 24008, 23732,
  677.         23453, 23170, 22884, 22595, 22302, 22006, 21706, 21403, 21097,
  678.         20788, 20475, 20160, 19841, 19520, 19195, 18868, 18538, 18205,
  679.         17869, 17531, 17190, 16846, 16500, 16151, 15800, 15447, 15091,
  680.         14733, 14373, 14010, 13646, 13279, 12910, 12540, 12167, 11793,
  681.         11417, 11039, 10660, 10279,  9896,  9512,  9127,  8740,  8351,
  682.         7962,   7571,  7180,  6787,  6393,  5998,  5602,  5205,  4808,
  683.         4410,   4011,  3612,  3212,  2811,  2411,  2009,  1608,  1206,
  684.         804,     402,     0
  685.     };
  686.     
  687.     Shortword tx, ty;
  688.     Shortword sign;
  689.     Shortword index1,index2;
  690.     Shortword m;
  691.     Shortword temp;
  692.     sign = 0;
  693.     /* increment complexity for if statement */
  694.     compare_zero();
  695.     if (x < 0) {
  696.       tx = negate(x);     data_move();
  697.     }
  698.     else {
  699.         tx = x;     data_move();
  700.     }
  701.     /* if angle > pi/2, cos(angle) = -cos(pi-angle) */
  702.     /* increment complexity for if statement */
  703.     compare_nonzero();
  704.     if (tx > X05_Q15)
  705.     {
  706.         tx = sub(ONE_Q15,tx);     data_move();
  707.         sign = -1;     data_move();
  708.     }
  709.     /* convert input to be within range 0-128 */
  710.     index1 = shr(tx,7);     data_move();
  711.     index2 = add(index1,1);     data_move();
  712.     
  713.     /* increment complexity for if statement */
  714.     compare_nonzero();
  715.     if (index1 == 128)
  716.         return((Shortword)0);
  717.     
  718.     m = sub(tx,shl(index1,7));
  719.     /* convert decimal part to Q15 */
  720.     m = shl(m,8);     data_move();
  721.     temp = sub(table[index2],table[index1]);
  722.     temp = mult(m,temp);
  723.     ty = add(table[index1],temp);     data_move();
  724.     /* increment complexity for if statement */
  725.     compare_zero();
  726.     if (sign != 0)
  727.         return(negate(ty));
  728.     else
  729.         return(ty);
  730. } /* cos_fxp */