audplin.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. #define INITGUID
  36. #include "hxcom.h"
  37. #include <stdio.h>
  38. #ifndef _WINCE
  39. #include <signal.h>
  40. #endif
  41. #include "hxtypes.h"
  42. #include "hxcomm.h"
  43. #include "hxengin.h"
  44. #include "ihxpckts.h"
  45. #include "hxvalue.h"
  46. #include "hxfiles.h"
  47. #include "hxcore.h"
  48. #include "hxprefs.h"
  49. #include "hxrendr.h"
  50. #include "hxplugn.h"
  51. #include "hxupgrd.h"
  52. #include "hxausvc.h"
  53. #include "netbyte.h"
  54. #include "hxheap.h"
  55. #include "hxstrutl.h"
  56. #include "hxslist.h"
  57. #include "hxformt.h"
  58. #include "hxpends.h"
  59. #include "hxwin.h"
  60. #include "hxvalue.h"
  61. #include "baseobj.h"
  62. #if defined(HELIX_FEATURE_AUDIO_WAVE)
  63. #include "wvffplin.h"
  64. #include "audrend.h"
  65. #include "pcmrend.h"
  66. #endif /* #if defined(HELIX_FEATURE_AUDIO_WAVE) */
  67. #if defined(HELIX_FEATURE_PLAYBACK_LOCAL)
  68. #if defined(HELIX_FEATURE_AUDIO_CODEC_AMRNB) || defined(HELIX_FEATURE_AUDIO_CODEC_AMRWB)
  69. #define INCLUDE_AMRFF
  70. #endif /* #if defined(HELIX_FEATURE_AUDIO_CODEC_AMRNB) || defined(HELIX_FEATURE_AUDIO_CODEC_AMRWB) */
  71. #endif /* #if defined(HELIX_FEATURE_PLAYBACK_LOCAL) */
  72. #if defined(INCLUDE_AMRFF)
  73. #include "amrff.h"
  74. #endif /* #if defined(INCLUDE_AMRFF) */
  75. #if defined(HELIX_FEATURE_AUDIO_MPEG4)
  76. #include "hxacodec.h"
  77. #include "mp4audio.h"
  78. #endif /* #if defined(HELIX_FEATURE_AUDIO_MPEG4) */
  79. #include "audplin.h"
  80. #if !defined(HELIX_FEATURE_DLLACCESS_CLIENT)
  81. #include "dllpath.h"
  82. ENABLE_DLLACCESS_PATHS(audplin);
  83. #endif // HELIX_FEATURE_DLLACCESS_CLIENT
  84. #ifdef _DEBUG
  85. #undef HX_THIS_FILE
  86. static char HX_THIS_FILE[] = __FILE__;
  87. #endif
  88. HX_RESULT (STDAPICALLTYPE  * const AudioPluginFactory::m_fpEntryArray[])(IUnknown**)=
  89. {
  90. #if defined(HELIX_FEATURE_AUDIO_WAVE)
  91.     CWaveFileFormat::HXCreateInstance,
  92.     CPCMAudioRenderer::HXCreateInstance,
  93. #endif /* #if defined(HELIX_FEATURE_AUDIO_WAVE) */
  94. #if defined(INCLUDE_AMRFF)
  95.     CAMRFileFormat::HXCreateInstance,
  96. #endif /* #if defined(INCLUDE_AMRFF) */
  97. #if defined(HELIX_FEATURE_AUDIO_MPEG4)
  98.     CMP4AudioRenderer::HXCreateInstance,
  99. #endif /* #if defined(HELIX_FEATURE_AUDIO_MPEG4) */
  100.     NULL
  101. };
  102. HX_RESULT (STDAPICALLTYPE* const AudioPluginFactory::m_fpUnloadArray[])()={
  103. #if defined(HELIX_FEATURE_AUDIO_WAVE)
  104.     CWaveFileFormat::CanUnload2,
  105.     CPCMAudioRenderer::CanUnload2,
  106. #endif /* #if defined(HELIX_FEATURE_AUDIO_WAVE) */
  107. #if defined(INCLUDE_AMRFF)
  108.     CAMRFileFormat::CanUnload2,
  109. #endif /* #if defined(INCLUDE_AMRFF) */
  110. #if defined(HELIX_FEATURE_AUDIO_MPEG4)
  111.     CMP4AudioRenderer::CanUnload2,
  112. #endif /* #if defined(HELIX_FEATURE_AUDIO_MPEG4) */
  113.     NULL
  114. };
  115. STDAPI ENTRYPOINT(HXCREATEINSTANCE)(IUnknown** ppIUnknown)
  116. {   
  117.     *ppIUnknown = (IUnknown*)(IHXPlugin*)new AudioPluginFactory();  
  118.     if (*ppIUnknown)
  119.     {
  120. (*ppIUnknown)->AddRef();    
  121. return HXR_OK;
  122.     }
  123.     return HXR_OUTOFMEMORY; 
  124. }   
  125. STDAPI ENTRYPOINT(CanUnload2)(void)
  126. {
  127.     for( int i=0; AudioPluginFactory::m_fpUnloadArray[i]; i++ )
  128.     {
  129.         if( (AudioPluginFactory::m_fpUnloadArray[i])() != HXR_OK )
  130.         {
  131.             return HXR_FAIL;
  132.         }
  133.     }
  134.     return HXR_OK;
  135. }
  136. /////////////////////////////////////////////////////////////////////////
  137. //  Method:
  138. //      AudioPluginFactory
  139. //  Purpose:
  140. //      Constructor. Counts the number of functions within the
  141. //      Entry Array. Would have liked to use:
  142. //      return (sizeof(m_fpEntryArray)/sizeof(m_fpEntryArray[0]))-1;
  143. //      But for some strange reason the complier spits at it...
  144. //
  145. AudioPluginFactory::AudioPluginFactory() :
  146. m_lRefCount(0)
  147. {
  148.     for(m_usNumOfPlugins=0;m_fpEntryArray[m_usNumOfPlugins];m_usNumOfPlugins++) ;
  149. }
  150. /////////////////////////////////////////////////////////////////////////
  151. //  Method:
  152. // IUnknown::QueryInterface
  153. //  Purpose:
  154. // Implement this to export the interfaces supported by your 
  155. // object.
  156. //
  157. STDMETHODIMP AudioPluginFactory::QueryInterface(REFIID riid, void** ppvObj)
  158. {
  159.     if (IsEqualIID(riid, IID_IUnknown))
  160.     {
  161. AddRef();
  162. *ppvObj = (IUnknown *)this;
  163. return HXR_OK;
  164.     }
  165.     else if (IsEqualIID(riid, IID_IHXPluginFactory))
  166.     {
  167. AddRef();
  168. *ppvObj = (IHXPluginFactory *)this;
  169. return HXR_OK;
  170.     }
  171.     *ppvObj = NULL;
  172.     return HXR_NOINTERFACE;
  173. }
  174. /////////////////////////////////////////////////////////////////////////
  175. //  Method:
  176. //      AudioPluginFactory::AddRef
  177. //  Purpose:
  178. //      Everyone usually implements this the same... feel free to use
  179. //      this implementation.
  180. //
  181. STDMETHODIMP_(ULONG32) AudioPluginFactory::AddRef()
  182. {
  183.     return InterlockedIncrement(&m_lRefCount);
  184. }   
  185. /////////////////////////////////////////////////////////////////////////
  186. //  Method:
  187. //      AudioPluginFactory::Release
  188. //  Purpose:
  189. //      Everyone usually implements this the same... feel free to use
  190. //      this implementation.
  191. //
  192. STDMETHODIMP_(ULONG32) AudioPluginFactory::Release()
  193. {
  194.     if (InterlockedDecrement(&m_lRefCount) > 0)
  195.     {
  196.         return m_lRefCount;
  197.     }
  198.     
  199.     delete this;
  200.     return 0;
  201. }   
  202. /////////////////////////////////////////////////////////////////////////
  203. //  Method:
  204. //      AudioPluginFactory::GetNumPlugins
  205. //  Purpose:
  206. //      Returns an int, the number of plugins in this DLL.
  207. //      
  208. //
  209. STDMETHODIMP_(UINT16) AudioPluginFactory::GetNumPlugins()
  210. {
  211.     return m_usNumOfPlugins;
  212. }
  213. /////////////////////////////////////////////////////////////////////////
  214. //  Method:
  215. //      AudioPluginFactory::GetPlugin
  216. //  Purpose:
  217. //      Returns an IUnknown Reference to the specified Interface
  218. //      
  219. //
  220. STDMETHODIMP AudioPluginFactory::GetPlugin(UINT16 uindex, IUnknown** pPlugin)
  221. {
  222.     if (uindex<m_usNumOfPlugins)
  223. return m_fpEntryArray[uindex](pPlugin);
  224.     *pPlugin=0;
  225.     return HXR_NOINTERFACE;
  226. }