decwrapper.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 which is the Codec class we're calling into */
  36. #define CodecClass CRAGecko2
  37. /* The include file for the codec class */
  38. #include "ra8lbr.h"
  39. /* generic RN include files */
  40. #include "hxtypes.h"
  41. #include "hxresult.h"
  42. /* This defines the interface we're exporting */
  43. #include "racodec.h"
  44. /*
  45. *  PROTOTYPES
  46. */
  47. #ifdef _MACINTOSH
  48. #ifndef _MAC_MACHO
  49. extern "C"
  50. {
  51.   // Default routines
  52.   OSErr __initialize (CFragInitBlockPtr pInitBlock);
  53.   void __terminate(void);
  54.   
  55.   // Our routines
  56.   OSErr InitEntryPoint (CFragInitBlockPtr pInitBlock);
  57.   void TermEntryPoint(void);
  58. }
  59. #endif
  60. #endif
  61. /*
  62. *  FUNCTIONS
  63. */
  64. #if !defined(_STATICALLY_LINKED)
  65. #if (defined(WIN32) || defined (_WIN32)) 
  66. #if !defined(_WINCE)
  67. BOOL WINAPI DllMain (HINSTANCE hDLL, DWORD dwReason, LPVOID lpReserved)
  68. #else
  69. BOOL WINAPI DllMain (HANDLE hDLL, DWORD dwReason, LPVOID lpReserved)
  70. #endif
  71. {
  72.   return TRUE;
  73. }
  74. #endif
  75. #ifdef _MACINTOSH
  76. #ifndef _MAC_MACHO
  77. OSErr InitEntryPoint (CFragInitBlockPtr pInitBlock)
  78. {
  79.   OSErr result = noErr;
  80.   
  81.   result = __initialize (pInitBlock);
  82.   
  83.   return result;
  84. }
  85. void TermEntryPoint (void)
  86. {
  87.   __terminate();
  88. }
  89. #endif
  90. #endif
  91. #endif /* #if !defined(_STATICALLY_LINKED) */
  92. /*
  93. * NEW COOKIE API
  94. */
  95. // preview compatibility only - obsolete
  96. HX_RESULT HXEXPORT ENTRYPOINT(RAOpenCodec) (RACODEC* pCodecRef)
  97. {
  98.   if (pCodecRef)
  99.   {
  100.     *pCodecRef = (RACODEC) new CodecClass();
  101.     
  102.     if (*pCodecRef)
  103.       return HXR_OK;
  104.     else
  105.       return HXR_OUTOFMEMORY;
  106.   }
  107.   else
  108.     return HXR_INVALID_PARAMETER;
  109. }
  110. HX_RESULT HXEXPORT ENTRYPOINT(RAOpenCodec2) (RACODEC* pCodecRef, const char* pCodecPath)
  111. {
  112.   // Note: The codec path is now obtained from this library's global
  113.   // DLLAccess object, which is set in the SetDLLAccessPaths() exported
  114.   // function. The loader of this library should have already called the
  115.   // SetDLLAccessPaths() function to set the codec path. -DPS
  116.   
  117.   if (pCodecRef)
  118.   {
  119.     *pCodecRef = (RACODEC) new CodecClass();
  120.     
  121.     if (*pCodecRef)
  122.       return HXR_OK;
  123.     else
  124.       return HXR_OUTOFMEMORY;
  125.   }
  126.   else
  127.     return HXR_INVALID_PARAMETER;
  128. }
  129. HX_RESULT HXEXPORT ENTRYPOINT(RACloseCodec) (RACODEC codecRef)
  130. {
  131.   if (codecRef)
  132.   {
  133.     delete (CodecClass*) codecRef;
  134.     return HXR_OK;
  135.   }
  136.   else
  137.   {
  138.     return HXR_INVALID_PARAMETER;
  139.   }
  140. }
  141. // Older SDK uses *this* function to determine the number of codec flavors.
  142. // However, if this function returns more than 15 (the original number of
  143. // Gecko flavors), that SDK will fail...
  144. // For really new codecs, this should be set to 0. See comment below.
  145. UINT16 HXEXPORT ENTRYPOINT(RAGetNumberOfFlavors) (RACODEC codecRef)
  146. {
  147.     UINT16 usRetVal = 0;
  148.     
  149.     if (codecRef)
  150.     {
  151.         usRetVal = ((CodecClass*)codecRef)->GetNumberOfFlavors();
  152.     }
  153.     return usRetVal;
  154. }
  155. // This is the *new* function that will return the true number of supported
  156. // Gecko flavors.  The Build Engine will check for the existence of this
  157. // function, and use its result.  If this function does not exist it will
  158. // query the function above (RAGetNumberOfFlavors)
  159. // -Gregc 
  160. UINT16 HXEXPORT ENTRYPOINT(RAGetNumberOfFlavors2) (RACODEC codecRef)
  161. {
  162.     UINT16 usRetVal = 0;
  163.     
  164.     if (codecRef)
  165.     {
  166.         usRetVal = ((CodecClass*)codecRef)->GetNumberOfFlavors2();
  167.     }
  168.     return usRetVal;
  169. }
  170. void* HXEXPORT ENTRYPOINT(RAGetFlavorProperty) (RACODEC codecRef,UINT16 flvIndex, UINT16 propIndex, UINT16* pSize)
  171. {
  172.   return codecRef ?
  173.     ((CodecClass*)codecRef)->GetProperty (flvIndex, propIndex, pSize) :
  174.     NULL ;
  175. }
  176. HX_RESULT HXEXPORT ENTRYPOINT(RASetFlavor) (RACODEC codecRef, UINT16 flvIndex)
  177. {
  178.   /* XXX wschildbach:
  179.    if new backwards-compatible content hits an old decoder that
  180.    does not know this flavour (but is entirely happy decoding it),
  181.    returning an error code here will break decoding on RP8 and
  182.    before with a "general error".
  183.    The player really should not call SetFlavour() at all, but
  184.    until this is fixed, we must not return an error code here. */
  185.   if (codecRef)
  186.     ((CodecClass*)codecRef)->SetFlavor (flvIndex) ;
  187.   return HXR_OK ;
  188. }
  189. HX_RESULT HXEXPORT ENTRYPOINT(RAInitDecoder) (RACODEC codecRef, void* pParam)
  190. {
  191.   return codecRef ?
  192.     ((CodecClass*)codecRef)->InitDecoder ((RADECODER_INIT_PARAMS*)pParam) :
  193.     HXR_INVALID_PARAMETER ;
  194. }
  195. HX_RESULT HXEXPORT ENTRYPOINT(RADecode) (RACODEC codecRef, Byte* in, UINT32 inLength, Byte* out, UINT32* pOutLength, UINT32 userData)
  196. {
  197.   return codecRef ? 
  198.     ((CodecClass*)codecRef)->Decode (in, inLength, out, pOutLength, userData) :
  199.     HXR_INVALID_PARAMETER ;
  200. }
  201. HX_RESULT HXEXPORT ENTRYPOINT(RAFlush) (RACODEC codecRef, Byte* outBuf, UINT32* outLength)
  202. {
  203.   return codecRef ?
  204.     ((CodecClass*)codecRef)->SetFlush(outBuf,outLength) :
  205.     HXR_INVALID_PARAMETER ;
  206. }
  207. void HXEXPORT ENTRYPOINT(RAFreeDecoder) (RACODEC codecRef)
  208. {
  209.   if (codecRef)
  210.   {
  211.     ((CodecClass*)codecRef)->FreeDecoder();
  212.   }
  213. }
  214. HX_RESULT HXEXPORT ENTRYPOINT(RAGetBackend) (RACODEC codecRef, void*** pFuncList)
  215. {
  216.     return HXR_NOTIMPL;
  217. }
  218. HX_RESULT HXEXPORT ENTRYPOINT(RAGetGUID) (UCHAR* pGUID)
  219. {
  220.     return CodecClass::GetGUID(pGUID);
  221. }
  222. HX_RESULT HXEXPORT ENTRYPOINT(RASetComMode) (RACODEC codecRef)
  223. {
  224.   if (codecRef)
  225.   {
  226.     return ((CodecClass*)codecRef)->SetComMode();
  227.   }
  228.   return HXR_FAIL;
  229. }