h263dec.cpp
上传用户:dangjiwu
上传日期:2013-07-19
资源大小:42019k
文件大小:10k
源码类别:

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: h263dec.cpp,v 1.10.4.1 2004/07/09 01:56:54 hubbe Exp $
  3.  * 
  4.  * Portions Copyright (c) 1995-2004 RealNetworks, Inc. All Rights Reserved.
  5.  * 
  6.  * The contents of this file, and the files included with this file,
  7.  * are subject to the current version of the RealNetworks Public
  8.  * Source License (the "RPSL") available at
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed
  10.  * the file under the current version of the RealNetworks Community
  11.  * Source License (the "RCSL") available at
  12.  * http://www.helixcommunity.org/content/rcsl, in which case the RCSL
  13.  * will apply. You may also obtain the license terms directly from
  14.  * RealNetworks.  You may not use this file except in compliance with
  15.  * the RPSL or, if you have a valid RCSL with RealNetworks applicable
  16.  * to this file, the RCSL.  Please see the applicable RPSL or RCSL for
  17.  * the rights, obligations and limitations governing use of the
  18.  * contents of the file.
  19.  * 
  20.  * Alternatively, the contents of this file may be used under the
  21.  * terms of the GNU General Public License Version 2 or later (the
  22.  * "GPL") in which case the provisions of the GPL are applicable
  23.  * instead of those above. If you wish to allow use of your version of
  24.  * this file only under the terms of the GPL, and not to allow others
  25.  * to use your version of this file under the terms of either the RPSL
  26.  * or RCSL, indicate your decision by deleting the provisions above
  27.  * and replace them with the notice and other provisions required by
  28.  * the GPL. If you do not delete the provisions above, a recipient may
  29.  * use your version of this file under the terms of any one of the
  30.  * RPSL, the RCSL or the GPL.
  31.  * 
  32.  * This file is part of the Helix DNA Technology. RealNetworks is the
  33.  * developer of the Original Code and owns the copyrights in the
  34.  * portions it created.
  35.  * 
  36.  * This file, and the files included with this file, is distributed
  37.  * and made available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY
  38.  * KIND, EITHER EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS
  39.  * ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES
  40.  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET
  41.  * ENJOYMENT OR NON-INFRINGEMENT.
  42.  * 
  43.  * Technology Compatibility Kit Test Suite(s) Location:
  44.  *    http://www.helixcommunity.org/content/tck
  45.  * 
  46.  * Contributor(s):
  47.  * 
  48.  * ***** END LICENSE BLOCK ***** */
  49. #include "hxtypes.h"
  50. #include "hxresult.h"
  51. #include "hxassert.h"
  52. #include "hxwintyp.h"
  53. #include "hxcom.h"
  54. #include "hxcomm.h"
  55. #include "ihxpckts.h"
  56. #include "hxplugn.h"
  57. #include "hxengin.h"
  58. #include "hxerror.h"
  59. #include "hxformt.h"
  60. #include "hxslist.h"
  61. #include "dllaccesbridge.h"
  62. #include "dllpath.h"
  63. #include "hxvh263.h"
  64. #include "h263vdec.h"
  65. #include "h263dec.h"
  66. #include "h263vidfmt.h"
  67. #include "hxstrutl.h"
  68. #include "hxheap.h"
  69. #ifdef _DEBUG
  70. #undef HX_THIS_FILE
  71. static const char HX_THIS_FILE[] = __FILE__;
  72. #endif
  73. /****************************************************************************
  74.  *  Method:
  75.  *    CH263Decoder::CH263Decoder
  76.  *
  77.  */
  78. CH263Decoder::CH263Decoder(IUnknown* pContext)
  79.     : m_pCodecAccess(NULL)
  80.     , m_fpH263Init(0)
  81.     , m_fpH263Free(0)
  82.     , m_fpH263Transform(0)
  83.     , m_pContext(pContext)
  84.     , m_pDecoderState(NULL)
  85.     , m_ulPreviousFrameType(0)
  86.     , m_bMoreFrames(FALSE)
  87. {
  88.     HX_ADDREF(m_pContext);
  89. }
  90. /****************************************************************************
  91.  *  Method:
  92.  *    CH263Decoder::~CH263Decoder
  93.  *
  94.  */
  95. CH263Decoder::~CH263Decoder()
  96. {
  97.     CloseDecoder();
  98.     HX_RELEASE(m_pContext);
  99. }
  100. HX_RESULT 
  101. CH263Decoder::CloseDecoder()
  102. {
  103.     if (m_pDecoderState)
  104.     {
  105. m_fpH263Free(m_pDecoderState);
  106. m_pDecoderState = NULL;
  107.     }
  108.     m_fpH263Init = NULL;
  109.     m_fpH263Free = NULL;
  110.     m_fpH263Transform = NULL;
  111.     HX_DELETE(m_pCodecAccess);
  112.     return HXR_OK;
  113. }
  114. /****************************************************************************
  115.  *  Method:
  116.  *    CH263Decoder::CH263Decoder
  117.  *
  118.  */
  119. HX_RESULT
  120. CH263Decoder::InitDecoder(HXxSize* pSize)
  121. {
  122.     // Build the module name if none is supplied
  123.     char pLibName[16]; /* Flawfinder: ignore */
  124. // Try to load a codec until OS_BuildLibName does not find one
  125.     for (INT32 i=0;; i++)
  126.     {
  127.         if (!m_pCodecAccess)
  128.         {
  129.             if (OS_BuildLibName(pLibName, 16, i) == FALSE)
  130.             {
  131.                 return HXR_FAIL;
  132.             }
  133.             // DLLAccess should be used to provide cross-platform support
  134.             m_pCodecAccess = new DLLAccessBridge(pLibName, DLLTYPE_CODEC, m_pContext);
  135.         }
  136.         if (LoadCodecFunctions())
  137.         {
  138.             // We found a codec and could get its symbols
  139.             break;
  140.         }
  141.         
  142.         // We could not get the codec's symbols so look for another one
  143.         HX_DELETE(m_pCodecAccess);
  144.     }
  145.     if (m_pDecoderState)
  146.     {
  147. m_fpH263Free(m_pDecoderState);
  148.     }
  149.     m_InitParams.outtype    = T_YUV420_NOCOPY;
  150.     m_InitParams.pels     = (UINT16)pSize->cx;
  151.     m_InitParams.lines     = (UINT16)pSize->cy;
  152.     m_InitParams.nPadWidth    = 0; /* number of columns of padding on right to get 16 x 16 block*/
  153.     m_InitParams.nPadHeight   = 0;/* number of rows of padding on bottom to get 16 x 16 block*/
  154.     m_InitParams.ulInvariants = 0;
  155. // ulInvariants specifies the invariant picture header bits
  156.     m_InitParams.packetization = TRUE;
  157.     m_InitParams.ulStreamVersion = HX_ENCODE_PROD_VERSION(4,4,0,0);
  158.     return m_fpH263Init(&m_InitParams, &m_pDecoderState);
  159. }
  160. /****************************************************************************
  161.  *  Method:
  162.  *    CH263Decoder::DecodeFrame()
  163.  */
  164. HX_RESULT
  165. CH263Decoder::DecodeFrame(CMediaPacket* pFrameToDecode, 
  166.   UINT8* pDecodedBuf,
  167.   HXxSize* pFrameDims) 
  168. {
  169.     HX_RESULT ret = HXR_OK;
  170.     if (m_fpH263Transform != NULL)
  171.     {
  172. H263DecoderOutParams OutputParams;
  173. H263DecoderInParams InputParams;
  174. InputParams.dataLength = pFrameToDecode->m_ulDataSize;
  175. InputParams.bInterpolateImage = FALSE;
  176. InputParams.numDataSegments = 0;
  177. InputParams.pDataSegments = 0;
  178. InputParams.timestamp = pFrameToDecode->m_ulTime;
  179. InputParams.flags = 0;
  180. if (m_bMoreFrames)
  181. {
  182.     m_bMoreFrames = FALSE;
  183.     InputParams.flags |= RV_DECODE_MORE_FRAMES;
  184. }
  185. if (pDecodedBuf != NULL)
  186. {
  187.     ret = VerifyInput(pFrameToDecode, &InputParams);
  188.         
  189.         if (FAILED(ret))
  190.         {
  191.             return ret;
  192.         }
  193.         ret = m_fpH263Transform(pFrameToDecode->m_pData, 
  194. pDecodedBuf, &InputParams, 
  195. &OutputParams, m_pDecoderState);
  196. #ifdef XXX_JHUG_DEBUG
  197.     FILE* f = fopen("C:\TEMP\decodeLog.txt", "a+");
  198.     fprintf(f, "Transform pBuffer, length=%i %sn", pBuffer->GetSize(), SUCCEEDED(ret) ? "SUCCEEDED":"FAILED");
  199.     fclose(f);
  200. #endif // XXX_JHUG_DEBUG
  201.     
  202.     if (OutputParams.notes & RV_DECODE_KEY_FRAME)
  203.     {
  204. m_ulPreviousFrameType = FRAME_TYPE_I;
  205.     }
  206.     else
  207.     {
  208. if (OutputParams.notes & RV_DECODE_B_FRAME)
  209. {
  210.     m_ulPreviousFrameType = FRAME_TYPE_B;
  211. }
  212. else
  213. {
  214.     m_ulPreviousFrameType = FRAME_TYPE_P;
  215. }
  216.     }
  217.     if (pFrameDims)
  218.     {
  219. pFrameDims->cx = OutputParams.width;
  220. pFrameDims->cy = OutputParams.height;
  221.     }
  222. }
  223. else 
  224. {
  225.     m_ulPreviousFrameType = FRAME_TYPE_I;
  226. }
  227. if (OutputParams.notes & RV_DECODE_MORE_FRAMES)
  228. {
  229.     m_bMoreFrames = TRUE;
  230. }
  231. else
  232. {
  233.     m_bMoreFrames = FALSE;
  234. }
  235.     }
  236.     else
  237.     {
  238. ret = HXR_FAIL;
  239.     }
  240.     return ret;
  241. }
  242. /****************************************************************************
  243.  *  Method:
  244.  *    CH263Decoder::OS_BuildLibName
  245.  */
  246. BOOL CH263Decoder::OS_BuildLibName(char *pLibName,
  247.                                    UINT32 ulLibNameBufLen,
  248.                                    INT32 nIndex)
  249. {
  250.     BOOL rtn = TRUE;
  251.     if (pLibName == NULL)
  252.         return FALSE;
  253.     // Priority scheme for loading h263 backend
  254.     switch (nIndex)
  255.     {
  256.         // mpeg4/h263/rv7 combo decoder
  257.         case 0:
  258.             SafeStrCpy(pLibName, "dmp4", ulLibNameBufLen);
  259.             break;
  260.         
  261.         // g2 decoder
  262.         case 1:
  263.         case 2:
  264.             SafeStrCpy(pLibName, "drv2", ulLibNameBufLen);
  265.             break;
  266.         
  267.         // h263 backend
  268.         case 3:
  269.             SafeStrCpy(pLibName, "d263", ulLibNameBufLen);
  270.             break;
  271.         default:
  272.             return FALSE;
  273.     }
  274. #if defined(WIN32) || defined(_WIN32)
  275.     if (2 == nIndex)
  276.     {
  277.         SafeStrCat(pLibName, "3260", ulLibNameBufLen);
  278.     }
  279.     SafeStrCat(pLibName, ".DLL", ulLibNameBufLen);
  280. #elif defined (_MAC_UNIX)
  281.     SafeStrCpy(pLibName, ".bundle", ulLibNameBufLen);
  282. #elif _MACINTOSH 
  283. #if defined(_CARBON)
  284. #ifdef _MAC_MACHO
  285.     SafeStrCpy(pLibName, ".bundle", ulLibNameBufLen);
  286. #else // _MAC_MACHO
  287.     SafeStrCat(pLibName, ".shlb", ulLibNameBufLen);
  288. #endif // _MAC_MACHO
  289. #else // _CARBON
  290.         SafeStrCat(pLibName, ".DLL", ulLibNameBufLen);
  291. #endif // _CARBON
  292. #elif defined (_UNIX)
  293.     //
  294.     // codecs are named like this :XXXX.so" where XXXX is the
  295.     // codec id string
  296.     //
  297.     SafeStrCat(pLibName, ".so", ulLibNameBufLen);
  298. #endif
  299.     return rtn;
  300. }
  301. BOOL CH263Decoder::LoadCodecFunctions()
  302. {
  303.     BOOL bReturn = m_pCodecAccess->isOpen();
  304.     if (bReturn)
  305.     {
  306.         // we got a module so get the symbols we need
  307. if (!m_fpH263Init)
  308.         {
  309.             m_fpH263Init = (FPTRANSFORMINIT) m_pCodecAccess->getSymbol("RV20toYUV420Init");
  310.         }
  311.         if (!m_fpH263Init)
  312.         {
  313.             m_fpH263Init = (FPTRANSFORMINIT) m_pCodecAccess->getSymbol("HXVtoYUV420Init");
  314.         }
  315. if (!m_fpH263Free)
  316.         {
  317.             m_fpH263Free = (FPTRANSFORMFREE) m_pCodecAccess->getSymbol("RV20toYUV420Free");
  318.         }
  319.         if (!m_fpH263Free)
  320.         {
  321.             m_fpH263Free = (FPTRANSFORMFREE) m_pCodecAccess->getSymbol("HXVtoYUV420Free");
  322.         }
  323. if (!m_fpH263Transform)
  324.         {
  325.             m_fpH263Transform = (FPTRANSFORMHXV10TOYUV) m_pCodecAccess->getSymbol("RV20toYUV420Transform");
  326.         }
  327.         if (!m_fpH263Transform)
  328.         {
  329.             m_fpH263Transform = (FPTRANSFORMHXV10TOYUV) m_pCodecAccess->getSymbol("HXVtoYUV420Transform");
  330.         }
  331.         if (m_fpH263Init == NULL ||
  332.             m_fpH263Free == NULL ||
  333.             m_fpH263Transform == NULL)
  334.         {
  335.             bReturn = FALSE;
  336.         }
  337.     }
  338.     return bReturn;
  339. }