mp4apyld.h
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:5k
源码类别:

Symbian

开发平台:

C/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 _MP4APYLD_H_
  36. #define _MP4APYLD_H_
  37. /****************************************************************************
  38.  *  Includes
  39.  */
  40. #include "mp4apyif.h"
  41. #include "tsconvrt.h"
  42. class MP4LATMDepack;
  43. /****************************************************************************
  44.  *  MP4APayloadFormat
  45.  */
  46. class MP4APayloadFormat : public IMP4APayloadFormat
  47. {
  48. public:
  49.     MP4APayloadFormat();
  50.     ~MP4APayloadFormat();
  51.     static HX_RESULT Build(REF(IMP4APayloadFormat*) pFmt);
  52.     // *** IUnknown methods ***
  53.     STDMETHOD(QueryInterface) (THIS_
  54. REFIID riid,
  55. void** ppvObj);
  56.     STDMETHOD_(ULONG32,AddRef) (THIS);
  57.     STDMETHOD_(ULONG32,Release) (THIS);
  58.     /*
  59.      * IHXPayloadFormatObject methods
  60.      */
  61.     STDMETHOD(Init) (THIS_
  62. IUnknown* pContext,
  63. BOOL bPacketize);
  64.     STDMETHOD(Close) (THIS) { return HXR_NOTIMPL; }
  65.     STDMETHOD(Reset) (THIS);
  66.     STDMETHOD(SetStreamHeader) (THIS_
  67. IHXValues* pHeader);
  68.     STDMETHOD(GetStreamHeader) (THIS_
  69. REF(IHXValues*) pHeader);
  70.     STDMETHOD(SetPacket) (THIS_
  71. IHXPacket* pPacket);
  72.     STDMETHOD(GetPacket) (THIS_
  73. REF(IHXPacket*) pOutPacket);
  74.     STDMETHOD(Flush) (THIS);
  75.     /*
  76.      * IMP4APayloadFormat methods
  77.      */
  78.     virtual UINT8 GetBitstreamType(void) { return m_unAudioConfigType; }
  79.     virtual ULONG32 GetBitstreamHeaderSize(void) { return m_ulAudioConfigSize; }
  80.     virtual const UINT8* GetBitstreamHeader(void) { return m_pAudioConfig; }
  81.     virtual HX_RESULT CreateMediaPacket(CMediaPacket* &pOutMediaPacket);
  82.     virtual HX_RESULT SetSamplingRate(ULONG32 ulSamplesPerSecond);
  83.     virtual HX_RESULT SetAUDuration(ULONG32 ulAUDuration);
  84.     virtual HX_RESULT SetTimeAnchor(ULONG32 ulTimeMs);
  85.     virtual ULONG32 GetTimeBase(void);
  86. private:
  87.     typedef enum
  88.     {
  89. PYID_X_HX_MP4_RAWAU,
  90. PYID_MPEG4_SIMPLE_A2,
  91. PYID_MP4A_LATM,
  92. PYID_X_HX_AAC_GENERIC
  93.     } PayloadID;
  94.     inline HX_RESULT CreateRawAUMediaPacket(CMediaPacket* &pOutMediaPacket);
  95.     inline HX_RESULT SetPacketizerHeader(IHXValues* pHeader);
  96.     inline HX_RESULT SetAssemblerHeader(IHXValues* pHeader);
  97.     HX_RESULT SetAssemblerHXHeader(IHXValues* pHeader);
  98.     HX_RESULT SetAssemblerLATMHeader(IHXValues* pHeader);
  99.     HX_RESULT SetAssemblerAACGenericHeader(IHXValues* pHeader);
  100.     HX_RESULT SetAssemblerLATMConfig(IHXValues* pHeader);
  101.     HX_RESULT OnFrame(ULONG32 ulTime, 
  102.       const UINT8* pData, 
  103.       ULONG32 ulSize,
  104.       BOOL bPreviousLoss);
  105.     static void OnFrameCallback(void* pUserData, 
  106. ULONG32 ulTime, 
  107. const UINT8* pData, 
  108. ULONG32 ulSize,
  109. BOOL bPreviousLoss);
  110.     HX_RESULT GetPacketizerPacket(IHXPacket* &pOutPacket);
  111.     HX_RESULT GetAssemblerPacket(IHXPacket* &pOutPacket);
  112.     inline CMediaPacket* BuildMediaPacket(IHXBuffer* pBuffer,
  113.   ULONG32 ulTime,
  114.   ULONG32 ulFlags);
  115.     inline ULONG32 GetPacketTime(IHXPacket* pPacket);
  116.     void FlushPackets(ULONG32 ulCount);
  117.     LONG32 m_lRefCount;
  118.     IHXCommonClassFactory* m_pClassFactory;
  119.     IHXValues* m_pStreamHeader;
  120.     CHXSimpleList m_InputPackets;
  121.     CHXSimpleList m_OutMediaPacketQueue;
  122.     BOOL m_bFlushed;
  123.     BOOL m_bUsesRTPPackets;
  124.     BOOL m_bRTPPacketTested;
  125.     BOOL m_bPacketize;
  126.     BOOL m_bPriorLoss;
  127.     MP4LATMDepack* m_pLATMDepack;
  128.     UINT8* m_pAudioConfig;
  129.     ULONG32 m_ulAudioConfigSize;
  130.     UINT8                       m_unAudioConfigType;
  131.     ULONG32 m_ulSamplesPerSecond;
  132.     ULONG32 m_ulRTPSamplesPerSecond;
  133.     PayloadID m_PayloadID;
  134.     CTSConverter m_TSConverter;
  135. };
  136. #endif // ndef _SMPPAYLD_H_