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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK ***** 
  2.  * Version: RCSL 1.0/RPSL 1.0 
  3.  *  
  4.  * Portions Copyright (c) 1995-2002 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. #ifndef COMIMGFF_H
  36. #define COMIMGFF_H
  37. // Forward declarations
  38. typedef _INTERFACE IHXRequest            IHXRequest;
  39. typedef _INTERFACE IHXFormatResponse     IHXFormatResponse;
  40. typedef _INTERFACE IHXFileObject         IHXFileObject;
  41. typedef _INTERFACE IHXBuffer             IHXBuffer;
  42. typedef _INTERFACE IHXPacket             IHXPacket;
  43. typedef _INTERFACE IHXCommonClassFactory IHXCommonClassFactory;
  44. class CCommonImageFileFormat : public CHXBaseCountingObject,
  45.                                public IHXPlugin,
  46.                                public IHXFileFormatObject,
  47.                                public IHXFileResponse,
  48.                                public IHXFileMimeMapperResponse
  49. {
  50. public:
  51.     CCommonImageFileFormat();
  52.     virtual ~CCommonImageFileFormat();
  53.     // IUnknown methods
  54.     STDMETHOD(QueryInterface)  (THIS_ REFIID riid, void** ppvObj);
  55.     STDMETHOD_(UINT32,AddRef)  (THIS);
  56.     STDMETHOD_(UINT32,Release) (THIS);
  57.     // IHXPlugin methods
  58.     STDMETHOD(GetPluginInfo) (THIS_ REF(BOOL)        rbLoadMultiple,
  59.                                     REF(const char*) rpszDescription,
  60.                                     REF(const char*) rpszCopyright,
  61.                                     REF(const char*) rpszMoreInfoURL,
  62.                                     REF(UINT32)      rulVersionNumber);
  63.     STDMETHOD(InitPlugin)    (THIS_ IUnknown* pContext);
  64.     // IHXFileFormatObject methods
  65.     STDMETHOD(GetFileFormatInfo) (THIS_ REF(const char**) rppszFileMimeTypes,
  66.                                         REF(const char**) rppszFileExtensions,
  67.                                         REF(const char**) rppszFileOpenNames);
  68.     STDMETHOD(InitFileFormat)    (THIS_ IHXRequest*        pRequest,
  69.                                         IHXFormatResponse* pFormatResponse,
  70.                                         IHXFileObject*     pFileObject);
  71.     STDMETHOD(GetFileHeader)     (THIS);
  72.     STDMETHOD(GetStreamHeader)   (THIS_ UINT16 usStreamNum);
  73.     STDMETHOD(GetPacket)         (THIS_ UINT16 usStreamNum);
  74.     STDMETHOD(Seek)              (THIS_ UINT32 ulRequestedTime);
  75.     STDMETHOD(Close)             (THIS);
  76.     // IHXFileResponse methods
  77.     STDMETHOD(InitDone)  (THIS_ HX_RESULT status);
  78.     STDMETHOD(SeekDone)  (THIS_ HX_RESULT status);
  79.     STDMETHOD(ReadDone)  (THIS_ HX_RESULT status, IHXBuffer* pBuffer);
  80.     STDMETHOD(WriteDone) (THIS_ HX_RESULT status);
  81.     STDMETHOD(CloseDone) (THIS_ HX_RESULT status);
  82.     // IHXFileMimeMapperResponse methods
  83.     STDMETHOD(MimeTypeFound) (THIS_ HX_RESULT status, const char* pMimeType);
  84.     // CCommonImageFileFormat methods
  85.     static HX_RESULT STDAPICALLTYPE HXCreateInstance(IUnknown** ppIUnknown);
  86. protected:
  87.     enum
  88.     {
  89.         kStateReady,
  90.         kStateIFFInitDonePending,
  91.         kStateIFFCloseDonePending,
  92.         kStateIFFMimeTypeFoundPending,
  93.         kStateGSHSeekDonePending,
  94.         kStateGSHReadDonePending,
  95.         kStateGSHCloseDonePending,
  96.         kStateGPSeekDonePending,
  97.         kStateGPReadDonePending,
  98.         kStateGPCloseDonePending,
  99.         kStateSeekInitDonePending,
  100.         kInitialHeaderReadSize = 512,
  101.         kBitrate = 12000,
  102.         kPreroll = 1000,
  103.         kDuration = 5000,
  104.         kPacketSize = 1450
  105.     };
  106.     INT32                    m_lRefCount;
  107.     IUnknown*                m_pContext;
  108.     IHXFileObject*           m_pFileObject;
  109.     IHXFormatResponse*       m_pFormatResponse;
  110.     IHXCommonClassFactory*   m_pCommonClassFactory;
  111.     IHXFileMimeMapper*       m_pFileMimeMapper;
  112.     IHXBuffer*               m_pURLStr;
  113.     IHXBuffer*               m_pMimeTypeStr;
  114.     UINT32                   m_ulState;
  115.     UINT32                   m_ulFileOffset;
  116.     UINT32                   m_ulDesiredFileOffset;
  117.     UINT32                   m_ulRequestedFileOffset;
  118.     UINT32                   m_ulHeaderReadSize;
  119.     BOOL                     m_bFileObjectOpen;
  120.     static const char* const m_pszDescription;
  121.     static const char* const m_pszCopyright;
  122.     static const char* const m_pszMoreInfoURL;
  123.     static const char* const m_ppszFileMimeTypes[];
  124.     static const char* const m_ppszFileExtensions[];
  125.     static const char* const m_ppszFileOpenNames[];
  126.     static const char* const m_ppszStreamMimeType[];
  127.     HX_RESULT ParseWidthHeight(IHXBuffer* pBuffer, BOOL bIsWBMP, REF(UINT32) rulWidth,
  128.                                REF(UINT32) rulHeight, REF(UINT32) rulImageType);
  129.     BOOL      IsWBMP(IHXBuffer* pMimeTypeStr, IHXBuffer* pURLStr);
  130.     //Start at pBuf and find the next JPEG marker header. Changes pBuf
  131.     //to point to the start of the marker header found and sets
  132.     //ucMarkerType to the marker found. pBuf must not point to a
  133.     //marker on the first call unless you want to skip it.
  134.     BOOL _GetNextJPGMarker( BYTE** pBuf, BYTE* pBufEnd, BYTE* ucMarkerType );
  135.     //Parses the JPEG SOF segments to get the image size.
  136.     BOOL _ParseJPGSOFSegment( BYTE* pBuf,
  137.                               BYTE* pBufEnd,
  138.                               UINT32& ulWidth,
  139.                               UINT32& ulHeight );
  140.     //Looks up segment size
  141.     BOOL _HasSize( BYTE marker );
  142.     BOOL _IsJPEG( BYTE* pBuf, BYTE* pBufEnd );
  143. };
  144. #endif /* #ifdef COMIMGFF_H */