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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: gifcodec.h,v 1.1.26.1 2004/07/09 01:54:26 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. #ifndef _CGIFCODEC_H
  50. #define _CGIFCODEC_H
  51. class CGIFCodec : public CHXBaseCountingObject,
  52.                   public CUnknownIMP
  53. {
  54.     DECLARE_UNKNOWN(CGIFCodec)
  55. public:
  56.     enum
  57.     {
  58.         kImageDescriptor                   = 0x2C,
  59.         kTrailer                           = 0x3B,
  60.         kExtension                         = 0x21,
  61.         kGraphicControlExtension           = 0xF9,
  62.         kApplicationExtension              = 0xFF,
  63.         kCommentExtension                  = 0xFE,
  64.         kPlainTextExtension                = 0x01
  65.     };
  66.     struct LogicalScreenDescriptor
  67.     {
  68.         UINT32 m_ulLogicalScreenWidth;
  69.         UINT32 m_ulLogicalScreenHeight;
  70.         BOOL   m_bGlobalColorTablePresent;
  71.         UINT32 m_ulOriginalColorBits;
  72.         BOOL   m_bColorsSorted;
  73.         UINT32 m_ulColorTableBits;
  74.         UINT32 m_ulColorTableNumEntries;
  75.         UINT32 m_ulBackgroundColorIndex;
  76.         UINT32 m_ulPixelAspectRatio;
  77.         float  m_fPixelAspectRatio;
  78.     };
  79.     CGIFCodec();
  80.     virtual ~CGIFCodec();
  81.     static UINT32 GetMaxNumPackets(BYTE* pBuf, UINT32 ulLen);
  82.     HX_RESULT    InitParseWireFormat(BYTE *pBuffer, UINT32 ulLen);
  83.     UINT32       GetDelayTime(UINT32 i);
  84.     UINT32       GetImageDataSize(UINT32 i);
  85.     HX_RESULT    GetPacketBufferLength(UINT32 &rulLen);
  86.     HX_RESULT    GetPacketBuffer(BYTE *pBuffer, UINT32 ulLen, BOOL &rbFirstInImage);
  87.     void         TermParse();
  88.     HX_RESULT    InitDecompress(BYTE *pBuffer, UINT32 ulLen);
  89.     HX_RESULT    Decompress(BYTE *pBuffer, UINT32 ulLen, BOOL bNewImage);
  90.     HX_RESULT    GetIndexImage(INT32 lCurIndex, UINT32 ulImgIndex, BYTE *pBuffer, UINT32 ulWidth, UINT32 ulHeight,
  91.                                UINT32 ulPadWidth, BOOL bRowsInverted);
  92.     HX_RESULT    GetRGBImage(INT32 lCurIndex, UINT32 ulImgIndex, BYTE *pBuffer, UINT32 ulWidth, UINT32 ulHeight, UINT32 ulPadWidth,
  93.                              UINT32 ulBytesPerPixel, BOOL bRowsInverted, BOOL bRGBOrdering, BYTE ucBackRed, BYTE ucBackGreen, BYTE ucBackBlue,
  94.                              BYTE ucBackAlpha = 0);
  95.     HX_RESULT    GetRGBImageEx(INT32 lCurIndex, UINT32 ulImgIndex, BYTE *pBuffer, UINT32 ulWidth, UINT32 ulHeight,
  96.                                UINT32 ulPadWidth, UINT32 ulBytesPerPixel, BOOL bRowsInverted, BOOL bRGBOrdering,
  97.                                UINT32 ulBgColor, BOOL bMediaOpacity, UINT32 ulMediaOpacity,
  98.                                BOOL bChromaKey, UINT32 ulChromaKey, UINT32 ulChromaKeyTol, UINT32 ulChromaKeyOpacity);
  99.     HX_RESULT    GetRGB32(UINT32 ulImageNum, BYTE *pBuffer, UINT32 ulRowStride, BOOL bRowsInverted);
  100.     void         PacketLost();
  101.     void         TermDecompress();
  102.     BOOL         LocalColorMapsPresent();
  103.     BOOL         IsGIF89a()                              { return m_bIsGIF89a; }
  104.     UINT32       GetNumImages()                          { return m_ulNumImages; }
  105.     CGIFImage   *GetImage(UINT32 i)                      { return (i < m_ulNumImages ? &m_pImage[i] : NULL); }
  106.     UINT32       GetLogicalScreenWidth()                 { return m_cLSD.m_ulLogicalScreenWidth; }
  107.     UINT32       GetLogicalScreenHeight()                { return m_cLSD.m_ulLogicalScreenHeight; }
  108.     UINT32       GetDelayTimeSum()                       { return m_ulDelayTimeSum; }
  109.     UINT32       GetLoopCount()                          { return m_ulLoopCount; }
  110.     BOOL         DecompressFinished()                    { return (m_ulState == kStateDecoFinished ? TRUE : FALSE);  }
  111.     BOOL         ParseFinished()                         { return (m_ulParseState == kStateParseFinished ? TRUE : FALSE);  }
  112.     BOOL         GetValid()                              { return m_bValid; }
  113.     void         SetValid(BOOL bValid)                   { m_bValid = bValid; }
  114.     BOOL         GetNeedPacket()                         { return m_bNeedPacket; }
  115.     void         SetNeedPacket(BOOL bNeed)               { m_bNeedPacket = bNeed; }
  116.     static void  ParseLogicalScreenDescriptor(BYTE *pBuffer, LogicalScreenDescriptor &cLSD);
  117.     // Methods common to both parsing and decompression
  118.     static void  SkipBlocks(BYTE * &pBuffer, BYTE* pBufLimit = NULL);
  119. protected:
  120.     enum
  121.     {
  122.         kStateConstructed      = 0,
  123.         kStateDecoInitialized  = 1,
  124.         kStateDecoInProgress   = 2,
  125.         kStateDecoFinished     = 3,
  126.         kStateParseInitialized = 1,
  127.         kStateParseInProgress  = 2,
  128.         kStateParseFinished    = 3,
  129.         kIdealPacketSize       = 480,
  130.         kMinimumPacketSize     = 320
  131.     };
  132.     struct ParseSegment
  133.     {
  134.         BYTE  *pMark;
  135.         UINT32 ulSize;
  136.     };
  137.     // Members common to both parsing and decompression
  138.     UINT32                  m_ulNumImages;
  139.     UINT32                  m_ulLoopCount;
  140.     // Member variables for wire format parsing
  141.     UINT32                  m_ulParseState;
  142.     BYTE                   *m_pParseBuffer;
  143.     UINT32                  m_ulParseBufferLength;
  144.     ParseSegment           *m_pSegment;
  145.     UINT32                  m_ulDelayTimeSum;
  146.     UINT32                  m_ulNumSegmentsAllocated;
  147.     UINT32                  m_ulNumSegments;
  148.     UINT32                  m_ulCurSegIndex;
  149.     UINT32                  m_ulCurSegOffset;
  150.     // Members for decompression
  151.     LogicalScreenDescriptor m_cLSD;
  152.     BOOL                    m_bIsGIF89a;
  153.     BYTE                   *m_pucGlobalColorMap;
  154.     UINT32                 *m_pImageHeaderSize;
  155.     UINT32                 *m_pCompressedBufferSize;
  156.     CGIFImage              *m_pImage;
  157.     UINT32                  m_ulCurrentImageIndex;
  158.     BOOL                    m_bNeedPacket;
  159.     UINT32                  m_ulState;
  160.     BOOL                    m_bValid;
  161.     // Common member methods
  162.     void ParseApplicationExtension(BYTE * &pBuf);
  163.     // Member functions for parsing
  164.     void          ResetParse();
  165.     UINT32        ComputeLZWDataSize(BYTE *pLZW);
  166.     inline void Pack32(UINT32 ulValue, UINT8 *pData)
  167.     {
  168.         pData[0] = (UINT8) ((ulValue >> 24) & 0x000000FF);
  169.         pData[1] = (UINT8) ((ulValue >> 16) & 0x000000FF);
  170.         pData[2] = (UINT8) ((ulValue >>  8) & 0x000000FF);
  171.         pData[3] = (UINT8) ( ulValue        & 0x000000FF);
  172.     };
  173.     inline void Pack16(UINT16 usValue, UINT8 *pData)
  174.     {
  175.         pData[0] = (UINT8) ((usValue >> 8) & 0x00FF);
  176.         pData[1] = (UINT8) ( usValue       & 0x00FF);
  177.     };
  178.     // Member functions for decompressing
  179.     void          ResetDecompress();
  180.     HX_RESULT     ParseContainerHeader(BYTE * &pBuffer);
  181.     INT32         ComputeStartingImageIndex(INT32 lCurIndex, INT32 lDesiredIndex);
  182.     inline UINT32 UnPack32(BYTE *pBuf)
  183.     {
  184.         return (pBuf[0] << 24) | (pBuf[1] << 16) | (pBuf[2] << 8) | pBuf[3];
  185.     };
  186.     inline UINT16 UnPack16(BYTE *pBuf)
  187.     {
  188.         return (UINT16) ((pBuf[0] << 8) | pBuf[1]);
  189.     };
  190. };
  191. #define GIF_RENDERER_FLAG_PARSEFAILED  1
  192. #endif