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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: munixsurf.cpp,v 1.5.4.1 2004/07/09 01:59:14 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 "coloracc.h"
  52. #include "minisurf.h"
  53. #include "munixsurf.h"
  54. #include "minifmt.h"
  55. CMiniUnixSurface::CMiniUnixSurface(IUnknown* pContext, CMiniBaseSite* pSite)
  56.     :  CMiniBaseSurface(pContext, pSite)
  57.     , m_pDisplay(NULL)
  58.     , m_GC(0)
  59.     , m_nScreenNumber(0)
  60.     , m_pXImage(NULL)
  61.     , m_pVisual(NULL)
  62.     , m_unDepth(0)
  63.     , m_pScreen(NULL)
  64.     , m_nBitsPerPixel(0)
  65.     , m_nCompositionSize(0)
  66.     , m_pCompositionSurface(NULL)
  67. {
  68. }
  69. CMiniUnixSurface::~CMiniUnixSurface()
  70. {
  71.     if( m_GC )
  72.     {
  73.         XFreeGC( m_pDisplay, m_GC );
  74.         m_GC=0;
  75.     }
  76.     if( m_pXImage )
  77.     {
  78.         XFree(m_pXImage);
  79.         m_pXImage = NULL;
  80.     }
  81.     HX_FREE(m_pCompositionSurface);
  82.     m_nCompositionSize  = 0;
  83.     m_nCompositionPitch = 0;
  84.     memset(&m_surfaceSize, 0, sizeof( m_surfaceSize ) );
  85. }
  86. HX_RESULT CMiniUnixSurface::_CreateDestBuffer(int cidIn,
  87.                                               int nWidth,
  88.                                               int nHeight,
  89.                                               int& nCount)
  90. {
  91.     HX_ASSERT( m_pSite );
  92.     HX_ASSERT( m_pDisplay );
  93.     HX_ASSERT( m_pVisual );
  94.     HX_ASSERT( m_unDepth );
  95.     //For now, we just support RGB32
  96.     HX_ASSERT( cidIn == CID_I420 );
  97.     
  98.     if( m_pXImage )
  99.     {
  100.         XFree( m_pXImage );
  101.     }
  102.     //Get the size of this site.
  103.     m_pSite->GetSize(m_surfaceSize);
  104.     //Malloc the room to hold the actual bits.
  105.     HXBitmapInfo bmiTemp;
  106.     m_pImageHelper->MakeBitmap( &bmiTemp,
  107.                                 sizeof(bmiTemp),
  108.                                 CID_RGB32,
  109.                                 m_surfaceSize.cx,
  110.                                 m_surfaceSize.cy,
  111.                                 NULL,
  112.                                 0);
  113.     
  114.     m_nCompositionPitch = m_pImageHelper->GetBitmapPitch(&bmiTemp);
  115.     int imageSize = bmiTemp.bmiHeader.biSizeImage;
  116.     _ResizeVideoBuffer(imageSize);
  117.     HX_ASSERT( m_pImageHelper->GetBitmapColor(&bmiTemp) == CID_RGB32 );
  118.     //Create our RGB dest image here.
  119.     m_pXImage  = XCreateImage( m_pDisplay,
  120.                                m_pVisual,
  121.                                m_unDepth, //Remember, it better be 32bits in this example site.
  122.                                ZPixmap,
  123.                                0,
  124.                                (char*)m_pCompositionSurface,
  125.                                m_surfaceSize.cx,
  126.                                m_surfaceSize.cy,
  127.                                32,
  128.                                0);
  129.     
  130.     return HXR_OK;
  131. }
  132.          
  133. HX_RESULT CMiniUnixSurface::_LockDestBuffer(UCHAR** ppDestPtr,
  134.                                             LONG32* pnDestPitch,
  135.                                             int& cid,
  136.                                             REF(HXxSize) srcSize,
  137.                                             int nIndex)
  138. {
  139.     *ppDestPtr = m_pCompositionSurface;
  140.     *pnDestPitch = m_nCompositionPitch;
  141.     cid = CID_RGB32;
  142.     
  143.     return HXR_OK;
  144. }
  145.          
  146. HX_RESULT CMiniUnixSurface::_TransferToDestBuffer(UCHAR* pSrcBuffer,
  147.                                                   HXBitmapInfoHeader* pBitmapInfo,
  148.                                                   HXxRect* prSrcRect,
  149.                                                   HXxRect* prDstRect,
  150.                                                   UCHAR* pDstBuffer,
  151.                                                   LONG32 nDstPitch)
  152. {
  153.     HX_RESULT res = HXR_OK;
  154.     int nCidIn = m_pImageHelper->GetBitmapColor( (HXBitmapInfo*)pBitmapInfo );
  155.     //This minisite, as written, is just doing a blind I420->RGB32
  156.     //color convert. Feel free to add whatever you want...
  157.     HX_ASSERT( nCidIn == CID_I420 );
  158.     if( nCidIn == CID_I420 )
  159.     {
  160.         //This calls the m_fpColorConverter init'ed in the base class.
  161.         res =  CMiniBaseSurface::_TransferToDestBuffer(pSrcBuffer,
  162.                                                        pBitmapInfo,
  163.                                                        prSrcRect,
  164.                                                        prDstRect,
  165.                                                        pDstBuffer,
  166.                                                        nDstPitch);
  167.     }
  168.  
  169.     return res;
  170. }
  171.          
  172. HX_RESULT CMiniUnixSurface::_UnlockDestBuffer(UCHAR* pSurfPtr, int nIndex)
  173. {
  174.     return HXR_OK;
  175. }
  176.          
  177. HX_RESULT CMiniUnixSurface::_RenderDestBuffer(HXxRect* prSrcRect,
  178.                                               HXxRect* prDestRect,
  179.                                               int nIndex)
  180. {
  181.     int i = XPutImage(m_pDisplay,
  182.                       m_window,
  183.                       m_GC,
  184.                       m_pXImage,
  185.                       prSrcRect->left, 
  186.                       prSrcRect->top,
  187.                       prDestRect->left,
  188.                       prDestRect->top,
  189.                       prDestRect->right - prDestRect->left,      
  190.                       prDestRect->bottom - prDestRect->top);
  191.     
  192.     return HXR_OK;
  193. }
  194.          
  195. HX_RESULT CMiniUnixSurface::_DestroyDestBuffer(int cid, int nCount)
  196. {
  197.     if( m_pXImage )
  198.     {
  199.         XFree(m_pXImage);
  200.         m_pXImage = NULL;
  201.     }
  202.     HX_FREE(m_pCompositionSurface);
  203.     m_nCompositionSize  = 0;
  204.     m_nCompositionPitch = 0;
  205.     memset(&m_surfaceSize, 0, sizeof( m_surfaceSize ) );
  206.     
  207.     return HXR_OK;
  208. }
  209. int CMiniUnixSurface::GetDstCID(int nIndex)
  210. {
  211.     //Right now the mini site just always outputs in RGB32. 
  212.     return CID_RGB32;
  213. }
  214. HX_RESULT CMiniUnixSurface::_ResizeVideoBuffer( INT32 nSize)
  215. {
  216.     HX_RESULT retVal=HXR_OK;
  217.     //XXXgfw. Trade off here. We can use lots of mem if we just return and
  218.     //the user has scaled the image up very much and then goes back down.
  219.     //If we don't just return we can do tons and tons of mallocs. Maybe we
  220.     //should add a timed callback to reclaim some of this mem after a few
  221.     //seconds.
  222.     if(nSize <= m_nCompositionSize)
  223.         return retVal;
  224.     if(m_pCompositionSurface == NULL)
  225.     {
  226.         m_pCompositionSurface = (UCHAR*) malloc(nSize);
  227.     }
  228.     else
  229.     {
  230.         m_pCompositionSurface = (UCHAR*) realloc(m_pCompositionSurface, nSize);
  231.     }
  232.     if( m_pCompositionSurface )
  233.     {
  234.         m_nCompositionSize = nSize;
  235.     }
  236.     else
  237.     {
  238.         HX_ASSERT("We can't alloc the composition surface." == NULL );
  239.         m_nCompositionSize = 0;
  240.     }
  241.     return retVal;
  242. }
  243. HX_RESULT CMiniUnixSurface::_init()
  244. {
  245.    //get window and display from main Site.
  246.    HXxWindow* pWindow = m_pSite->GetWindow();
  247.    HX_ASSERT(pWindow);
  248.    m_pDisplay = (Display*)pWindow->display;
  249.    m_window   = (Window)pWindow->window;
  250.     
  251.    HX_ASSERT( m_pDisplay );
  252.    HX_ASSERT( m_window );
  253.    //
  254.    // Now see if our X11 server supports the Shared Memory extension.
  255.    //
  256.    //XXXgfw not supported in the mini site for size.
  257.    //ShmHelp::Init(m_pDisplay);
  258.    //m_bUseShm = ShmHelp::ShmAvailable();
  259.    
  260.    //Create the graphics context 
  261.    XGCValues values;
  262.    m_GC = XCreateGC(m_pDisplay, m_window, 0, &values);
  263.     //Get X window attributes & visual
  264.    XWindowAttributes attr;
  265.    XGetWindowAttributes(m_pDisplay, m_window, &attr);
  266.    m_pVisual = attr.visual;
  267.    // get visual info & depth 
  268.    int nv=0;
  269.    XVisualInfo visInfo;
  270.    memset(&visInfo, 0, sizeof(XVisualInfo));
  271.    visInfo.visualid = XVisualIDFromVisual(m_pVisual);
  272.    XVisualInfo* pVisualInfo = XGetVisualInfo (m_pDisplay, VisualIDMask, &visInfo, &nv);
  273.    m_unDepth       = pVisualInfo->depth;
  274.    m_nScreenNumber = DefaultScreen(m_pDisplay);
  275.    m_pScreen       = XScreenOfDisplay(m_pDisplay, m_nScreenNumber);
  276.    XFree( pVisualInfo );
  277.    return HXR_OK;
  278. }