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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: miniopenwavesurf.cpp,v 1.7.12.1 2004/07/09 01:59:07 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 "minisite.h"
  50. #include "hxvsurf.h"
  51. #include "ciddefs.h"
  52. #include "miniopenwavesurf.h"
  53. #include "miniopenwavesite.h"
  54. #include "opwindow.h"
  55. CMiniOpenwaveSurface::CMiniOpenwaveSurface(IUnknown* pContext, CMiniBaseSite* pSite)
  56.     :  CMiniBaseSurface(pContext, pSite)
  57. ,  m_nCompositionSize(0)
  58. ,  m_nCompositionPitch(0)
  59.     ,  m_pCompositionSurface(NULL)
  60.     ,  m_ulTotalFramesBlted(0)
  61. ,  m_cidIn(-1)
  62. ,  m_cidOut(-1)
  63. {
  64. }
  65. CMiniOpenwaveSurface::~CMiniOpenwaveSurface()
  66. {
  67. HX_FREE(m_pCompositionSurface);
  68. m_nCompositionSize  = 0;
  69.     m_nCompositionPitch = 0;
  70. memset(&m_surfaceSize, 0, sizeof( m_surfaceSize ) );
  71. }
  72. HX_RESULT CMiniOpenwaveSurface::_CreateDestBuffer( int cidIn,
  73.                                                   int nWidth,
  74.                                                   int nHeight,
  75.                                                   int& nCount)
  76. {
  77.     HX_RESULT res = HXR_OK;
  78. HX_ASSERT( m_pSite );
  79.     //For now, we only support RGB32
  80.     HX_ASSERT( cidIn == CID_I420 );
  81. m_cidIn = cidIn;
  82. m_cidOut = CID_RGB565;
  83. int sc, sw, sh;
  84. COpWindow *pOpWin = ((CHXOpenwaveSite*)m_pSite)->GetOpWindow();
  85. /// color info has to be converted to something both sides understand
  86. /// for now it is hard coded
  87. pOpWin->GetScreenInfo(sc, sw, sh);
  88. ((CHXOpenwaveSite*)m_pSite)->_SetScreenSize(sw, sh);
  89. /// if the site's default size is bigger than the image
  90. /// then make site fit the image instead of scaling the 
  91. /// image to fit the site
  92. if (nWidth < sw)
  93. {
  94. sw = nWidth;
  95. }
  96. if (nHeight < sh)
  97. {
  98. sh = nHeight;
  99. }
  100. HXxSize newScreenSize = {sw, sh};
  101. /// since we are sue sw <= nWidth and sh <= nHeight
  102. /// now let us do the scaling down to preserve the proportion of 
  103. /// original image, nWidth:nHeight
  104. float hr = (float)sh/(float)nHeight;
  105. float wr = (float)sw/(float)nWidth;
  106. if (hr < 1.0 && wr < 1.0)
  107. {
  108. if (hr < wr)
  109. {
  110. newScreenSize.cx = sh*nWidth/nHeight;
  111. newScreenSize.cy = sh;
  112. }
  113. else
  114. {
  115. newScreenSize.cx = sw;
  116. newScreenSize.cy = sw*nHeight/nWidth;
  117. }
  118. }
  119. /// color info has to be converted to something both sides understand
  120. /// for now it is hard coded
  121. pOpWin->SetImageInfo(m_cidOut, newScreenSize.cx, newScreenSize.cy);
  122. m_pSite->SetSize(newScreenSize);
  123. //Get the size of this site.
  124.     m_pSite->GetSize(m_surfaceSize);
  125.     //Malloc the room to hold the actual bits.
  126.     HXBitmapInfo bmiTemp;
  127.     m_pImageHelper->MakeBitmap( &bmiTemp,
  128.                                 sizeof(bmiTemp),
  129.                                 m_cidOut,
  130.                                 m_surfaceSize.cx,
  131.                                 m_surfaceSize.cy,
  132.                                 NULL,
  133.                                 0);
  134.     
  135.     m_nCompositionPitch = m_pImageHelper->GetBitmapPitch(&bmiTemp);
  136.     int imageSize = bmiTemp.bmiHeader.biSizeImage;
  137.     _ResizeVideoBuffer(imageSize);
  138.     HX_ASSERT( m_pImageHelper->GetBitmapColor(&bmiTemp) == m_cidOut );
  139.     return res;
  140. }
  141. HX_RESULT CMiniOpenwaveSurface::_ResizeVideoBuffer( INT32 nSize)
  142. {
  143.     HX_RESULT retVal=HXR_OK;
  144.     //XXXgfw. Trade off here. We can use lots of mem if we just return and
  145.     //the user has scaled the image up very much and then goes back down.
  146.     //If we don't just return we can do tons and tons of mallocs. Maybe we
  147.     //should add a timed callback to reclaim some of this mem after a few
  148.     //seconds.
  149.     if(nSize <= (INT32)m_nCompositionSize)
  150.         return retVal;
  151.     if(m_pCompositionSurface == NULL)
  152.     {
  153.         m_pCompositionSurface = (UCHAR*) malloc(nSize);
  154.     }
  155.     else
  156.     {
  157.         m_pCompositionSurface = (UCHAR*) realloc(m_pCompositionSurface, nSize);
  158.     }
  159.     if( m_pCompositionSurface )
  160.     {
  161.         m_nCompositionSize = nSize;
  162.     }
  163.     else
  164.     {
  165.         HX_ASSERT("We can't alloc the composition surface." == NULL );
  166.         m_nCompositionSize = 0;
  167.     }
  168.     return retVal;
  169. }
  170.          
  171. HX_RESULT CMiniOpenwaveSurface::_LockDestBuffer( UCHAR** ppDestPtr,
  172.                                                 LONG32* pnDestPitch,
  173.                                                 int& cid,
  174.                                                 REF(HXxSize) srcSize,
  175.                                                 int nIndex)
  176. {
  177.     HX_RESULT res = HXR_OK;
  178. *ppDestPtr = m_pCompositionSurface;
  179.     *pnDestPitch = m_nCompositionPitch;
  180.     cid = m_cidOut;
  181.     
  182.     return res;
  183. }
  184.          
  185. HX_RESULT CMiniOpenwaveSurface::_TransferToDestBuffer( UCHAR*   pSrcBuffer,
  186.                                                       HXBitmapInfoHeader* pBitmapInfo,
  187.                                                       HXxRect* prSrcRect,
  188.                                                       HXxRect* prDstRect,
  189.                                                       UCHAR*   pDstBuffer,
  190.                                                       LONG32   nDstPitch)
  191. {
  192.     HX_RESULT res = HXR_OK;
  193.     //XXXGfw when we really have a buffer to color convert to we
  194.     //can uncomment this....
  195. BOOL bTransfer = FALSE;
  196. UCHAR* pOutBuffer = pSrcBuffer;
  197. if ((prSrcRect != prDstRect) || (m_cidIn != m_cidOut))
  198. {
  199. bTransfer = TRUE;
  200. }
  201. // First do the transfer if it needed
  202. if (bTransfer)
  203. {
  204. res =  CMiniBaseSurface::_TransferToDestBuffer( pSrcBuffer,
  205.                                              pBitmapInfo,
  206.                                          prSrcRect,
  207.                                      prDstRect,
  208.                                  pDstBuffer,
  209.                              nDstPitch);
  210. if (SUCCEEDED(res))
  211. {
  212. pOutBuffer = pDstBuffer;
  213. }
  214. }
  215.     
  216. // Simply set the source buffer back to TLC's window object
  217. // and invalidate the window for drawing to happen 
  218. // in the next event loop
  219. COpWindow *pOpWin = ((CHXOpenwaveSite*)m_pSite)->GetOpWindow();
  220. pOpWin->SetImageSource(pOutBuffer);
  221. pOpWin->Invalidate();
  222.     return res;
  223. }
  224.          
  225. HX_RESULT CMiniOpenwaveSurface::_UnlockDestBuffer(UCHAR* pSurfPtr, int nIndex)
  226. {
  227.     //Nothing to do here for Openwave.....
  228.     return HXR_OK;
  229. }
  230.          
  231. HX_RESULT CMiniOpenwaveSurface::_RenderDestBuffer(HXxRect* prSrcRect,
  232.                                                   HXxRect* prDestRect,
  233.                                                   int nIndex)
  234. {
  235.     HX_RESULT res = HXR_OK;
  236. // Since we already invalidated the window in the _TransferToDstBuffer which
  237. // will render the frame, so nothing to do here but simply
  238.     // output a message here about how many frames we have seen...
  239.     m_ulTotalFramesBlted++;
  240. #ifdef _DEBUG
  241. fprintf(stderr, "CMiniOpenwaveSurface: m_ulTotalFramesBlted: m_ulTotalFramesBltedn");
  242. #endif
  243.     
  244.     return res;
  245. }
  246.          
  247. HX_RESULT CMiniOpenwaveSurface::_DestroyDestBuffer(int cid, int nCount)
  248. {
  249. HX_FREE(m_pCompositionSurface);
  250.     m_nCompositionSize  = 0;
  251.     m_nCompositionPitch = 0;
  252.     memset(&m_surfaceSize, 0, sizeof( m_surfaceSize ) );
  253.     
  254.     return HXR_OK;
  255. }
  256. HX_RESULT CMiniOpenwaveSurface::_init()
  257. {
  258.    return HXR_OK;
  259. }
  260. int CMiniOpenwaveSurface::GetDstCID(int nIndex)
  261. {
  262.     //right hard coded, but should use GetScreenInfo call to set
  263. // it correctly
  264.     return m_cidOut;
  265. }