allresamplers.h
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:6k
源码类别:

Symbian

开发平台:

C/C++

  1. /* ***** BEGIN LICENSE BLOCK ***** 
  2.  * Version: RCSL 1.0/RPSL 1.0 
  3.  *  
  4.  * Portions Copyright (c) 1995-2002 RealNetworks, Inc. All Rights Reserved. 
  5.  *      
  6.  * The contents of this file, and the files included with this file, are 
  7.  * subject to the current version of the RealNetworks Public Source License 
  8.  * Version 1.0 (the "RPSL") available at 
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed 
  10.  * the file under the RealNetworks Community Source License Version 1.0 
  11.  * (the "RCSL") available at http://www.helixcommunity.org/content/rcsl, 
  12.  * in which case the RCSL will apply. You may also obtain the license terms 
  13.  * directly from RealNetworks.  You may not use this file except in 
  14.  * compliance with the RPSL or, if you have a valid RCSL with RealNetworks 
  15.  * applicable to this file, the RCSL.  Please see the applicable RPSL or 
  16.  * RCSL for the rights, obligations and limitations governing use of the 
  17.  * contents of the file.  
  18.  *  
  19.  * This file is part of the Helix DNA Technology. RealNetworks is the 
  20.  * developer of the Original Code and owns the copyrights in the portions 
  21.  * it created. 
  22.  *  
  23.  * This file, and the files included with this file, is distributed and made 
  24.  * available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 
  25.  * EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS ALL SUCH WARRANTIES, 
  26.  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS 
  27.  * FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 
  28.  * 
  29.  * Technology Compatibility Kit Test Suite(s) Location: 
  30.  *    http://www.helixcommunity.org/content/tck 
  31.  * 
  32.  * Contributor(s): 
  33.  *  
  34.  * ***** END LICENSE BLOCK ***** */ 
  35. #ifndef _ALLRESAMPLERS_H_
  36. #define _ALLRESAMPLERS_H_
  37. #ifdef __cplusplus
  38. extern "C" {
  39. #endif
  40. struct CVTSTATEMACHINE {
  41.   struct CVTSTATEMACHINE *pNext ;
  42.   int incInput, incOutput ;
  43. } ;
  44. typedef int (* cvtFunctionType)(void* dst, const void* src, int n, const struct CVTSTATEMACHINE *pState);
  45. typedef struct
  46. {
  47.   cvtFunctionType pfCvt ;
  48.   struct CVTSTATEMACHINE *pStateMachine ;
  49. } tConverter ;
  50. #define NBLOCK 2058
  51. #define MONO 1
  52. #define STEREO 2
  53. #ifndef MAX
  54. #define MAX(a,b) (((b) > (a)) ? (b) : (a))
  55. #endif
  56. #ifndef MIN
  57. #define MIN(a,b) (((a) < (b)) ? (a) : (b))
  58. #endif
  59. /* defaults */
  60. #define DEF_ATTEN 90.0f
  61. #define DEF_PASSBAND 0.88f
  62. #define DEF_STOPBAND 1.0f
  63. #define DEF_DCGAIN 1.0f
  64. /*
  65.  * Compute greatest common divisor.
  66.  */
  67. static int
  68. gcd(int a, int b)
  69. {
  70.   while (a != b) {
  71.       if (a > b)
  72.         a -= b;
  73.       else
  74.         b -= a;
  75.   }
  76.   return a;
  77. }
  78. /* float to short, with rounding and clipping */
  79. static
  80. #if !defined(_AIX) && !defined(_SOLARIS) && !defined(_HPUX) && !defined(_OSF1)
  81. __inline
  82. #endif
  83. short
  84. RoundFtoS(float f) {
  85. long l;
  86. #if defined(_M_IX86)
  87. __asm fld f
  88. __asm fistp l
  89. #elif defined(__GNUC__) && defined(__i386__)
  90. __asm__ __volatile ("fistl %0" : "=m" (l) : "t" (f)) ;
  91. #else
  92. l = (long)(f < 0.0f ? f - 0.5f : f + 0.5f);
  93. #endif
  94. if (l > 32767) l = 32767;
  95. else if (l < -32768) l = -32768;
  96. return(short)l;
  97. }
  98. #ifndef _AIX
  99. typedef unsigned char uchar;
  100. #if !defined(_HPUX) && !defined(_LINUX) && !defined(_MAC_MACHO)
  101. typedef unsigned int uint;
  102. #endif
  103. #endif
  104. // Rational
  105. void *
  106. RAInitResamplerRat(int inrate, int outrate, int chans, float atten, float passband, float stopband, float dcgain);
  107. void *
  108. RAInitResamplerCopyRat(int nchans, const void *inst);
  109. void
  110. RAFreeResamplerRat(void *inst);
  111. int
  112. RAResampleMonoRat(void *inbuf, int insamps, tConverter *pCvt, short *outbuf, int outstride, void *inst) ;
  113. int
  114. RAResampleStereoRat(void *inbuf, int insamps, tConverter *pCvt, short *outbuf, int outstride, void *inst) ;
  115. int
  116. RAGetMaxOutputRat(int insamps, void *inst);
  117. int
  118. RAGetMinInputRat(int outsamps, void *inst);
  119. int
  120. RAGetDelayRat(void *inst);
  121. // Arbitrary
  122. void *
  123. RAInitResamplerArb(int inrate, int outrate, int chans, float atten, float passband, float stopband, float dcgain);
  124. void *
  125. RAInitResamplerCopyArb(int nchans, const void *inst);
  126. void
  127. RAFreeResamplerArb(void *inst);
  128. int
  129. RAResampleMonoArb(void *inbuf, int insamps, tConverter *pCvt, short *outbuf, int outstride, void *inst) ;
  130. int
  131. RAResampleStereoArb(void *inbuf, int insamps, tConverter *pCvt, short *outbuf, int outstride, void *inst) ;
  132. int
  133. RAGetMaxOutputArb(int insamps, void *inst);
  134. int
  135. RAGetMinInputArb(int outsamps, void *inst);
  136. int
  137. RAGetDelayArb(void *inst);
  138. // MMX resamplers
  139. void *
  140. RAInitResamplerMMX(int inrate, int outrate, int chans);
  141. void *
  142. RAInitResamplerCopyMMX(int nchans, const void *inst);
  143. void
  144. RAFreeResamplerMMX(void *inst);
  145. int
  146. RAResampleMonoMMX(void *inbuf, int insamps, tConverter *pCvt, short *outbuf, int outstride, void *inst) ;
  147. int
  148. RAResampleStereoMMX(void *inbuf, int insamps, tConverter *pCvt, short *outbuf, int outstride, void *inst) ;
  149. int
  150. RAGetMaxOutputMMX(int insamps, void *inst);
  151. int
  152. RAGetMinInputMMX(int outsamps, void *inst);
  153. int
  154. RAGetDelayMMX(void *inst);
  155. // Hermite interpolation
  156. void *
  157. RAInitResamplerHermite(int inrate, int outrate, int chans);
  158. void *
  159. RAInitResamplerCopyHermite(int nchans, const void *inst);
  160. void
  161. RAFreeResamplerHermite(void *inst);
  162. int
  163. RAResampleMonoHermite(void *inbuf, int insamps, tConverter *pCvt, short *outbuf, int outstride, void *inst);
  164. int
  165. RAResampleStereoHermite(void *inbuf, int insamps, tConverter *pCvt, short *outbuf, int outstride, void *inst);
  166. int
  167. RAGetMaxOutputHermite(int insamps, void *inst);
  168. int
  169. RAGetMinInputHermite(int outsamps, void *inst);
  170. int
  171. RAGetDelayHermite(void *inst);
  172. #ifdef __cplusplus
  173. }
  174. #endif
  175. #endif /* _ALLRESAMPLERS_H_ */