linux_fb_surf.cpp
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:10k
源码类别:

Symbian

开发平台:

C/C++

  1. /* ***** BEGIN LICENSE BLOCK ***** 
  2.  * Version: RCSL 1.0/RPSL 1.0 
  3.  *  
  4.  * Portions Copyright (c) 1995-2003 RealNetworks, Inc. All Rights Reserved. 
  5.  *      
  6.  * The contents of this file, and the files included with this file, are 
  7.  * subject to the current version of the RealNetworks Public Source License 
  8.  * Version 1.0 (the "RPSL") available at 
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed 
  10.  * the file under the RealNetworks Community Source License Version 1.0 
  11.  * (the "RCSL") available at http://www.helixcommunity.org/content/rcsl, 
  12.  * in which case the RCSL will apply. You may also obtain the license terms 
  13.  * directly from RealNetworks.  You may not use this file except in 
  14.  * compliance with the RPSL or, if you have a valid RCSL with RealNetworks 
  15.  * applicable to this file, the RCSL.  Please see the applicable RPSL or 
  16.  * RCSL for the rights, obligations and limitations governing use of the 
  17.  * contents of the file.  
  18.  *  
  19.  * This file is part of the Helix DNA Technology. RealNetworks is the 
  20.  * developer of the Original Code and owns the copyrights in the portions 
  21.  * it created. 
  22.  *  
  23.  * This file, and the files included with this file, is distributed and made 
  24.  * available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 
  25.  * EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS ALL SUCH WARRANTIES, 
  26.  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS 
  27.  * FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 
  28.  * 
  29.  * Technology Compatibility Kit Test Suite(s) Location: 
  30.  *    http://www.helixcommunity.org/content/tck 
  31.  * 
  32.  * Contributor(s): 
  33.  *  
  34.  * ***** END LICENSE BLOCK ***** */ 
  35. #include "minisite.h"
  36. #include "hxvsurf.h"
  37. #include "coloracc.h"
  38. #include "minisurf.h"
  39. #include "platform/unix/linux_fb_surf.h"
  40. #include "minifmt.h"
  41. //#include <unistd.h>
  42. #include <fcntl.h>
  43. #include <linux/fb.h>
  44. //#include <linux/kd.h>
  45. #include <sys/ioctl.h>
  46. #include <sys/mman.h>
  47. //#include <sys/time.h>
  48. //#include <sys/types.h>
  49. //#include <sys/select.h>
  50. static CFmtObj ImageHelper;
  51. CLinuxFrameBufferSurface::CLinuxFrameBufferSurface(IUnknown* pContext, 
  52.  CMiniBaseSite* pSite)
  53.     :  CMiniBaseSurface(pContext, pSite)
  54.     , m_nScreenNumber(0)
  55.     , m_unDepth(0)
  56.     , m_nBitsPerPixel(0)
  57.     , m_nCompositionSize(0)
  58.     , m_pCompositionSurface(NULL)
  59.     , m_frameBufferFD(-1)
  60.     , m_pFrameBuffer(0)
  61. {}
  62. CLinuxFrameBufferSurface::~CLinuxFrameBufferSurface()
  63. {
  64.     if (m_frameBufferFD != -1)
  65.     {
  66. m_pFrameBuffer = 0;
  67. close(m_frameBufferFD);
  68. m_frameBufferFD = -1;
  69.     }
  70.     HX_FREE(m_pCompositionSurface);
  71.     m_nCompositionSize  = 0;
  72.     m_nCompositionPitch = 0;
  73.     memset(&m_surfaceSize, 0, sizeof( m_surfaceSize ) );
  74. }
  75. HX_RESULT CLinuxFrameBufferSurface::_CreateDestBuffer(int cidIn,
  76.                                               int nWidth,
  77.                                               int nHeight,
  78.                                               int& nCount)
  79. {
  80.     HX_RESULT res = HXR_OK;
  81.     HX_ASSERT( m_pSite );
  82.     //HX_ASSERT( m_unDepth );
  83.     //For now, we just support 1 format
  84.     HX_ASSERT( cidIn == CID_I420 );
  85.     
  86.     //Get the size of this site.
  87.     m_pSite->GetSize(m_surfaceSize);
  88.     //Malloc the room to hold the actual bits.
  89.     HXBitmapInfo bmiTemp;
  90.     ImageHelper.MakeBitmap( &bmiTemp,
  91.                       sizeof(bmiTemp),
  92.                       GetDstCID(),
  93.                       m_surfaceSize.cx,
  94.                       m_surfaceSize.cy,
  95.                       NULL,
  96.                       0);
  97.     
  98.     m_nCompositionPitch = ImageHelper.GetBitmapPitch(&bmiTemp);
  99.     int imageSize = bmiTemp.bmiHeader.biSizeImage;
  100.     res = _ResizeVideoBuffer(imageSize);
  101.     HX_ASSERT( ImageHelper.GetBitmapColor(&bmiTemp) == GetDstCID() );
  102.     if (!m_pFrameBuffer)
  103.     {
  104. res = _OpenFrameBuffer();
  105.     }
  106.     
  107.     return res;
  108. }
  109.          
  110. HX_RESULT CLinuxFrameBufferSurface::_LockDestBuffer(UCHAR** ppDestPtr,
  111.        LONG32* pnDestPitch,
  112.        int& cid,
  113.        REF(HXxSize) srcSize,
  114.        int nIndex)
  115. {
  116.     *ppDestPtr = m_pCompositionSurface;
  117.     *pnDestPitch = m_nCompositionPitch;
  118.     cid = GetDstCID();
  119.     
  120.     return HXR_OK;
  121. }
  122.          
  123. HX_RESULT CLinuxFrameBufferSurface::_TransferToDestBuffer(UCHAR* pSrcBuffer,
  124.                                                   HXBitmapInfoHeader* pBitmapInfo,
  125.                                                   HXxRect* prSrcRect,
  126.                                                   HXxRect* prDstRect,
  127.                                                   UCHAR* pDstBuffer,
  128.                                                   LONG32 nDstPitch)
  129. {
  130.     HX_RESULT res = HXR_OK;
  131.     int nCidIn = ImageHelper.GetBitmapColor( (HXBitmapInfo*)pBitmapInfo );
  132.     //This minisite, as written, is just doing a blind I420->RGB32
  133.     //color convert. Feel free to add whatever you want...
  134.     HX_ASSERT( nCidIn == CID_I420 );
  135.     if( nCidIn == CID_I420 )
  136.     {
  137.         //This calls the m_fpColorConverter init'ed in the base class.
  138.         res =  CMiniBaseSurface::_TransferToDestBuffer(pSrcBuffer,
  139.                                                        pBitmapInfo,
  140.                                                        prSrcRect,
  141.                                                        prDstRect,
  142.                                                        pDstBuffer,
  143.                                                        nDstPitch);
  144.     }
  145.     return res;
  146. }
  147.          
  148. HX_RESULT CLinuxFrameBufferSurface::_UnlockDestBuffer(UCHAR* pSurfPtr, int nIndex=0)
  149. {
  150.     return HXR_OK;
  151. }
  152.          
  153. HX_RESULT CLinuxFrameBufferSurface::_RenderDestBuffer(HXxRect* prSrcRect,
  154.  HXxRect* prDestRect,
  155.  int nIndex)
  156. {
  157.     HX_RESULT res = HXR_FAILED;
  158.     int imgWidth  = prDestRect->right - prDestRect->left;
  159.     int imgHeight = prDestRect->bottom - prDestRect->top;
  160.     
  161.     if (m_pFrameBuffer)
  162.     {
  163. #ifdef HELIX_FEATURE_CC_RGB32out
  164. UINT32* pSrc = (UINT32*)m_pCompositionSurface;
  165. #elif defined(HELIX_FEATURE_CC_RGB565out)
  166. UINT16* pSrc = (UINT16*)m_pCompositionSurface;
  167. #endif
  168. UINT16* pDest = m_pFrameBuffer;
  169. int srcDelta = 0;
  170. int dstDelta = 0;
  171. // Compute how much of the image we want to copy
  172. int lines = (imgHeight < m_fbHeight) ? imgHeight : m_fbHeight;
  173. int copyWidth = imgWidth;
  174. if (imgWidth < m_fbWidth)
  175. {
  176.     dstDelta = m_fbWidth - imgWidth;
  177. }
  178. else if (imgWidth > m_fbWidth)
  179. {
  180.     srcDelta = imgWidth - m_fbWidth;
  181.     copyWidth = m_fbWidth;
  182. }
  183. // Center image
  184. int left = (m_fbWidth / 2) - (copyWidth / 2);
  185. int top = (m_fbHeight / 2) - (lines / 2);
  186. pDest += top * m_fbWidth + left;
  187. int i = 0;
  188. for (int y = 0; y < lines; y++)
  189. {
  190.     for (int x = 0; x < copyWidth; x++)
  191.     {
  192. #ifdef HELIX_FEATURE_CC_RGB32out
  193. // We need to convert RGB32 -> RGB565
  194. UINT32 src   = *pSrc++;
  195. UINT32 dst = (((src & 0x00f80000) >> 8) | 
  196.       ((src & 0x0000fc00) >> 5) | 
  197.       ((src & 0x000000f8) >> 3));
  198. *pDest++ = (UINT16)dst;
  199. #elif defined(HELIX_FEATURE_CC_RGB565out)
  200. *pDest++ = *pSrc++;
  201. #endif
  202.     }
  203.     pSrc += srcDelta;
  204.     pDest += dstDelta;
  205. }
  206. res = HXR_OK;
  207.     }
  208.     
  209.     return res;
  210. }
  211.          
  212. HX_RESULT CLinuxFrameBufferSurface::_DestroyDestBuffer(int cid, int nCount)
  213. {
  214.   HX_FREE(m_pCompositionSurface);
  215.     m_nCompositionSize  = 0;
  216.     m_nCompositionPitch = 0;
  217.     memset(&m_surfaceSize, 0, sizeof( m_surfaceSize ) );
  218.     
  219.     return HXR_OK;
  220. }
  221. int CLinuxFrameBufferSurface::GetDstCID(int nIndex)
  222. {
  223.     //Right now the mini site just always outputs in RGB32. 
  224. #ifdef HELIX_FEATURE_CC_RGB32out
  225.     return CID_RGB32;
  226. #elif defined(HELIX_FEATURE_CC_RGB565out)
  227.     return CID_RGB565;
  228. #endif
  229. }
  230. HX_RESULT CLinuxFrameBufferSurface::_ResizeVideoBuffer( INT32 nSize)
  231. {
  232.     HX_RESULT retVal=HXR_OK;
  233.     //XXXgfw. Trade off here. We can use lots of mem if we just return and
  234.     //the user has scaled the image up very much and then goes back down.
  235.     //If we don't just return we can do tons and tons of mallocs. Maybe we
  236.     //should add a timed callback to reclaim some of this mem after a few
  237.     //seconds.
  238.     if(nSize <= m_nCompositionSize)
  239.         return retVal;
  240.     if(m_pCompositionSurface == NULL)
  241.     {
  242.         m_pCompositionSurface = (UCHAR*) malloc(nSize);
  243.     }
  244.     else
  245.     {
  246.         m_pCompositionSurface = (UCHAR*) realloc(m_pCompositionSurface, nSize);
  247.     }
  248.     if( m_pCompositionSurface )
  249.     {
  250.         m_nCompositionSize = nSize;
  251.     }
  252.     else
  253.     {
  254.         HX_ASSERT("We can't alloc the composition surface." == NULL );
  255.         m_nCompositionSize = 0;
  256.     }
  257.     return retVal;
  258. }
  259. HX_RESULT CLinuxFrameBufferSurface::_OpenFrameBuffer()
  260. {
  261.     HX_RESULT res = HXR_FAILED;
  262.     struct fb_var_screeninfo vinfo;
  263.     struct fb_fix_screeninfo finfo;
  264.     char *fbp = 0;
  265.     int x = 0, y = 0;
  266.     long int location = 0;
  267.   /* Open the file for reading and writing */
  268.     m_frameBufferFD = open("/dev/fb0", O_RDWR);
  269.     if (m_frameBufferFD == -1) 
  270.     {
  271. printf("Error: cannot open framebuffer device.n");
  272.     }
  273.     else if (ioctl(m_frameBufferFD, FBIOGET_FSCREENINFO, &finfo)) 
  274.     {
  275. printf("Error reading fixed information.n");
  276.     }
  277.     else if (ioctl(m_frameBufferFD, FBIOGET_VSCREENINFO, &vinfo)) 
  278.     {
  279. printf("Error reading variable information.n");
  280.     }
  281.     else
  282.     {
  283. printf("xres:%i , yres:%i , BBP:%in ", 
  284.        vinfo.xres, vinfo.yres, vinfo.bits_per_pixel);
  285. m_fbWidth = vinfo.xres;
  286. m_fbHeight = vinfo.yres;
  287. int screen_size  = vinfo.xres * vinfo.yres * vinfo.bits_per_pixel / 8;
  288. /* Map the device to memory */
  289. m_pFrameBuffer = (UINT16*)mmap(0, screen_size, 
  290.        PROT_READ | PROT_WRITE, MAP_SHARED,
  291.        m_frameBufferFD, 0);       
  292. if ((int)m_pFrameBuffer == -1) 
  293.     printf("Error: failed to map framebuffer device to memory.n"); 
  294. }
  295. else
  296. {
  297.     res = HXR_OK;
  298. }
  299.     }
  300.     return res;
  301. }