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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: minifmt.cpp,v 1.8.4.2 2004/07/09 01:59:28 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 "hlxclib/string.h"
  51. #include "hxtypes.h"
  52. #include "hxwintyp.h"
  53. #include "hxvsurf.h"
  54. #include "ciddefs.h"
  55. #include "minifmt.h"
  56. #define _FOURCC         1
  57. #define _BITCOUNT       2
  58. #define _BITMASK        4
  59. CFmtObj::CFmtObj()
  60.  :  m_pFmtList(NULL)
  61. {
  62.     CreateFmtList();
  63. }
  64. CFmtObj::~CFmtObj()
  65. {
  66.     DestroyFmtList();
  67. }
  68. int CFmtObj::MakeBitmap(HXBitmapInfo* lpbi,
  69.                         int nBISize, int cid,
  70.                         ULONG32 dwWidth, ULONG32 dwHeight,
  71.                         void* lppe, int nColors)
  72. {
  73.     int setPalette, bitmapinfoSize;
  74.     // check input parameters
  75.     if (!lpbi ||
  76.        (int)dwWidth <= 0 ||  (int)dwHeight <= 0 ||
  77.         !m_pFmtList)
  78.         return 0;
  79.     memset( lpbi, 0, sizeof(*lpbi) );
  80.     
  81.     // find entry
  82.     FmtEntry* p = FindEntry(cid);
  83.     if (!p)
  84.         return 0;
  85.     // calculate bitmapinfo size
  86.     setPalette = 0;
  87.     bitmapinfoSize = sizeof(HXBitmapInfoHeader);
  88.     if (p->dwFlags & _BITMASK)
  89.     {
  90.         bitmapinfoSize += 3 * sizeof(ULONG32);
  91.     }
  92.     else if ((p->dwFlags & (_FOURCC|_BITCOUNT)) == (_FOURCC|_BITCOUNT) &&
  93.               p->dwFourCC == BI_RGB && p->dwBitCount <= 8 &&
  94.               nColors)
  95.     {
  96.         // check palette parameters
  97.         if (lppe == NULL || nColors < 0 || nColors > 256)
  98.             return 0;
  99. #ifdef _WIN32        
  100.         bitmapinfoSize += nColors * sizeof(PALETTEENTRY);
  101.         setPalette = 1;
  102. #endif        
  103.     }
  104.     // check if we have sufficient amount of memory
  105.     if (nBISize < bitmapinfoSize)
  106.         return 0;
  107.     // initialize bitmapinfo structure
  108.     memset(lpbi, 0, bitmapinfoSize);
  109.     lpbi->bmiHeader.biSize = sizeof(HXBitmapInfoHeader);
  110.     // set image parameters
  111.     lpbi->bmiHeader.biWidth = dwWidth;
  112.     lpbi->bmiHeader.biHeight = dwHeight;
  113.     lpbi->bmiHeader.biPlanes = 1;
  114.     lpbi->bmiHeader.biSizeImage = ImageSize (cid, dwWidth, dwHeight);
  115.     // set color format
  116.     SetBitmapColor (lpbi, cid);
  117. #ifdef _WIN32
  118.     /* set palette: */
  119. //    if (setPalette)
  120. //        SetBitmapPalette (lpbi, lppe, nColors);
  121. #endif
  122.     
  123.     return bitmapinfoSize;  /* the number of bytes written */
  124. }
  125. int CFmtObj::SetBitmapColor(HXBitmapInfo* lpHXbi, int cid)
  126. {
  127.     // check input parameters
  128.     if (!lpHXbi || !m_pFmtList)
  129.         return -1;
  130.     // find entry
  131.     FmtEntry* p = FindEntry(cid);
  132.     if (!p)
  133.         return -1;
  134.     // set color-format releated fields in BITMAPINFO
  135.     lpHXbi->bmiHeader.biCompression = p->dwFourCC;
  136.     lpHXbi->bmiHeader.biBitCount    = (UINT16)p->dwBitCount;
  137.     // set color masks
  138.     if (p->dwFlags & _BITMASK)
  139.     {
  140.         // get offset of color masks in the bitmap
  141.         ULONG32 *lpColors = (ULONG32*)&lpHXbi->un.dwBitMask[0];
  142.         lpColors[0] = p->dwBitMask[0];
  143.         lpColors[1] = p->dwBitMask[1];
  144.         lpColors[2] = p->dwBitMask[2];
  145.     }
  146.     return 0;
  147. }
  148. int CFmtObj::ImageSize (int cid, ULONG32 dwWidth, ULONG32 dwHeight)
  149. {
  150.     FmtEntry* p = FindEntry(cid);
  151.     if (!p)
  152.         return 0;
  153.     
  154.     int pitch = dwWidth * p->dwBitCount / 8;
  155.     if (p->dwFlags & _BITCOUNT)
  156.         pitch = (pitch + 3) & ~3;
  157.     return dwHeight * pitch;
  158. }
  159. int CFmtObj::GetBitmapPitch (HXBitmapInfo* lpbi)
  160. {
  161.     register int cid, pitch;
  162.     // check bitmap pointer & format
  163.     cid = GetBitmapColor (lpbi);
  164.     
  165.     if (cid == -1)
  166.         return 0;
  167.     if (cid == CID_XING)
  168.         return 768;
  169.     
  170.     // find entry
  171.     FmtEntry* p = FindEntry(cid);
  172.     if (!p)
  173.         return 0;
  174.     
  175.     // calculate image pitch
  176.     pitch = lpbi->bmiHeader.biWidth * p->nBPP;
  177.     
  178.     if (cid == BI_RGB || cid == BI_BITFIELDS)
  179. #if defined(_MACINTOSH) || defined(_UNIX)
  180.         pitch = ((pitch + 3) & ~3);
  181. #else
  182.         pitch = -((pitch + 3) & ~3);
  183. #endif
  184.     // return pitch
  185.     return pitch;
  186. }
  187. int CFmtObj::GetBitmapColor(HXBitmapInfo* lpHXbi)
  188. {
  189.     int cid = -1;
  190.     // check bitmap pointer/size
  191.     if (lpHXbi == NULL)
  192.         return CID_UNKNOWN;
  193.     // get bitmap parameters to compare
  194.     for (FmtEntry* p=m_pFmtList; p; p=p->pNext)
  195.     {
  196.         if (ChkColor (p, 
  197.                       lpHXbi->bmiHeader.biCompression,
  198.                       lpHXbi->bmiHeader.biBitCount, 
  199.                       (ULONG32*)&lpHXbi->un.dwBitMask[0]))
  200.         {
  201.             cid = p->cid;
  202.             break;
  203.         }
  204.     }
  205.     
  206.     return cid;
  207. }
  208. int CFmtObj::ChkColor (FmtEntry* p,
  209.                        ULONG32 dwFourCC,
  210.                        ULONG32 dwBitCount,
  211.                        ULONG32 *lpBitMask)
  212. {
  213.     // clear match flags
  214.     ULONG32 dwMatch = 0;
  215.     // check FourCC
  216.     if ((p->dwFlags & _FOURCC) && p->dwFourCC == dwFourCC)
  217.         dwMatch |= _FOURCC;
  218.     // check BitCount
  219.     if ((p->dwFlags & _BITCOUNT) && p->dwBitCount == dwBitCount)
  220.         dwMatch |= _BITCOUNT;
  221.     // check BitMasks
  222.     if ((p->dwFlags & _BITMASK) && lpBitMask &&
  223.          p->dwBitMask[0] == lpBitMask[0] &&
  224.          p->dwBitMask[1] == lpBitMask[1] &&
  225.          p->dwBitMask[2] == lpBitMask[2])
  226.          dwMatch |= _BITMASK;
  227.     // combine results
  228.     return dwMatch == p->dwFlags;
  229. }
  230. void CFmtObj::CreateFmtList()
  231. {
  232.     CreateFmtEntry( _FOURCC, MAKEFOURCC('I','4','2','0'),    CID_I420, 12, 1);
  233.     CreateFmtEntry( _FOURCC, MAKEFOURCC('Y', 'V', '1', '2'), CID_YV12, 12, 1);
  234.     CreateFmtEntry( _FOURCC, MAKEFOURCC('Y','U','Y','2'),    CID_YUY2, 16, 2);
  235.     CreateFmtEntry( _FOURCC, MAKEFOURCC('U', 'Y', 'V', 'Y'), CID_UYVY, 16, 2);
  236.     
  237.     CreateFmtEntry( _FOURCC+_BITCOUNT, BI_RGB,  CID_RGB32,   32, 4);
  238.     CreateFmtEntry( _FOURCC+_BITCOUNT, HX_ARGB, CID_ARGB32,  32, 4); 
  239.     CreateFmtEntry( _FOURCC+_BITCOUNT, BI_RGB,  CID_RGB24,   24, 3);
  240.     CreateFmtEntry( _FOURCC+_BITCOUNT, BI_RGB,  CID_RGB444,  12, 2);
  241.     
  242.     CreateFmtEntry( _FOURCC+_BITCOUNT+_BITMASK,BI_BITFIELDS, CID_RGB565, 16, 2, 0xF800,0x07E0,0x001F);
  243.     CreateFmtEntry( _FOURCC+_BITCOUNT+_BITMASK,BI_BITFIELDS, CID_RGB555, 16, 2, 0x7C00,0x03E0,0x001F);
  244.     CreateFmtEntry( _FOURCC+_BITCOUNT+_BITMASK,BI_BITFIELDS, CID_RGB444, 16, 2, 0x0F00,0x00F0,0x000F);
  245.         
  246. }
  247. void CFmtObj::DestroyFmtList()
  248. {
  249.     if (!m_pFmtList)
  250.         return;
  251.     for (FmtEntry* p=m_pFmtList; p; m_pFmtList=p)
  252.     {
  253.         p = p->pNext;
  254.         delete m_pFmtList;
  255.     }
  256. }
  257. FmtEntry* CFmtObj::CreateFmtEntry( ULONG32 dwFlags,
  258.                                    ULONG32 dwFourCC,
  259.                                    int     cid,
  260.                                    ULONG32 dwBitCount,
  261.                                    ULONG32 nBPP,
  262.                                    ULONG32 dwBitMask1,
  263.                                    ULONG32 dwBitMask2,
  264.                                    ULONG32 dwBitMask3
  265.                                    )
  266.  {
  267.     FmtEntry* pEntry = new FmtEntry;
  268.     
  269.     if (pEntry)
  270.     {
  271.         memset(pEntry, 0, sizeof(*pEntry));
  272.         if (!m_pFmtList)
  273.             m_pFmtList = pEntry;
  274.         else
  275.         {
  276.             FmtEntry* p;
  277.             for (p=m_pFmtList; p->pNext; p=p->pNext)
  278.                 ;
  279.             p->pNext = pEntry;
  280.         }
  281.     }
  282.     pEntry->dwFlags      = dwFlags;
  283.     pEntry->dwFourCC     = dwFourCC;
  284.     pEntry->cid          = cid;
  285.     pEntry->dwBitCount   = dwBitCount;
  286.     pEntry->nBPP         = nBPP;
  287.     pEntry->dwBitMask[0] = dwBitMask1;
  288.     pEntry->dwBitMask[1] = dwBitMask2;
  289.     pEntry->dwBitMask[2] = dwBitMask3;
  290.         
  291.     return pEntry;
  292. }
  293. FmtEntry* CFmtObj::FindEntry(int cid)
  294. {
  295.     FmtEntry* p;
  296.     for (p=m_pFmtList; p && p->cid != cid; p=p->pNext)
  297.         ;
  298.     
  299.     return p;
  300. }