hxmixer.cpp
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:7k
源码类别:

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. #include "hlxclib/memory.h"
  36.  
  37. #include "hxresult.h"
  38. #include "hxtypes.h"
  39. #include "hxmixer.h"
  40. #include "hxcom.h"
  41. #include "hxheap.h"
  42. #ifdef _DEBUG
  43. #undef HX_THIS_FILE
  44. static const char HX_THIS_FILE[] = __FILE__;
  45. #endif
  46. /************************************************************************
  47.  *  Method:
  48.  *              CHXMixer::MixBuffer()
  49.  *      Purpose:
  50.  * NOTE: This routine may change the Source Buffer contents in order 
  51.  *       to multiple it by volume
  52.  */
  53. ULONG32 CHXMixer::MixBuffer
  54. UCHAR* pSrc
  55. , UCHAR* pDst
  56. , ULONG32 ulNumBytes
  57. , BOOL bChannelConvert
  58. , UINT16 uVolume
  59. , UINT16  uBitsPerSample
  60. , BOOL& bIsDestBufferDirty
  61. )
  62. {
  63.     if (!(bIsDestBufferDirty || bChannelConvert || uVolume != 100))
  64.     {
  65. ::memcpy(pDst, pSrc, ulNumBytes); /* Flawfinder: ignore */
  66. bIsDestBufferDirty = TRUE;
  67. return ulNumBytes;
  68.     }
  69.     ULONG32 nSamples = 0;
  70.     ULONG32 i,j;
  71.     LONG32 lFixedVolume = (uVolume*256)/100;
  72.     if (bIsDestBufferDirty)
  73.     {
  74. if ( uBitsPerSample == 16 )
  75. {
  76.     short   *dst = (short*)pDst;
  77.     short   *src = (short*)pSrc;
  78.     LONG32  lTmp = 0;
  79.     if ( !bChannelConvert )
  80.     {
  81. nSamples = ulNumBytes / 2; 
  82. for(i = 0, j=0; i < nSamples; i++,j++)
  83. {
  84.     lTmp = *(dst+j) + (((LONG32)(lFixedVolume * (*(src+i)))) >> 8);
  85.     //lTmp =   *(dst+j) +   (*(src+i));
  86.     // clip if need to
  87.     if ( lTmp > 32767 )
  88. *(dst+j) = 32767;
  89.     else if ( lTmp < -32768 )
  90. *(dst+j) = -32768;
  91.     else
  92. *(dst+j) = (short)lTmp;
  93. }
  94.     }
  95.     // Add the sample in again if we are converting this from
  96.     // mono to stereo.
  97.     else if ( bChannelConvert )
  98.     {
  99. short itmp = 0;
  100. nSamples = ulNumBytes / 2; 
  101. for(i = 0, j=0; i < nSamples; i++,j++)
  102. {
  103.     lTmp = *(dst+j) + (LONG32) (((LONG32)(lFixedVolume * (*(src+i)))) >> 8);
  104.     //lTmp = *(dst+j) + (*(src+i));
  105.     // clip if need to
  106.     if ( lTmp > 32767 )
  107. (*(dst+j)) = 32767;
  108.     else if ( lTmp < -32768 )
  109. (*(dst+j)) = -32768;
  110.     else
  111. (*(dst+j)) = (short)lTmp;
  112.     // Add this sample in twice for stereo
  113.     itmp = (*(dst+j));
  114.     j++;
  115.     (*(dst+j)) = itmp;
  116. }    
  117.     }
  118. }
  119. else if ( uBitsPerSample == 8 )
  120. {
  121.     UCHAR* dst = pDst;
  122.     UCHAR* src = pSrc; 
  123.     LONG32 uTmp = 0;
  124.     for(i = 0; i < ulNumBytes; i++)
  125.     {
  126. uTmp = (LONG32) *(dst+i) + (LONG32) (((LONG32)(lFixedVolume * (*(src+i)))) >> 8);
  127. //uTmp = *(dst+i) +  (*(src+i)) ;
  128. // clip if needed
  129. if ( uTmp > 255 )
  130.     *(dst+i) = 255;
  131. else
  132.     *(dst+i) = (UCHAR)uTmp;
  133.     }
  134. }
  135.     }
  136.     else
  137.     {
  138. if ( uBitsPerSample == 16 )
  139. {
  140.     short   *dst = (short*)pDst;
  141.     short   *src = (short*)pSrc;
  142.     LONG32  lTmp = 0;
  143.     if ( !bChannelConvert )
  144.     {
  145. nSamples = ulNumBytes / 2; 
  146. for(i = 0, j=0; i < nSamples; i++,j++)
  147. {
  148.     lTmp = (((LONG32)(lFixedVolume * (*(src+i)))) >> 8);
  149.     // clip if need to
  150.     if ( lTmp > 32767 )
  151. *(dst+j) = 32767;
  152.     else if ( lTmp < -32768 )
  153. *(dst+j) = -32768;
  154.     else
  155. *(dst+j) = (short)lTmp;
  156. }
  157.     }
  158.     // Add the sample in again if we are converting this from
  159.     // mono to stereo.
  160.     else if ( bChannelConvert )
  161.     {
  162. short itmp = 0;
  163. nSamples = ulNumBytes / 2; 
  164. for(i = 0, j=0; i < nSamples; i++,j++)
  165. {
  166.     lTmp = (LONG32) (((LONG32)(lFixedVolume * (*(src+i)))) >> 8);
  167.     //lTmp = *(dst+j) + (*(src+i));
  168.     // clip if need to
  169.     if ( lTmp > 32767 )
  170. (*(dst+j)) = 32767;
  171.     else if ( lTmp < -32768 )
  172. (*(dst+j)) = -32768;
  173.     else
  174. (*(dst+j)) = (short)lTmp;
  175.     // Add this sample in twice for stereo
  176.     itmp = (*(dst+j));
  177.     j++;
  178.     (*(dst+j)) = itmp;
  179. }    
  180.     }
  181. }
  182. else if ( uBitsPerSample == 8 )
  183. {
  184.     UCHAR* dst = pDst;
  185.     UCHAR* src = pSrc; 
  186.     LONG32 uTmp = 0;
  187.     for(i = 0; i < ulNumBytes; i++)
  188.     {
  189. uTmp = (LONG32) (((LONG32)(lFixedVolume * (*(src+i)))) >> 8);
  190. //uTmp = *(dst+i) +  (*(src+i)) ;
  191. // clip if needed
  192. if ( uTmp > 255 )
  193.     *(dst+i) = 255;
  194. else
  195.     *(dst+i) = (UCHAR)uTmp;
  196.     }
  197. }
  198.     }
  199.     bIsDestBufferDirty = TRUE;
  200.     return bChannelConvert ? ulNumBytes*2 : ulNumBytes;
  201. }
  202. /************************************************************************
  203.  *  Method:
  204.  *              CHXMixer::ApplyVolume()
  205.  *      Purpose:
  206.  * NOTE: This routine simply multiplies input buffer by volume 
  207.  */
  208. void CHXMixer::ApplyVolume
  209. UCHAR* pSrc
  210. , ULONG32 ulNumBytes
  211. , UINT16 uVolume
  212. , UINT16  uBitsPerSample
  213. )
  214. {
  215.     ULONG32 nSamples = 0;
  216.     ULONG32 i;
  217.     LONG32 lFixedVolume = (uVolume*256)/100;
  218.     if ( uBitsPerSample == 16 )
  219.     {
  220. short   *dst = (short*)pSrc;
  221. short   *src = (short*)pSrc;
  222. LONG32  lTmp = 0;
  223. nSamples = ulNumBytes / 2; 
  224. for(i = 0; i < nSamples; i++)
  225. {
  226.     lTmp = (((LONG32)(lFixedVolume * (*(src+i)))) >> 8);
  227.     //lTmp =   *(dst+j) +   (*(src+i));
  228.     // clip if need to
  229.     if ( lTmp > 32767 )
  230. *(dst+i) = 32767;
  231.     else if ( lTmp < -32768 )
  232. *(dst+i) = -32768;
  233.     else
  234. *(dst+i) = (short)lTmp;
  235. }
  236.     }
  237.     else if ( uBitsPerSample == 8 )
  238.     {
  239. UCHAR* dst = pSrc;
  240. UCHAR* src = pSrc; 
  241. LONG32 uTmp = 0;
  242. for(i = 0; i < ulNumBytes; i++)
  243.         {
  244.     uTmp = (LONG32) (((LONG32)(lFixedVolume * (*(src+i)))) >> 8);
  245.     //uTmp = *(dst+i) +  (*(src+i)) ;
  246.     // clip if needed
  247.     if ( uTmp > 255 )
  248. *(dst+i) = 255;
  249.     else
  250. *(dst+i) = (UCHAR)uTmp;
  251.         }
  252.     }
  253.     return;
  254. }