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

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 "hxtypes.h"
  36. #include "hxresult.h"
  37. #include "hxassert.h"
  38. #include "hxwintyp.h"
  39. #include "hxcom.h"
  40. #include "hxcomm.h"
  41. #include "ihxpckts.h"
  42. #include "hxplugn.h"
  43. #include "hxengin.h"
  44. #include "hxerror.h"
  45. #include "hxformt.h"
  46. #include "hxslist.h"
  47. #include "dllaccesbridge.h"
  48. #include "dllpath.h"
  49. #include "hxvh263.h"
  50. #include "h263vdec.h"
  51. #include "h263dec.h"
  52. #include "h263vidfmt.h"
  53. #include "hxstrutl.h"
  54. #include "hxheap.h"
  55. #ifdef _DEBUG
  56. #undef HX_THIS_FILE
  57. static const char HX_THIS_FILE[] = __FILE__;
  58. #endif
  59. /****************************************************************************
  60.  *  Method:
  61.  *    CH263Decoder::CH263Decoder
  62.  *
  63.  */
  64. CH263Decoder::CH263Decoder(IUnknown* pContext)
  65.     : m_pCodecAccess(NULL)
  66.     , m_fpH263Init(0)
  67.     , m_fpH263Free(0)
  68.     , m_fpH263Transform(0)
  69.     , m_pContext(pContext)
  70.     , m_pDecoderState(NULL)
  71.     , m_ulPreviousFrameType(0)
  72.     , m_bMoreFrames(FALSE)
  73. {
  74.     HX_ADDREF(m_pContext);
  75. }
  76. /****************************************************************************
  77.  *  Method:
  78.  *    CH263Decoder::~CH263Decoder
  79.  *
  80.  */
  81. CH263Decoder::~CH263Decoder()
  82. {
  83.     CloseDecoder();
  84.     HX_RELEASE(m_pContext);
  85. }
  86. HX_RESULT 
  87. CH263Decoder::CloseDecoder()
  88. {
  89.     if (m_pDecoderState)
  90.     {
  91. m_fpH263Free(m_pDecoderState);
  92. m_pDecoderState = NULL;
  93.     }
  94.     m_fpH263Init = NULL;
  95.     m_fpH263Free = NULL;
  96.     m_fpH263Transform = NULL;
  97.     HX_DELETE(m_pCodecAccess);
  98.     return HXR_OK;
  99. }
  100. /****************************************************************************
  101.  *  Method:
  102.  *    CH263Decoder::CH263Decoder
  103.  *
  104.  */
  105. HX_RESULT
  106. CH263Decoder::InitDecoder(HXxSize* pSize)
  107. {
  108.     // Build the module name if none is supplied
  109.     char pLibName[16]; /* Flawfinder: ignore */
  110. // Try to load a codec until OS_BuildLibName does not find one
  111.     for (INT32 i=0;; i++)
  112.     {
  113.         if (!m_pCodecAccess)
  114.         {
  115.             if (OS_BuildLibName(pLibName, 16, i) == FALSE)
  116.             {
  117.                 return HXR_FAIL;
  118.             }
  119.             // DLLAccess should be used to provide cross-platform support
  120.             m_pCodecAccess = new DLLAccessBridge(pLibName, DLLTYPE_CODEC, m_pContext);
  121.         }
  122.         if (LoadCodecFunctions())
  123.         {
  124.             // We found a codec and could get its symbols
  125.             break;
  126.         }
  127.         
  128.         // We could not get the codec's symbols so look for another one
  129.         HX_DELETE(m_pCodecAccess);
  130.     }
  131.     if (m_pDecoderState)
  132.     {
  133. m_fpH263Free(m_pDecoderState);
  134.     }
  135.     m_InitParams.outtype    = T_YUV420_NOCOPY;
  136.     m_InitParams.pels     = (UINT16)pSize->cx;
  137.     m_InitParams.lines     = (UINT16)pSize->cy;
  138.     m_InitParams.nPadWidth    = 0; /* number of columns of padding on right to get 16 x 16 block*/
  139.     m_InitParams.nPadHeight   = 0;/* number of rows of padding on bottom to get 16 x 16 block*/
  140.     m_InitParams.ulInvariants = 0;
  141. // ulInvariants specifies the invariant picture header bits
  142.     m_InitParams.packetization = TRUE;
  143.     m_InitParams.ulStreamVersion = HX_ENCODE_PROD_VERSION(4,4,0,0);
  144.     return m_fpH263Init(&m_InitParams, &m_pDecoderState);
  145. }
  146. /****************************************************************************
  147.  *  Method:
  148.  *    CH263Decoder::DecodeFrame()
  149.  */
  150. HX_RESULT
  151. CH263Decoder::DecodeFrame(CMediaPacket* pFrameToDecode, 
  152.   UINT8* pDecodedBuf,
  153.   HXxSize* pFrameDims) 
  154. {
  155.     HX_RESULT ret = HXR_OK;
  156.     if (m_fpH263Transform != NULL)
  157.     {
  158. H263DecoderOutParams OutputParams;
  159. H263DecoderInParams InputParams;
  160. InputParams.dataLength = pFrameToDecode->m_ulDataSize;
  161. InputParams.bInterpolateImage = FALSE;
  162. InputParams.numDataSegments = 0;
  163. InputParams.pDataSegments = 0;
  164. InputParams.timestamp = pFrameToDecode->m_ulTime;
  165. InputParams.flags = 0;
  166. if (m_bMoreFrames)
  167. {
  168.     m_bMoreFrames = FALSE;
  169.     InputParams.flags |= RV_DECODE_MORE_FRAMES;
  170. }
  171. if (pDecodedBuf != NULL)
  172. {
  173.     ret = VerifyInput(pFrameToDecode, &InputParams);
  174.         
  175.         if (FAILED(ret))
  176.         {
  177.             return ret;
  178.         }
  179.         ret = m_fpH263Transform(pFrameToDecode->m_pData, 
  180. pDecodedBuf, &InputParams, 
  181. &OutputParams, m_pDecoderState);
  182. #ifdef XXX_JHUG_DEBUG
  183.     FILE* f = fopen("C:\TEMP\decodeLog.txt", "a+");
  184.     fprintf(f, "Transform pBuffer, length=%i %sn", pBuffer->GetSize(), SUCCEEDED(ret) ? "SUCCEEDED":"FAILED");
  185.     fclose(f);
  186. #endif // XXX_JHUG_DEBUG
  187.     
  188.     if (OutputParams.notes & RV_DECODE_KEY_FRAME)
  189.     {
  190. m_ulPreviousFrameType = FRAME_TYPE_I;
  191.     }
  192.     else
  193.     {
  194. if (OutputParams.notes & RV_DECODE_B_FRAME)
  195. {
  196.     m_ulPreviousFrameType = FRAME_TYPE_B;
  197. }
  198. else
  199. {
  200.     m_ulPreviousFrameType = FRAME_TYPE_P;
  201. }
  202.     }
  203.     if (pFrameDims)
  204.     {
  205. pFrameDims->cx = OutputParams.width;
  206. pFrameDims->cy = OutputParams.height;
  207.     }
  208. }
  209. else 
  210. {
  211.     m_ulPreviousFrameType = FRAME_TYPE_I;
  212. }
  213. if (OutputParams.notes & RV_DECODE_MORE_FRAMES)
  214. {
  215.     m_bMoreFrames = TRUE;
  216. }
  217. else
  218. {
  219.     m_bMoreFrames = FALSE;
  220. }
  221.     }
  222.     else
  223.     {
  224. ret = HXR_FAIL;
  225.     }
  226.     return ret;
  227. }
  228. /****************************************************************************
  229.  *  Method:
  230.  *    CH263Decoder::OS_BuildLibName
  231.  */
  232. BOOL CH263Decoder::OS_BuildLibName(char *pLibName,
  233.                                    UINT32 ulLibNameBufLen,
  234.                                    INT32 nIndex)
  235. {
  236.     BOOL rtn = TRUE;
  237.     if (pLibName == NULL)
  238.         return FALSE;
  239.     // Priority scheme for loading h263 backend
  240.     switch (nIndex)
  241.     {
  242.         // mpeg4/h263/rv7 combo decoder
  243.         case 0:
  244.             SafeStrCpy(pLibName, "dmp4", ulLibNameBufLen);
  245.             break;
  246.         
  247.         // g2 decoder
  248.         case 1:
  249.         case 2:
  250.             SafeStrCpy(pLibName, "drv2", ulLibNameBufLen);
  251.             break;
  252.         
  253.         // h263 backend
  254.         case 3:
  255.             SafeStrCpy(pLibName, "d263", ulLibNameBufLen);
  256.             break;
  257.         default:
  258.             return FALSE;
  259.     }
  260. #if defined(WIN32) || defined(_WIN32)
  261.     if (2 == nIndex)
  262.     {
  263.         SafeStrCat(pLibName, "3260", ulLibNameBufLen);
  264.     }
  265.     SafeStrCat(pLibName, ".DLL", ulLibNameBufLen);
  266. #elif defined (_MAC_UNIX)
  267.     SafeStrCpy(pLibName, ".bundle", ulLibNameBufLen);
  268. #elif _MACINTOSH 
  269. #if defined(_CARBON)
  270. #ifdef _MAC_MACHO
  271.     SafeStrCpy(pLibName, ".bundle", ulLibNameBufLen);
  272. #else // _MAC_MACHO
  273.     SafeStrCat(pLibName, ".shlb", ulLibNameBufLen);
  274. #endif // _MAC_MACHO
  275. #else // _CARBON
  276.         SafeStrCat(pLibName, ".DLL", ulLibNameBufLen);
  277. #endif // _CARBON
  278. #elif defined (_UNIX)
  279.     //
  280.     // codecs are named like this :XXXX.so" where XXXX is the
  281.     // codec id string
  282.     //
  283.     SafeStrCat(pLibName, ".so", ulLibNameBufLen);
  284. #endif
  285.     return rtn;
  286. }
  287. BOOL CH263Decoder::LoadCodecFunctions()
  288. {
  289.     BOOL bReturn = m_pCodecAccess->isOpen();
  290.     if (bReturn)
  291.     {
  292.         // we got a module so get the symbols we need
  293. if (!m_fpH263Init)
  294.         {
  295.             m_fpH263Init = (FPTRANSFORMINIT) m_pCodecAccess->getSymbol("RV20toYUV420Init");
  296.         }
  297.         if (!m_fpH263Init)
  298.         {
  299.             m_fpH263Init = (FPTRANSFORMINIT) m_pCodecAccess->getSymbol("HXVtoYUV420Init");
  300.         }
  301. if (!m_fpH263Free)
  302.         {
  303.             m_fpH263Free = (FPTRANSFORMFREE) m_pCodecAccess->getSymbol("RV20toYUV420Free");
  304.         }
  305.         if (!m_fpH263Free)
  306.         {
  307.             m_fpH263Free = (FPTRANSFORMFREE) m_pCodecAccess->getSymbol("HXVtoYUV420Free");
  308.         }
  309. if (!m_fpH263Transform)
  310.         {
  311.             m_fpH263Transform = (FPTRANSFORMHXV10TOYUV) m_pCodecAccess->getSymbol("RV20toYUV420Transform");
  312.         }
  313.         if (!m_fpH263Transform)
  314.         {
  315.             m_fpH263Transform = (FPTRANSFORMHXV10TOYUV) m_pCodecAccess->getSymbol("HXVtoYUV420Transform");
  316.         }
  317.         if (m_fpH263Init == NULL ||
  318.             m_fpH263Free == NULL ||
  319.             m_fpH263Transform == NULL)
  320.         {
  321.             bReturn = FALSE;
  322.         }
  323.     }
  324.     return bReturn;
  325. }