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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: pxgifff.h,v 1.2.24.1 2004/07/09 01:54:17 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 PXGIFFF_H
  50. #define PXGIFFF_H
  51. // Forward declarations
  52. typedef _INTERFACE IHXRequest            IHXRequest;
  53. typedef _INTERFACE IHXFormatResponse     IHXFormatResponse;
  54. typedef _INTERFACE IHXFileObject         IHXFileObject;
  55. typedef _INTERFACE IHXBuffer             IHXBuffer;
  56. typedef _INTERFACE IHXFragmentedBuffer   IHXFragmentedBuffer;
  57. typedef _INTERFACE IHXPacket             IHXPacket;
  58. typedef _INTERFACE IHXCommonClassFactory IHXCommonClassFactory;
  59. typedef _INTERFACE IHXErrorMessages      IHXErrorMessages;
  60. typedef _INTERFACE IHXFileStat           IHXFileStat;
  61. class CHXSimpleList;
  62. class CHXString;
  63. class CGIFCodec;
  64. class CGIFFileFormat : public CHXBaseCountingObject,
  65.                        public IHXPlugin,
  66.                        public IHXFileFormatObject,
  67.                        public IHXFileResponse,
  68.                        public IHXFileStatResponse,
  69.        public IHXThreadSafeMethods
  70. {
  71. public:
  72.     CGIFFileFormat();
  73.     virtual ~CGIFFileFormat();
  74.     // IUnknown Methods
  75.     STDMETHOD (QueryInterface)  (THIS_ REFIID ID, void** ppObj);
  76.     STDMETHOD_(UINT32, AddRef)  (THIS);
  77.     STDMETHOD_(UINT32, Release) (THIS);
  78.     // IHXPlugin Methods
  79.     STDMETHOD(GetPluginInfo) (THIS_ REF(BOOL)        bMultipleLoad,
  80.                                     REF(const char*) pDescription,
  81.                                     REF(const char*) pCopyright,
  82.                                     REF(const char*) pMoreInfoURL,
  83.                                     REF(ULONG32)     ulVersionNumber);
  84.     STDMETHOD(InitPlugin)    (THIS_ IUnknown *pContext);
  85.     // IHXFileFormatObject methods
  86.     STDMETHOD(GetFileFormatInfo) (THIS_ REF(const char**) pFileMimeTypes,
  87.                                         REF(const char**) pFileExtensions,
  88.                                         REF(const char**) pFileOpenNames);
  89.     STDMETHOD(InitFileFormat)    (THIS_ IHXRequest*        pRequest,
  90.                                         IHXFormatResponse* pFormatResponse,
  91.                                         IHXFileObject*     pFileObject);
  92.     STDMETHOD(GetFileHeader)     (THIS);
  93.     STDMETHOD(GetStreamHeader)   (THIS_ UINT16 usStreamNum);
  94.     STDMETHOD(GetPacket)         (THIS_ UINT16 usStreamNum);
  95.     STDMETHOD(Seek)              (THIS_ UINT32 ulRequestedTime);
  96.     STDMETHOD(Close)             (THIS);
  97.     // IHXFileResponse Methods
  98.     STDMETHOD(InitDone)  (THIS_ HX_RESULT status);
  99.     STDMETHOD(SeekDone)  (THIS_ HX_RESULT status);
  100.     STDMETHOD(ReadDone)  (THIS_ HX_RESULT status, IHXBuffer* pBuffer);
  101.     STDMETHOD(WriteDone) (THIS_ HX_RESULT status);
  102.     STDMETHOD(CloseDone) (THIS_ HX_RESULT status);
  103.     // IHXFileStatResponse methods
  104.     STDMETHOD(StatDone) (THIS_ HX_RESULT status, UINT32 ulSize, UINT32 ulCreationTime,
  105.                                UINT32 ulAccessTime, UINT32 ulModificationTime, UINT32 ulMode);
  106.     // IHXThreadSafeMethods methods
  107.     STDMETHOD_(UINT32,IsThreadSafe)(THIS);
  108.     // CGIFFileFormat methods
  109.     static HX_RESULT STDAPICALLTYPE HXCreateInstance(IUnknown** ppIUnknown);
  110. protected:
  111.     enum
  112.     {
  113.         kDefaultBitRate        = 12000,
  114.         kDefaultDuration       = 5000,
  115.         kStateConstructed      = 0,
  116.         kStateFileInit         = 1,
  117.         kStateFileStat         = 2,
  118.         kStateFileRead         = 3,
  119.         kStateInitialized      = 4,
  120.         kStateFileHeaderSent   = 5,
  121.         kStateStreamHeaderSent = 6,
  122.         kStateFinished         = 7,
  123.         kTargetBrowser         = 0,
  124.         kTargetPlayer          = 1,
  125.         kURLTypeNormal         = 0,
  126.         kURLTypeCommandPause   = 1,
  127.         kURLTypeCommandPlay    = 2,
  128.         kURLTypeCommandSeek    = 3,
  129.         kURLTypeCommandStop    = 4
  130.     };
  131.     INT32                   m_lRefCount;
  132.     IUnknown*               m_pContext;
  133.     IHXFileObject*         m_pFileObject;
  134.     IHXFileStat*           m_pFileStat;
  135.     IHXFormatResponse*     m_pFormatResponse;
  136.     IHXCommonClassFactory* m_pCommonClassFactory;
  137.     IHXErrorMessages*      m_pError;
  138.     UINT32                  m_ulBitRate;
  139.     UINT32                  m_ulPreroll;
  140.     UINT32                  m_ulDuration;
  141.     CHXString*              m_pURL;
  142.     CHXString*              m_pRequestURL;
  143.     BYTE                    m_ucTarget;
  144.     BYTE                    m_ucURLType;
  145.     UINT32                  m_ulSeekTime;
  146.     UINT32                  m_ulBackgroundColor;
  147.     INT32                   m_lCurrentTime;
  148.     INT32*                  m_plImageStartTime;
  149.     INT32                   m_lCurImgIndex;
  150.     UINT32                  m_ulState;
  151.     UINT32                  m_ulFileSize;
  152.     IHXBuffer*             m_pFileBuffer;
  153.     IHXFragmentedBuffer*   m_pFragFileBuffer;
  154.     CGIFCodec*              m_pGIFCodec;
  155.     BOOL                    m_bReliable;
  156.     UINT32                  m_ulNumBytesRead;
  157.     IHXPacket**            m_ppPacket;
  158.     UINT32                  m_ulNumPackets;
  159.     UINT32                  m_ulCurrentPacketIndex;
  160.     BOOL                    m_bParseFailed;
  161.     IHXBuffer*             m_pMediaRepeatStr;
  162.     static const char* const     m_pszDescription;
  163.     static const char* const     m_pszCopyright;
  164.     static const char* const     m_pszMoreInfoURL;
  165.     static const char* const     m_ppszFileMimeTypes[];
  166.     static const char* const     m_ppszFileExtensions[];
  167.     static const char* const     m_ppszFileOpenNames[];
  168.     static const char* const     m_pszStreamMimeType;
  169.     static const char* const     m_pszBadStreamMimeType;
  170.     static const UINT32     m_ulContentVersion;
  171.     static const UINT32     m_ulStreamVersion;
  172.     void      ReportError(UINT32 ulErrorID, const char* pszArg = NULL);
  173.     HX_RESULT GetResourceErrorString(UINT32 ulErrorID, CHXString& rErrorStr);
  174.     HX_RESULT ParseFile();
  175.     HX_RESULT MakeAllPackets();
  176. };
  177. #endif