arch.h
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:5k
源码类别:

Windows CE

开发平台:

C/C++

  1. /* Copyright (C) 2003 Jean-Marc Valin */
  2. /**
  3.    @file arch.h
  4.    @brief Various architecture definitions Speex
  5. */
  6. /*
  7.    Redistribution and use in source and binary forms, with or without
  8.    modification, are permitted provided that the following conditions
  9.    are met:
  10.    
  11.    - Redistributions of source code must retain the above copyright
  12.    notice, this list of conditions and the following disclaimer.
  13.    
  14.    - Redistributions in binary form must reproduce the above copyright
  15.    notice, this list of conditions and the following disclaimer in the
  16.    documentation and/or other materials provided with the distribution.
  17.    
  18.    - Neither the name of the Xiph.org Foundation nor the names of its
  19.    contributors may be used to endorse or promote products derived from
  20.    this software without specific prior written permission.
  21.    
  22.    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  23.    ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  24.    LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  25.    A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR
  26.    CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  27.    EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  28.    PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  29.    PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
  30.    LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  31.    NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  32.    SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  33. */
  34. #ifndef ARCH_H
  35. #define ARCH_H
  36. #include "speex/speex_types.h"
  37. #define ABS(x) ((x) < 0 ? (-(x)) : (x))
  38. #define ABS16(x) ((x) < 0 ? (-(x)) : (x))
  39. #define MAX16(a,b) ((a) > (b) ? (a) : (b))
  40. #define ABS32(x) ((x) < 0 ? (-(x)) : (x))
  41. #ifdef FIXED_POINT
  42. typedef spx_int16_t spx_word16_t;
  43. typedef spx_int32_t   spx_word32_t;
  44. #ifdef _MSC_VER
  45. typedef __int64      spx_word64_t;
  46. #else
  47. typedef long long    spx_word64_t;
  48. #endif
  49. typedef spx_word32_t spx_mem_t;
  50. typedef spx_word16_t spx_coef_t;
  51. typedef spx_word16_t spx_lsp_t;
  52. typedef spx_word32_t spx_sig_t;
  53. #define Q15ONE 32767
  54. #define LPC_SCALING  8192
  55. #define SIG_SCALING  16384
  56. #define LSP_SCALING  8192.
  57. #define GAMMA_SCALING 32768.
  58. #define GAIN_SCALING 64
  59. #define GAIN_SCALING_1 0.015625
  60. #define LPC_SHIFT    13
  61. #define LSP_SHIFT    13
  62. #define SIG_SHIFT    14
  63. #define VERY_SMALL 0
  64. #define VERY_LARGE32 ((spx_word32_t)2147483647)
  65. #define VERY_LARGE16 ((spx_word16_t)32767)
  66. #ifdef FIXED_DEBUG
  67. #include "fixed_debug.h"
  68. #else
  69. #include "fixed_generic.h"
  70. #ifdef ARM5E_ASM
  71. #include "fixed_arm5e.h"
  72. #elif defined (ARM4_ASM)
  73. #include "fixed_arm4.h"
  74. #elif defined (ARM5E_ASM)
  75. #include "fixed_arm5e.h"
  76. #elif defined (BFIN_ASM)
  77. #include "fixed_bfin.h"
  78. #endif
  79. #endif
  80. #else
  81. typedef float spx_mem_t;
  82. typedef float spx_coef_t;
  83. typedef float spx_lsp_t;
  84. typedef float spx_sig_t;
  85. typedef float spx_word16_t;
  86. typedef float spx_word32_t;
  87. typedef float spx_word64_t;
  88. #define Q15ONE 1.0f
  89. #define LPC_SCALING  1.f
  90. #define SIG_SCALING  1.f
  91. #define LSP_SCALING  1.f
  92. #define GAMMA_SCALING 1.f
  93. #define GAIN_SCALING 1.f
  94. #define GAIN_SCALING_1 1.f
  95. #define LPC_SHIFT    0
  96. #define LSP_SHIFT    0
  97. #define SIG_SHIFT    0
  98. #define VERY_SMALL 1e-15f
  99. #define VERY_LARGE32 1e15f
  100. #define VERY_LARGE16 1e15f
  101. #define NEG16(x) (-(x))
  102. #define NEG32(x) (-(x))
  103. #define EXTRACT16(x) (x)
  104. #define EXTEND32(x) (x)
  105. #define SHR16(a,shift) (a)
  106. #define SHL16(a,shift) (a)
  107. #define SHR32(a,shift) (a)
  108. #define SHL32(a,shift) (a)
  109. #define PSHR16(a,shift) (a)
  110. #define PSHR32(a,shift) (a)
  111. #define SATURATE16(x,a) (x)
  112. #define SATURATE32(x,a) (x)
  113. #define PSHR(a,shift)       (a)
  114. #define SHR(a,shift)       (a)
  115. #define SHL(a,shift)       (a)
  116. #define SATURATE(x,a) (x)
  117. #define ADD16(a,b) ((a)+(b))
  118. #define SUB16(a,b) ((a)-(b))
  119. #define ADD32(a,b) ((a)+(b))
  120. #define SUB32(a,b) ((a)-(b))
  121. #define ADD64(a,b) ((a)+(b))
  122. #define MULT16_16_16(a,b)     ((a)*(b))
  123. #define MULT16_16(a,b)     ((spx_word32_t)(a)*(spx_word32_t)(b))
  124. #define MAC16_16(c,a,b)     ((c)+(spx_word32_t)(a)*(spx_word32_t)(b))
  125. #define MULT16_32_Q11(a,b)     ((a)*(b))
  126. #define MULT16_32_Q13(a,b)     ((a)*(b))
  127. #define MULT16_32_Q14(a,b)     ((a)*(b))
  128. #define MULT16_32_Q15(a,b)     ((a)*(b))
  129. #define MAC16_32_Q11(c,a,b)     ((c)+(a)*(b))
  130. #define MAC16_32_Q15(c,a,b)     ((c)+(a)*(b))
  131. #define MAC16_16_Q11(c,a,b)     ((c)+(a)*(b))
  132. #define MAC16_16_Q13(c,a,b)     ((c)+(a)*(b))
  133. #define MULT16_16_Q11_32(a,b)     ((a)*(b))
  134. #define MULT16_16_Q13(a,b)     ((a)*(b))
  135. #define MULT16_16_Q14(a,b)     ((a)*(b))
  136. #define MULT16_16_Q15(a,b)     ((a)*(b))
  137. #define MULT16_16_P15(a,b)     ((a)*(b))
  138. #define DIV32_16(a,b)     ((a)/(b))
  139. #define DIV32(a,b)     ((a)/(b))
  140. #endif
  141. #ifdef CONFIG_TI_C55X
  142. /* 2 on TI C5x DSP */
  143. #define BYTES_PER_CHAR 2 
  144. #define BITS_PER_CHAR 16
  145. #define LOG2_BITS_PER_CHAR 4
  146. #else 
  147. #define BYTES_PER_CHAR 1
  148. #define BITS_PER_CHAR 8
  149. #define LOG2_BITS_PER_CHAR 3
  150. #endif
  151. #endif