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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: macyuvblt.cpp,v 1.1.1.1.42.1 2004/07/09 01:59:02 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 "hxcom.h"
  50. #include "hxtypes.h"
  51. #include "hxwintyp.h"
  52. #include "hxvsurf.h"
  53. #include "colormap.h"
  54. #include "macyuvblt.h"
  55. CMacYUVBlt::CMacYUVBlt()
  56.  :  CMacBlt()
  57.  , m_Window(NULL)
  58.  , m_ImageDescriptionHandle(NULL)
  59.  , m_SequenceID(NULL)
  60.  , m_nOverlaySourceWidth(0)
  61.  , m_nOverlaySourceHeight(0)
  62.  , m_nOverlayRowBytes(0)
  63.  , m_nOverlayBufferSize(0)
  64.  , m_pOverlayBuf(NULL)
  65. {
  66.     m_OverlayScreenRect.left = 0;
  67.     m_OverlayScreenRect.top = 0;
  68.     m_OverlayScreenRect.right = 0;
  69.     m_OverlayScreenRect.bottom = 0;
  70. }
  71. CMacYUVBlt::~CMacYUVBlt()
  72. {
  73.     DestroySurface(0);
  74. }
  75. HX_RESULT CMacYUVBlt::CreateSurface(int cidIn, int& cidOut,
  76.                                  int nWidth, int nHeight,
  77.                                  int nFlags, HWND hWnd,
  78.                                  int nCountIn, int& nCountOut)
  79. {
  80.     // xxxbobclark
  81.     // I think the CreateSurface/DestroySurface pair only care about the
  82.     // "source" parameters. I'll have to maintain the screen output more
  83.     // myself. So -- again, in theory -- I should be able to set up the
  84.     // member variables that get passed "outside" here and in DestroySurface
  85.     // -- variables like m_nOverlayRowBytes, m_nOverlayBufferSize, and
  86.     // m_pOverlayBuf.
  87.     //
  88.     // Then we'll monitor ourselves and notice when we need to destroy and
  89.     // construct the actual image sequence (overlay).
  90. #if defined (HELIX_FEATURE_CC_YUY2out)
  91.     m_nCID = CID_YUY2;
  92. #endif
  93.     
  94.     cidOut = m_nCID;
  95.     
  96.     m_Window = (WindowPtr)hWnd;
  97.     
  98.     // xxxbobclark OK there needs to be a slight architectural change here
  99.     // I'm afraid. We used to construct the sequence and the overlay buffer,
  100.     // buffer size, and overlay row bytes all at the same time.
  101.     //
  102.     // But now we need to know the buffer/size/rowbytes BEFORE we know what
  103.     // the location is going to be. So we'll figure those out "by hand"
  104.     // and not at blit time
  105.     
  106.     m_nOverlaySourceWidth = nWidth;
  107.     m_nOverlaySourceHeight = nHeight;
  108.     _CreateYUVBuffer();
  109.     return HXR_OK;
  110. }
  111. HX_RESULT CMacYUVBlt::LockSurface(UCHAR** ppDestPtr,
  112.                               LONG32* pnDestPitch,
  113.                               int& cid,
  114.                               REF(HXxSize) srcSize,
  115.                               int nIndex)
  116. {
  117.     *ppDestPtr = (UCHAR*) m_pOverlayBuf;
  118.     *pnDestPitch = m_nOverlayRowBytes;
  119.     cid = CID_YUY2;
  120.     return HXR_OK;
  121. }
  122. HX_RESULT CMacYUVBlt::FillSurface(int cidIn,
  123.                                UCHAR* pSrcBuffer,
  124.                                HXxSize* pSrcSize,
  125.                                HXxRect* prSrcRect,
  126.                                UCHAR* pDstBuffer,
  127.                                LONG32 nDstPitch,
  128.                                HXxRect* prDestRect)
  129. {
  130.     
  131.     return HXR_NOTIMPL;
  132. }
  133. HX_RESULT CMacYUVBlt::UnlockSurface(UCHAR* pSurfPtr, int nIndex)
  134. {
  135.     return HXR_OK;
  136. }
  137. HX_RESULT CMacYUVBlt::RenderSurface(HXxSize* pSrcSize,
  138.                                  HXxRect* prSrcRect,
  139.                                  HXxRect* prDestRect,
  140.                                  int nIndex)
  141. {
  142.     if (m_OverlayScreenRect != *prDestRect)
  143.     {
  144. if (m_SequenceID)
  145. {
  146.     _CleanUpOverlay();
  147. }
  148. if (!m_SequenceID)
  149. {
  150.     _CreateOverlay(prDestRect->left, prDestRect->top, prDestRect->right-prDestRect->left, prDestRect->bottom-prDestRect->top);
  151. }
  152.     }
  153.     GrafPtr savePort;
  154.     ::GetPort( &savePort );
  155.     GrafPtr theWindowPort = ::GetWindowPort( m_Window );
  156.     ::SetPort( theWindowPort );
  157.     
  158.     DecompressSequenceFrameWhen(
  159. m_SequenceID,
  160. (Ptr)m_pOverlayBuf, m_nOverlayBufferSize,
  161. 0, // flags
  162. nil,
  163. nil,
  164. nil);
  165.     
  166.     ::SetPort( savePort );
  167.     
  168.     return HXR_OK;
  169. }
  170. HX_RESULT CMacYUVBlt::DestroySurface(int cid)
  171. {
  172.     return HXR_OK;
  173. }
  174. void CMacYUVBlt::_CreateYUVBuffer()
  175. {
  176.     m_nOverlayRowBytes = m_nOverlaySourceWidth * 2;
  177.     m_nOverlayBufferSize = m_nOverlaySourceHeight * m_nOverlayRowBytes;
  178.     m_pOverlayBuf = ::NewPtr( m_nOverlayBufferSize );
  179. }
  180. void CMacYUVBlt::_CreateOverlay(long screenCoorX, long screenCoorY, long screenWidth, long screenHeight)
  181. {
  182.     ComponentDescription cd;
  183.     Component c = NULL;
  184.     Component foundComponent = NULL;
  185.     cd.componentType = 'imdc';
  186.     cd.componentSubType = 'yuvs';
  187.     cd.componentManufacturer = 'RNWK';
  188.     cd.componentFlags = 0;
  189.     cd.componentFlagsMask = 0;
  190.     
  191.     while ((c = FindNextComponent(c, &cd)) != 0)
  192.     {
  193. foundComponent = c;
  194. break;
  195.     }
  196.     // this chunk o' code assumes local coordinates.
  197.     Rect srcR, dstR;
  198.     srcR.left = 0;
  199.     srcR.top = 0;
  200.     srcR.right = m_nOverlaySourceWidth;
  201.     srcR.bottom = m_nOverlaySourceHeight;
  202.     m_OverlayScreenRect.left = screenCoorX;
  203.     m_OverlayScreenRect.top = screenCoorY;
  204.     m_OverlayScreenRect.right = screenCoorX + screenWidth;
  205.     m_OverlayScreenRect.bottom = screenCoorY + screenHeight;
  206.     
  207.     dstR.left = m_OverlayScreenRect.left;
  208.     dstR.top = m_OverlayScreenRect.top;
  209.     dstR.right = m_OverlayScreenRect.right;
  210.     dstR.bottom = m_OverlayScreenRect.bottom;
  211.     m_ImageDescriptionHandle = (ImageDescriptionHandle)NewHandleClear(sizeof(ImageDescription));
  212.     (**m_ImageDescriptionHandle).idSize = sizeof(ImageDescription);
  213.     (**m_ImageDescriptionHandle).cType = 'yuvs';
  214.     (**m_ImageDescriptionHandle).width = srcR.right-srcR.left;
  215.     (**m_ImageDescriptionHandle).height = srcR.bottom-srcR.top;
  216.     (**m_ImageDescriptionHandle).hRes = 72L << 16;
  217.     (**m_ImageDescriptionHandle).vRes = 72L << 16;
  218.     (**m_ImageDescriptionHandle).frameCount = 1;
  219.     (**m_ImageDescriptionHandle).clutID = -1;
  220.     MatrixRecord matrix;
  221.     RectMatrix(&matrix, &srcR, &dstR);
  222.     OSErr err = DecompressSequenceBeginS(
  223. &m_SequenceID,
  224. m_ImageDescriptionHandle,
  225. nil, 0, // data pointer and data length
  226. nil, // use the current port
  227. nil, // go to screen
  228. &srcR,
  229. &matrix,
  230. ditherCopy,
  231. nil,
  232. codecFlagUseImageBuffer,
  233. codecNormalQuality,
  234. foundComponent);
  235. }
  236. void CMacYUVBlt::_CleanUpOverlay()
  237. {
  238.     CDSequenceEnd(m_SequenceID);
  239.     m_SequenceID = NULL;
  240.     DisposePtr((Ptr)m_pOverlayBuf);
  241.     m_pOverlayBuf = nil;
  242.     m_nOverlayRowBytes = 0;
  243.     m_nOverlayBufferSize = 0;
  244.     DisposeHandle((Handle)m_ImageDescriptionHandle);
  245.     m_ImageDescriptionHandle = NULL;
  246. }