amrff.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 AMRFF_H
  36. #define AMRFF_H
  37. #define AMR_HEADER_READ_SIZE    64
  38. #define AMR_READ_SIZE         4096
  39. #define AMR_IDEAL_PACKET_SIZE  512
  40. #define AMR_MIN_CONSEC_FRAMES    5
  41. // Forward declarations
  42. typedef _INTERFACE IHXRequest            IHXRequest;
  43. typedef _INTERFACE IHXFormatResponse     IHXFormatResponse;
  44. typedef _INTERFACE IHXFileObject         IHXFileObject;
  45. typedef _INTERFACE IHXBuffer             IHXBuffer;
  46. typedef _INTERFACE IHXCommonClassFactory IHXCommonClassFactory;
  47. typedef _INTERFACE IHXFileObject         IHXFileObject;
  48. typedef _INTERFACE IHXFormatResponse     IHXFormatResponse;
  49. typedef _INTERFACE IHXFileStat           IHXFileStat;
  50. class CHXAMRPayloadFormatPacketizer;
  51. class CAMRFileFormat : public CHXBaseCountingObject,
  52.                        public IHXPlugin, 
  53.                        public IHXFileFormatObject,
  54.                        public IHXFileResponse,
  55.                        public IHXFileStatResponse,
  56.                        public IHXInterruptSafe
  57. {
  58. public:
  59.     CAMRFileFormat();
  60.     virtual ~CAMRFileFormat();
  61.     // IUnknown methods
  62.     STDMETHOD(QueryInterface)   (THIS_ REFIID riid, void** ppvObj);
  63.     STDMETHOD_(ULONG32,AddRef)  (THIS);
  64.     STDMETHOD_(ULONG32,Release) (THIS);
  65.     // IHXPlugin methods
  66.     STDMETHOD(GetPluginInfo) (THIS_ REF(BOOL)        rbLoadMultiple,
  67.                                     REF(const char*) rpszDescription,
  68.                                     REF(const char*) rpszCopyright,
  69.                                     REF(const char*) rpszMoreInfoURL,
  70.                                     REF(ULONG32)     rulVersionNumber);
  71.     STDMETHOD(InitPlugin)    (THIS_ IUnknown* pContext);
  72.     // IHXFileFormatObject methods
  73.     STDMETHOD(GetFileFormatInfo) (THIS_ REF(const char**) rppszFileMimeTypes,
  74.                                         REF(const char**) rppszFileExtensions,
  75.                                         REF(const char**) rppszFileOpenNames);
  76.     STDMETHOD(InitFileFormat)    (THIS_ IHXRequest*        pRequest, 
  77.                                         IHXFormatResponse* pFormatResponse,
  78.                                         IHXFileObject*     pFileObject);
  79.     STDMETHOD(Close)             (THIS);
  80.     STDMETHOD(GetFileHeader)     (THIS);
  81.     STDMETHOD(GetStreamHeader)   (THIS_ UINT16 unStreamNumber);
  82.     STDMETHOD(GetPacket)         (THIS_ UINT16 unStreamNumber);
  83.     STDMETHOD(Seek)              (THIS_ ULONG32 ulOffset);
  84.     // IHXFileResponse methods
  85.     STDMETHOD(InitDone)  (THIS_ HX_RESULT status);
  86.     STDMETHOD(SeekDone)  (THIS_ HX_RESULT status);
  87.     STDMETHOD(ReadDone)  (THIS_ HX_RESULT status, IHXBuffer *pBuffer);
  88.     STDMETHOD(WriteDone) (THIS_ HX_RESULT status);
  89.     STDMETHOD(CloseDone) (THIS_ HX_RESULT status);
  90.     // IHXFileStatResponse methods
  91.     STDMETHOD(StatDone) (THIS_ HX_RESULT status, UINT32 ulSize, UINT32 ulCreationTime,
  92.                                UINT32 ulAccessTime, UINT32 ulModificationTime, UINT32 ulMode);
  93.     // IHXInterruptSafe methods
  94.     STDMETHOD_(BOOL,IsInterruptSafe) (THIS) { return TRUE; };
  95.     // CAMRFileFormat methods
  96.     static HX_RESULT STDAPICALLTYPE HXCreateInstance(IUnknown** ppIUnknown);
  97.     static HX_RESULT STDAPICALLTYPE CanUnload2(void);
  98. private:
  99.     typedef enum
  100.     {
  101.         StateReady,
  102.         StateInitFileFormatInitDonePending,
  103.         StateInitFileFormatStatDonePending,
  104.         StateFileHeaderSeekDonePending,
  105.         StateFileHeaderReadDonePending,
  106.         StateStreamHeaderSeekDonePending,
  107.         StateStreamHeaderReadDonePending,
  108.         StateGetPacketSeekDonePending,
  109.         StateGetPacketReadDonePending
  110.     } AMRFFState;
  111.     INT32                          m_lRefCount;
  112.     IUnknown*                      m_pContext;
  113.     IHXCommonClassFactory*         m_pCommonClassFactory;
  114.     IHXFileObject*                 m_pFileObject;
  115.     IHXFormatResponse*             m_pFormatResponse;
  116.     AMRFFState                     m_eState;
  117.     IHXFileStat*                   m_pFileStat;
  118.     UINT32                         m_ulHeaderSize;
  119.     UINT32                         m_ulBytesPerFrame;
  120.     UINT32                         m_ulFileSize;
  121.     UINT32                         m_ulNumChannels;
  122.     UINT32                         m_ulNextFileOffset;
  123.     UINT32                         m_ulNextTimeStamp;
  124.     CHXAMRPayloadFormatPacketizer* m_pPayloadFormat;
  125.     HX_BITFIELD                    m_bWideBand : 1;
  126.     HX_BITFIELD                    m_bScanForFrameBegin : 1;
  127.     static const char* const m_pszDescription;
  128.     static const char* const m_pszCopyright;
  129.     static const char* const m_pszMoreInfoURL;
  130.     static const char* const m_ppszFileMimeTypes[];
  131.     static const char* const m_ppszFileExtensions[];
  132.     static const char* const m_ppszFileOpenNames[];
  133.     static const char* const m_ppszStreamMimeTypes[];
  134.     static const BYTE        m_pMagicSingle[6];
  135.     static const BYTE        m_pMagicSingleWB[9];
  136.     static const BYTE        m_pMagicMulti[12];
  137.     static const BYTE        m_pMagicMultiWB[15];
  138.     static const BYTE        m_ucNumChannelsMap[16];
  139.     HX_RESULT GetStreamInfo(IHXBuffer* pBuffer, UINT32 ulOffset,
  140.                             REF(UINT32) rulAvgBitRate, REF(UINT32) rulBytesPerFrame);
  141.     HX_RESULT MakeRawFilePacket(IHXBuffer* pBuffer, UINT32 ulTimeStamp,
  142.                                 REF(IHXPacket*) rpPacket);
  143. };
  144. #endif // #ifndef AMRFF_H