crosfade.h
上传用户:dangjiwu
上传日期:2013-07-19
资源大小:42019k
文件大小:5k
源码类别:

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: crosfade.h,v 1.2.36.1 2004/07/09 02:08:04 hubbe Exp $
  3.  * 
  4.  * Portions Copyright (c) 1995-2004 RealNetworks, Inc. All Rights Reserved.
  5.  * 
  6.  * The contents of this file, and the files included with this file,
  7.  * are subject to the current version of the RealNetworks Public
  8.  * Source License (the "RPSL") available at
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed
  10.  * the file under the current version of the RealNetworks Community
  11.  * Source License (the "RCSL") available at
  12.  * http://www.helixcommunity.org/content/rcsl, in which case the RCSL
  13.  * will apply. You may also obtain the license terms directly from
  14.  * RealNetworks.  You may not use this file except in compliance with
  15.  * the RPSL or, if you have a valid RCSL with RealNetworks applicable
  16.  * to this file, the RCSL.  Please see the applicable RPSL or RCSL for
  17.  * the rights, obligations and limitations governing use of the
  18.  * contents of the file.
  19.  * 
  20.  * Alternatively, the contents of this file may be used under the
  21.  * terms of the GNU General Public License Version 2 or later (the
  22.  * "GPL") in which case the provisions of the GPL are applicable
  23.  * instead of those above. If you wish to allow use of your version of
  24.  * this file only under the terms of the GPL, and not to allow others
  25.  * to use your version of this file under the terms of either the RPSL
  26.  * or RCSL, indicate your decision by deleting the provisions above
  27.  * and replace them with the notice and other provisions required by
  28.  * the GPL. If you do not delete the provisions above, a recipient may
  29.  * use your version of this file under the terms of any one of the
  30.  * RPSL, the RCSL or the GPL.
  31.  * 
  32.  * This file is part of the Helix DNA Technology. RealNetworks is the
  33.  * developer of the Original Code and owns the copyrights in the
  34.  * portions it created.
  35.  * 
  36.  * This file, and the files included with this file, is distributed
  37.  * and made available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY
  38.  * KIND, EITHER EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS
  39.  * ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES
  40.  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET
  41.  * ENJOYMENT OR NON-INFRINGEMENT.
  42.  * 
  43.  * Technology Compatibility Kit Test Suite(s) Location:
  44.  *    http://www.helixcommunity.org/content/tck
  45.  * 
  46.  * Contributor(s):
  47.  * 
  48.  * ***** END LICENSE BLOCK ***** */
  49. #ifndef _CROSS_FADER_
  50. #define _CROSS_FADER_
  51. /*
  52.  * Since (oldsamp-newsamp) can be -65535..65535 (17 bits),
  53.  * could use 17.15 format (without rounding),
  54.  * or use 18.14 format to allow rounding without overflow.
  55.  */
  56. #define FRACBITS 14 /* allow rounding */
  57. #define FRACMASK ((1<<FRACBITS) - 1)
  58. #define FRACROUND (1 << (FRACBITS-1))
  59. /* table parameters */
  60. #define NALPHA 128 /* size of alpha table */
  61. #define DBSTART 0.0 /* starting gain, in dB */
  62. #define DBEND -90.0 /* ending gain, in dB */
  63. #define DB2GAIN(d) (pow(10.0, (d)/20.0))
  64. // XXXHP: NEED TO REGENERATE ON WIN16 EVERYTIME THIS ARRAY
  65. //   IS MODIFIED!!!
  66. #ifdef _WIN16
  67. extern INT32* alpha;
  68. extern INT32* adelta;
  69. #else
  70. #ifdef GENERATE_TABLE
  71. static INT32 alpha[NALPHA+1] = {
  72. #else
  73. static const INT32 alpha[NALPHA+1] = {
  74. #endif
  75. 16384, 15100, 13917, 12827, 11822, 
  76. 10896, 10042, 9255, 8530, 7862, 
  77. 7246, 6678, 6155, 5673, 5228, 
  78. 4819, 4441, 4093, 3772, 3477, 
  79. 3204, 2953, 2722, 2509, 2312, 
  80. 2131, 1964, 1810, 1668, 1538, 
  81. 1417, 1306, 1204, 1110, 1023, 
  82. 942, 869, 801, 738, 680, 
  83. 627, 578, 532, 491, 452, 
  84. 417, 384, 354, 326, 301, 
  85. 277, 255, 235, 217, 200, 
  86. 184, 170, 157, 144, 133, 
  87. 123, 113, 104, 96, 88, 
  88. 82, 75, 69, 64, 59, 
  89. 54, 50, 46, 42, 39, 
  90. 36, 33, 31, 28, 26, 
  91. 24, 22, 20, 19, 17, 
  92. 16, 15, 14, 12, 12, 
  93. 11, 10, 9, 8, 8, 
  94. 7, 6, 6, 6, 5, 
  95. 5, 4, 4, 4, 3, 
  96. 3, 3, 3, 2, 2, 
  97. 2, 2, 2, 2, 1, 
  98. 1, 1, 1, 1, 1, 
  99. 1, 1, 1, 1, 1, 
  100. 1, 1, 1, 1
  101. };
  102. #ifdef GENERATE_TABLE
  103. static INT32 adelta[NALPHA] = {
  104. #else
  105. static const INT32 adelta[NALPHA] = {
  106. #endif
  107. -1284, -1183, -1090, -1005, -926, 
  108. -854, -787, -725, -668, -616, 
  109. -568, -523, -482, -445, -409, 
  110. -378, -348, -321, -295, -273, 
  111. -251, -231, -213, -197, -181, 
  112. -167, -154, -142, -130, -121, 
  113. -111, -102, -94, -87, -81, 
  114. -73, -68, -63, -58, -53, 
  115. -49, -46, -41, -39, -35, 
  116. -33, -30, -28, -25, -24, 
  117. -22, -20, -18, -17, -16, 
  118. -14, -13, -13, -11, -10, 
  119. -10, -9, -8, -8, -6, 
  120. -7, -6, -5, -5, -5, 
  121. -4, -4, -4, -3, -3, 
  122. -3, -2, -3, -2, -2, 
  123. -2, -2, -1, -2, -1, 
  124. -1, -1, -2, 0, -1, 
  125. -1, -1, -1, 0, -1, 
  126. -1, 0, 0, -1, 0, 
  127. -1, 0, 0, -1, 0, 
  128. 0, 0, -1, 0, 0, 
  129. 0, 0, 0, -1, 0, 
  130. 0, 0, 0, 0, 0, 
  131. 0, 0, 0, 0, 0, 
  132. 0, 0, 0 
  133. };
  134. #endif
  135. class CrossFader
  136. {
  137. public:
  138.     CrossFader();
  139.     ~CrossFader();
  140.     HX_RESULT Initialize(UINT16 uNumSamplesToFadeOn, UINT16 uNumChannels);
  141.     void CrossFade(INT16* sampold, INT16* sampnew, UINT16 uNumSamples);
  142.     
  143. #ifdef GENERATE_TABLE
  144.     /* This is for reference use only. this routine is used to generate
  145.      * the static tables 
  146.      */
  147.     void CrossFadeInit(void);
  148. #endif
  149. protected:
  150.     /* table steppers */
  151.     INT32 tabstep;
  152.     INT32 tabacc;
  153.     INT32 tabint;
  154.     UINT16 m_uNumChannels : 16;
  155.     HX_BITFIELD m_bInitialized : 1;
  156. };
  157. #endif /*_CROSS_FADER_*/