wmafixed.h
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:6k
源码类别:

midi

开发平台:

Unix_Linux

  1. /****************************************************************************
  2.  *             __________               __   ___.
  3.  *   Open      ______    ____   ____ |  | __ |__   _______  ___
  4.  *   Source     |       _//  _ _/ ___|  |/ /| __  /  _   /  /
  5.  *   Jukebox    |    |   (  <_> )  ___|    < | _ (  <_> > <  <
  6.  *   Firmware   |____|_  /____/ ___  >__|_ |___  /____/__/_ 
  7.  *                     /            /     /    /            /
  8.  *
  9.  * Copyright (C) 2007 Michael Giacomelli
  10.  *
  11.  * All files in this archive are subject to the GNU General Public License.
  12.  * See the file COPYING in the source tree root for full license agreement.
  13.  *
  14.  * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
  15.  * KIND, either express or implied.
  16.  *
  17.  ****************************************************************************/
  18. /*  fixed precision code.  We use a combination of Sign 15.16 and Sign.31
  19.     precision here.
  20.     The WMA decoder does not always follow this convention, and occasionally
  21.     renormalizes values to other formats in order to maximize precision.
  22.     However, only the two precisions above are provided in this file.
  23. */
  24. #include <inttypes.h>
  25. #define PRECISION       16
  26. #define PRECISION64     16
  27. #define fixtof64(x)       (float)((float)(x) / (float)(1 << PRECISION64))        //does not work on int64_t!
  28. #define ftofix32(x)       ((int32_t)((x) * (float)(1 << PRECISION) + ((x) < 0 ? -0.5 : 0.5)))
  29. #define itofix64(x)       (IntTo64(x))
  30. #define itofix32(x)       ((x) << PRECISION)
  31. #define fixtoi32(x)       ((x) >> PRECISION)
  32. #define fixtoi64(x)       (IntFrom64(x))
  33. /*fixed functions*/
  34. int64_t IntTo64(int x);
  35. int IntFrom64(int64_t x);
  36. int32_t Fixed32From64(int64_t x);
  37. int64_t Fixed32To64(int32_t x);
  38. int64_t fixmul64byfixed(int64_t x, int32_t y);
  39. int32_t fixdiv32(int32_t x, int32_t y);
  40. int64_t fixdiv64(int64_t x, int64_t y);
  41. int32_t fixsqrt32(int32_t x);
  42. long fsincos(unsigned long phase, int32_t *cos);
  43. #ifdef __arm__
  44. /*Sign-15.16 format */
  45. #define fixmul32(x, y)  
  46.     ({ int32_t __hi;  
  47.        uint32_t __lo;  
  48.        int32_t __result;  
  49.        asm ("smull   %0, %1, %3, %4nt"  
  50.             "movs    %0, %0, lsr %5nt"  
  51.             "adc    %2, %0, %1, lsl %6"  
  52.             : "=&r" (__lo), "=&r" (__hi), "=r" (__result)  
  53.             : "%r" (x), "r" (y),  
  54.               "M" (PRECISION), "M" (32 - PRECISION)  
  55.             : "cc");  
  56.        __result;  
  57.     })
  58. #define fixmul32b(x, y)  
  59.     ({ int32_t __hi;  
  60.        uint32_t __lo;  
  61.        int32_t __result;  
  62.        asm ("smull   %0, %1, %3, %4nt"  
  63.             "movs    %2, %1, lsl #1"  
  64.             : "=&r" (__lo), "=&r" (__hi), "=r" (__result)  
  65.             : "%r" (x), "r" (y)  
  66.             : "cc");  
  67.        __result;  
  68.     })
  69. #elif defined(CPU_COLDFIRE)
  70. static inline int32_t fixmul32(int32_t x, int32_t y)
  71. {
  72. #if PRECISION != 16
  73. #warning Coldfire fixmul32() only works for PRECISION == 16
  74. #endif
  75.     int32_t t1;
  76.     asm (
  77.         "mac.l   %[x], %[y], %%acc0  n" /* multiply */
  78.         "mulu.l  %[y], %[x]      n"     /* get lower half, avoid emac stall */
  79.         "movclr.l %%acc0, %[t1]  n"     /* get higher half */
  80.         "lsr.l   #1, %[t1]       n"
  81.         "move.w  %[t1], %[x]     n"
  82.         "swap    %[x]            n"
  83.         : [t1] "=&d" (t1), [x] "+d" (x)
  84.         : [y] "d"  (y)
  85.     );
  86.     return x;
  87. }
  88. static inline int32_t fixmul32b(int32_t x, int32_t y)
  89. {
  90.     asm (
  91.         "mac.l   %[x], %[y], %%acc0  n" /* multiply */
  92.         "movclr.l %%acc0, %[x]  n"     /* get higher half */
  93.         : [x] "+d" (x)
  94.         : [y] "d"  (y)
  95.     );
  96.     return x;
  97. }
  98. #else
  99. static inline int32_t fixmul32(int32_t x, int32_t y)
  100. {
  101.     int64_t temp;
  102.     temp = x;
  103.     temp *= y;
  104.     temp >>= PRECISION;
  105.     return (int32_t)temp;
  106. }
  107. static inline int32_t fixmul32b(int32_t x, int32_t y)
  108. {
  109.     int64_t temp;
  110.     temp = x;
  111.     temp *= y;
  112.     temp >>= 31;        //16+31-16 = 31 bits
  113.     return (int32_t)temp;
  114. }
  115. #endif
  116. #ifdef __arm__
  117. static inline
  118. void CMUL(int32_t *x, int32_t *y,
  119.           int32_t  a, int32_t  b,
  120.           int32_t  t, int32_t  v)
  121. {
  122.     /* This version loses one bit of precision. Could be solved at the cost
  123.      * of 2 extra cycles if it becomes an issue. */
  124.     int x1, y1, l;
  125.     asm(
  126.         "smull    %[l], %[y1], %[b], %[t] n"
  127.         "smlal    %[l], %[y1], %[a], %[v] n"
  128.         "rsb      %[b], %[b], #0          n"
  129.         "smull    %[l], %[x1], %[a], %[t] n"
  130.         "smlal    %[l], %[x1], %[b], %[v] n"
  131.         : [l] "=&r" (l), [x1]"=&r" (x1), [y1]"=&r" (y1), [b] "+r" (b)
  132.         : [a] "r" (a),   [t] "r" (t),    [v] "r" (v)
  133.         : "cc"
  134.     );
  135.     *x = x1 << 1;
  136.     *y = y1 << 1;
  137. }
  138. #elif defined CPU_COLDFIRE
  139. static inline
  140. void CMUL(int32_t *x, int32_t *y,
  141.           int32_t  a, int32_t  b,
  142.           int32_t  t, int32_t  v)
  143. {
  144.   asm volatile ("mac.l %[a], %[t], %%acc0;"
  145.                 "msac.l %[b], %[v], %%acc0;"
  146.                 "mac.l %[b], %[t], %%acc1;"
  147.                 "mac.l %[a], %[v], %%acc1;"
  148.                 "movclr.l %%acc0, %[a];"
  149.                 "move.l %[a], (%[x]);"
  150.                 "movclr.l %%acc1, %[a];"
  151.                 "move.l %[a], (%[y]);"
  152.                 : [a] "+&r" (a)
  153.                 : [x] "a" (x), [y] "a" (y),
  154.                   [b] "r" (b), [t] "r" (t), [v] "r" (v)
  155.                 : "cc", "memory");
  156. }
  157. #else
  158. static inline
  159. void CMUL(int32_t *pre,
  160.           int32_t *pim,
  161.           int32_t are,
  162.           int32_t aim,
  163.           int32_t bre,
  164.           int32_t bim)
  165. {
  166.     //int64_t x,y;
  167.     int32_t _aref = are;
  168.     int32_t _aimf = aim;
  169.     int32_t _bref = bre;
  170.     int32_t _bimf = bim;
  171.     int32_t _r1 = fixmul32b(_bref, _aref);
  172.     int32_t _r2 = fixmul32b(_bimf, _aimf);
  173.     int32_t _r3 = fixmul32b(_bref, _aimf);
  174.     int32_t _r4 = fixmul32b(_bimf, _aref);
  175.     *pre = _r1 - _r2;
  176.     *pim = _r3 + _r4;
  177. }
  178. #endif