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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: hxcinst.cpp,v 1.4.10.1 2004/07/09 01:56:06 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 "hxvamain.h"
  50. #include "hvenc.h"
  51. #include "h261defs.h"
  52. #include "hvscodes.h"
  53. #include "hxcinst.h"
  54. #include "h263codecf.h"
  55. #include "memory.h"
  56. #ifdef _MACINTOSH
  57. #include <string.h> // for memcpy
  58. #endif
  59. #ifdef __cplusplus
  60. extern "C" {
  61. #endif
  62. /* Function Protos      */
  63. U32 VvOpenDecoder ( S16 format );
  64. U32 VvGetDecoderPtr ( S16 index );
  65. U32 VvDecode ( S16 index, U32 PBframeCap, PICTURE_DESCR* picdesc,
  66.                           U32 bsStart, U32 bsEnd, S16* nextGOB, PICTURE* newPic, 
  67.                           VvDecoderStats* status, U32 newBs );
  68.               
  69. U32 VvCloseDecoder (S16 index );
  70. U32 VvDecGetMBMap ( S16 index, U32 mapType, U32 outMap );
  71. }
  72. ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  73. inline DWORD WIDTHBYTES(DWORD bits) 
  74. {
  75.     return (((bits) + 31) / 32 * 4);
  76. }
  77. ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  78. inline DWORD ROUNDTO16(DWORD a) 
  79. {
  80.     return ((a+15)>>4)<<4;
  81. }
  82. ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  83. inline BOOL IsOpenDecoder(S16 hDecoder)
  84. {
  85.     return 1<=hDecoder && hDecoder<=MAX_NUM_DECODERS;
  86. }
  87. ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  88. inline void MarkDecoderClosed(S16& hDecoder)
  89. {
  90.     hDecoder = MAX_NUM_DECODERS+1;
  91. }
  92. ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  93. inline U32 BITNUM(VvBitIndex q) 
  94. {
  95.     return ((((q).l >> 13) &0x7FFF8) + ((q).l&7));
  96. }
  97. ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  98. inline U32 BITSDIFF(VvBitIndex start,VvBitIndex finish) 
  99. {
  100.     return (BITNUM(finish)-BITNUM(start));
  101. }
  102. ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  103. inline U32 BYTESDIFF(VvBitIndex start,VvBitIndex finish)
  104. {
  105.     return (BITSDIFF(start,finish) + 7) >> 3;
  106. }
  107. const S16 HXH263CodecInstance::capsCIF(CIF);
  108. const U32 HXH263CodecInstance::effFactor(56);
  109. const U32 HXH263CodecInstance::h263MaxInterFrames(31);
  110. const U32 HXH263CodecInstance::bogusId(1);
  111. const U32 HXH263CodecInstance::cifHeight(288);
  112. const U32 HXH263CodecInstance::cifWidth(352);
  113. const U32 HXH263CodecInstance::qcifHeight(144);
  114. const U32 HXH263CodecInstance::qcifWidth(176);
  115. const U32 HXH263CodecInstance::sqcifHeight(96);
  116. const U32 HXH263CodecInstance::sqcifWidth(128);
  117. ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  118. HXH263CodecInstance::HXH263CodecInstance() :
  119. m_fccType(0),
  120. m_openFlags(0),
  121. m_vcmVersion(0),
  122. m_lpDecoderPtr(NULL)
  123. {
  124.     MarkDecoderClosed(m_hDecoder);
  125. }
  126. BOOL HXH263CodecInstance::Initialize(void)
  127. {
  128.     // make sure we're being opened as a video compressor
  129.     m_fccType = 1;
  130.     m_openFlags = 0;
  131.     m_vcmVersion = 1;
  132.     return TRUE;
  133. }
  134.     
  135. ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  136. HX_RESULT HXH263CodecInstance::DecompressStart( 
  137. const HXVA_Image_Format &srcFormat,
  138. HXVA_Image_Format &dstFormat
  139. )
  140. {
  141.     // Somebody called start without end
  142.     //if(IsOpenDecoder(m_hDecoder)) 
  143. // DecompressEnd();
  144.     
  145.     // open decoder with CIF capabilities
  146.     // FIX: must check for success here
  147.     m_hDecoder = (S16) VvOpenDecoder(capsCIF); 
  148.     
  149.     if(m_hDecoder > MAX_NUM_DECODERS)     {
  150.         MarkDecoderClosed(m_hDecoder);
  151.         return HXR_OUTOFMEMORY;
  152.     }
  153.     
  154.     // Initialize picture descriptor
  155.     m_PicDesc.rows = ROUNDTO16(srcFormat.dimensions.height);
  156.     m_PicDesc.cols = ROUNDTO16(srcFormat.dimensions.width);
  157.     // Initialize the output picture
  158.     m_PicOut.picLayout = VIVO_YUV12;
  159.     m_PicOut.color = 1;
  160.     // initialize remaining decoder state
  161.     m_nextGob = 0;
  162.     // Grab the decoder pointer
  163.     m_lpDecoderPtr = (LPBYTE) VvGetDecoderPtr(m_hDecoder);
  164.     if(m_lpDecoderPtr==NULL)    {
  165.         DecompressEnd();
  166.         return HXR_OUTOFMEMORY;
  167.     }
  168.     return HXR_OK;
  169. }
  170. ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  171. HX_RESULT HXH263CodecInstance::DecompressEnd()
  172. {
  173.     if(IsOpenDecoder(m_hDecoder)) 
  174. VvCloseDecoder(m_hDecoder);
  175.     MarkDecoderClosed(m_hDecoder);
  176.     m_lpDecoderPtr = NULL;
  177.     return HXR_OK;
  178. }
  179. ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  180. HX_RESULT HXH263CodecInstance::DecompressConvert(
  181. const HXVA_Image &src,
  182. HXVA_Image &dst
  183. )
  184. {
  185.     static U32 EOS(0x00FC0000);
  186.     // Cool, the NetShow player seems to send ICM_DECOMPRESS_CONVERT before
  187.     // sending ICM_DECOMPRESS_BEGIN (at least sometimes!)
  188.     if(!IsOpenDecoder(m_hDecoder)) 
  189.  DecompressStart(src.format, dst.format);
  190.     VvBitIndex begin,end,ret;
  191.     // if biSizeImage == 1 it means we have the second half of a PB frame; set it to 0 and decode
  192.     //if(lpDEX->lpbiSrc->biSizeImage == 1) 
  193. // lpDEX->lpbiSrc->biSizeImage = 0;
  194.     begin.l = 0;
  195.     end.ww.byte = (U16)(src.size) + 4; // make room for EOS
  196.     end.l = end.ww.byte * 8 + 1;
  197.     U32 result = 1;
  198.     
  199.     // copy the incoming data to the decoder buffer
  200.     LPBYTE lpData = GetDecoderPtr(); 
  201.     U32 *lpEOS = &EOS; // WIN16 days r over
  202. if(!lpData) {//decoder was obviously closed already
  203. return HXR_FAIL;
  204. }
  205.     memcpy(lpData, src.GetBasePointer(), src.size); /* Flawfinder: ignore */
  206.     memcpy(lpData+(int)src.size, lpEOS, 4); /* Flawfinder: ignore */
  207.     static const U32 PBFrameCap(1);
  208.     
  209.     m_PicDesc.decodingInProgress = FALSE;
  210.     PICTURE *lpPicOut = &m_PicOut;
  211.     PICTURE_DESCR *lpPicDesc = &m_PicDesc;
  212.     S16 *lpNextGob = &m_nextGob;
  213.     VvDecoderStats *lpDecoderStats = &m_DecoderStats;
  214.     VvBitIndex *lpRet = &ret;
  215.     do  {
  216.         result = 
  217.         VvDecode ( m_hDecoder,          // decoder index
  218.             PBFrameCap,                 // reconstruct B frames
  219.             lpPicDesc,            // frame data
  220.             (U32) begin.l,          // first bit to decode
  221.             (U32) end.l,                // last bit (+1) to decode
  222.             lpNextGob,            // next gob to process
  223.             lpPicOut,         // pointer to output pix
  224.             lpDecoderStats,   // pointer to stats block
  225.             (U32) lpRet );              // pos of first bit
  226.     }
  227.     while(m_PicDesc.decodingInProgress);
  228.     // copy decoded frame to the destination buffer
  229. // YUV Do something..
  230. unsigned char* pDst = (unsigned char*)dst.GetBasePointer();
  231. S32 lumaHeight = dst.format.dimensions.height;
  232.     S32 chromaHeight = (lumaHeight+1)>1;
  233.     // Now turn YUV pointers upside down before passing to DoRGB16
  234.     unsigned char* pY = m_PicOut.y.ptr;
  235.     unsigned char* pCr = m_PicOut.cr.ptr;
  236.     unsigned char* pCb = m_PicOut.cb.ptr;
  237.     int yOffset = m_PicOut.y.hoffset;
  238.     int crOffset = m_PicOut.cr.hoffset;
  239.     int cbOffset = m_PicOut.cb.hoffset;
  240. int chromaLines = m_PicOut.cb.nvert;
  241. int chromaBytes = m_PicOut.cb.nhor;
  242. int memsz = lumaHeight*yOffset;
  243. if(m_PicOut.picLayout == VVS_LAYOUT_YUV12) memsz += (memsz>>1);
  244. memcpy(pDst, pY, memsz); /* Flawfinder: ignore */
  245. if(m_PicOut.picLayout == VVS_LAYOUT_TEE) 
  246. {
  247. // optimised layout for color conversion.
  248. pDst += lumaHeight*yOffset;
  249. unsigned char * pDst2 = pDst+(chromaLines*chromaBytes);
  250. for(int i=0;i<chromaLines;i++)
  251. {
  252. memcpy(pDst2, pCr, chromaBytes); /* Flawfinder: ignore */
  253. memcpy(pDst, pCb, chromaBytes); /* Flawfinder: ignore */
  254. pCr+=crOffset;
  255. pCb+=cbOffset;
  256. pDst+=chromaBytes;
  257. pDst2+=chromaBytes;
  258. }
  259. }
  260.     return HXR_OK;
  261. }
  262. ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  263. HX_RESULT HXH263CodecInstance::DecompressVerifyParams(void)
  264. {
  265.     return HXR_OK;
  266. }
  267.     
  268. ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  269. HX_RESULT HXH263CodecInstance::DecompressGetOutputFormat( void)
  270. {
  271.     return HXR_OK;
  272. }