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

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 _CROSS_FADER_
  36. #define _CROSS_FADER_
  37. /*
  38.  * Since (oldsamp-newsamp) can be -65535..65535 (17 bits),
  39.  * could use 17.15 format (without rounding),
  40.  * or use 18.14 format to allow rounding without overflow.
  41.  */
  42. #define FRACBITS 14 /* allow rounding */
  43. #define FRACMASK ((1<<FRACBITS) - 1)
  44. #define FRACROUND (1 << (FRACBITS-1))
  45. /* table parameters */
  46. #define NALPHA 128 /* size of alpha table */
  47. #define DBSTART 0.0 /* starting gain, in dB */
  48. #define DBEND -90.0 /* ending gain, in dB */
  49. #define DB2GAIN(d) (pow(10.0, (d)/20.0))
  50. // XXXHP: NEED TO REGENERATE ON WIN16 EVERYTIME THIS ARRAY
  51. //   IS MODIFIED!!!
  52. #ifdef _WIN16
  53. extern INT32* alpha;
  54. extern INT32* adelta;
  55. #else
  56. #ifdef GENERATE_TABLE
  57. static INT32 alpha[NALPHA+1] = {
  58. #else
  59. static const INT32 alpha[NALPHA+1] = {
  60. #endif
  61. 16384, 15100, 13917, 12827, 11822, 
  62. 10896, 10042, 9255, 8530, 7862, 
  63. 7246, 6678, 6155, 5673, 5228, 
  64. 4819, 4441, 4093, 3772, 3477, 
  65. 3204, 2953, 2722, 2509, 2312, 
  66. 2131, 1964, 1810, 1668, 1538, 
  67. 1417, 1306, 1204, 1110, 1023, 
  68. 942, 869, 801, 738, 680, 
  69. 627, 578, 532, 491, 452, 
  70. 417, 384, 354, 326, 301, 
  71. 277, 255, 235, 217, 200, 
  72. 184, 170, 157, 144, 133, 
  73. 123, 113, 104, 96, 88, 
  74. 82, 75, 69, 64, 59, 
  75. 54, 50, 46, 42, 39, 
  76. 36, 33, 31, 28, 26, 
  77. 24, 22, 20, 19, 17, 
  78. 16, 15, 14, 12, 12, 
  79. 11, 10, 9, 8, 8, 
  80. 7, 6, 6, 6, 5, 
  81. 5, 4, 4, 4, 3, 
  82. 3, 3, 3, 2, 2, 
  83. 2, 2, 2, 2, 1, 
  84. 1, 1, 1, 1, 1, 
  85. 1, 1, 1, 1, 1, 
  86. 1, 1, 1, 1
  87. };
  88. #ifdef GENERATE_TABLE
  89. static INT32 adelta[NALPHA] = {
  90. #else
  91. static const INT32 adelta[NALPHA] = {
  92. #endif
  93. -1284, -1183, -1090, -1005, -926, 
  94. -854, -787, -725, -668, -616, 
  95. -568, -523, -482, -445, -409, 
  96. -378, -348, -321, -295, -273, 
  97. -251, -231, -213, -197, -181, 
  98. -167, -154, -142, -130, -121, 
  99. -111, -102, -94, -87, -81, 
  100. -73, -68, -63, -58, -53, 
  101. -49, -46, -41, -39, -35, 
  102. -33, -30, -28, -25, -24, 
  103. -22, -20, -18, -17, -16, 
  104. -14, -13, -13, -11, -10, 
  105. -10, -9, -8, -8, -6, 
  106. -7, -6, -5, -5, -5, 
  107. -4, -4, -4, -3, -3, 
  108. -3, -2, -3, -2, -2, 
  109. -2, -2, -1, -2, -1, 
  110. -1, -1, -2, 0, -1, 
  111. -1, -1, -1, 0, -1, 
  112. -1, 0, 0, -1, 0, 
  113. -1, 0, 0, -1, 0, 
  114. 0, 0, -1, 0, 0, 
  115. 0, 0, 0, -1, 0, 
  116. 0, 0, 0, 0, 0, 
  117. 0, 0, 0, 0, 0, 
  118. 0, 0, 0 
  119. };
  120. #endif
  121. class CrossFader
  122. {
  123. public:
  124.     CrossFader();
  125.     ~CrossFader();
  126.     HX_RESULT Initialize(UINT16 uNumSamplesToFadeOn, UINT16 uNumChannels);
  127.     void CrossFade(INT16* sampold, INT16* sampnew, UINT16 uNumSamples);
  128.     
  129. #ifdef GENERATE_TABLE
  130.     /* This is for reference use only. this routine is used to generate
  131.      * the static tables 
  132.      */
  133.     void CrossFadeInit(void);
  134. #endif
  135. protected:
  136.     /* table steppers */
  137.     INT32 tabstep;
  138.     INT32 tabacc;
  139.     INT32 tabint;
  140.     UINT16 m_uNumChannels : 16;
  141.     HX_BITFIELD m_bInitialized : 1;
  142. };
  143. #endif /*_CROSS_FADER_*/