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

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 _RAIBUFS_H_
  36. #define _RAIBUFS_H_
  37. /****************************************************************************
  38.  *  Includes
  39.  */
  40. #include "ctrange.h"
  41. /****************************************************************************
  42.  *  CInterleaveBufs
  43.  */
  44. class CInterleaveBufs
  45. {
  46. public:
  47.     CInterleaveBufs(CStreamParam &param, UINT16 uStreamNumber = 0);
  48.     ~CInterleaveBufs();
  49.     
  50.     HX_RESULT   InitDeinterleaver(void);     
  51.     HX_RESULT   AllocIBufs(void);
  52.     void     DeallocIBufs(void);
  53.     
  54.     HX_RESULT   OnPacket(Byte* pData, 
  55.      UINT32 ulSize, 
  56.      UINT32 ulSequence, 
  57.      UINT32 ulTimestamp, 
  58.      BOOL bLost,
  59.      UINT16 usFlags);
  60.     
  61.     HX_RESULT   OnSeek(void);
  62.     HX_RESULT   DeInterleaveData(void);
  63.     HX_RESULT   GetBlock (Byte** hData, UINT32* pDataSize, UINT32* pDataFlags, UINT32* pTimestamp,UINT32* ulActualTimestamp);
  64.     HX_RESULT   NextBlock(void);
  65.     
  66.     void     OnEndofPackets(void);   
  67.     void     SwitchOff(void);
  68.     void     NumDecodedBytes(UINT32 ulNumDecodedBytes);
  69.     void     NumDecodedBytes(UINT32 ulEndingTS, UINT32 ulNumDecodedBytes);
  70.     
  71.     BOOL     DataAvailable(AUDIO_STATE audioState);
  72.     BOOL     IsISuperBlockFilled(void);
  73.     
  74.     BOOL     IsDSuperBlockEmpty(void);
  75.     BOOL     IsStreamDone(void);
  76.     
  77.     inline     BOOL IsISuperBlockEmpty(void)
  78.     { 
  79. return m_bISuperBlockEmpty;
  80.     }
  81.     
  82.     inline     BOOL IsISuperBlockDone(void)
  83.     { 
  84. return m_bISuperBlockDone;
  85.     }
  86.     
  87.     inline     void FlushIBlock()
  88.     {
  89. m_bISuperBlockEmpty = TRUE;
  90. m_bISuperBlockDone = FALSE;
  91. m_uNumIBlocks = 0;
  92. m_bFirstPacketReceived = FALSE;
  93.     }
  94.     
  95.     inline     void FlushDBlock()
  96.     { 
  97. m_bDSuperBlockEmpty = TRUE; 
  98. if (m_bISuperBlockEmpty)
  99. {
  100.     m_bFirstPacketReceived = FALSE;
  101. }
  102.     }
  103.     
  104.     inline     void SetTimeStampsInTenths(BOOL bTimeStampsInTenths)
  105.     { 
  106. m_bTimeStampsInTenths = bTimeStampsInTenths; 
  107.     }
  108.     inline     void SetSamplesIn(UINT32 ulSamplesIn)
  109.     { 
  110. m_ulSamplesIn = ulSamplesIn; 
  111.     }
  112.     inline void SetReliableSamplesIn(BOOL bFlag)
  113.     {
  114.         m_bReliableSamplesIn = TRUE;
  115.     }
  116.     inline     INT32 RateInBytesPerSec(void) 
  117.     { 
  118. if (m_fmsPerBlock) return (INT32) (1000/m_fmsPerBlock);
  119. return 0;
  120.     };
  121.     
  122.     inline     double GetMSPerBlock()
  123.     { 
  124. return m_fmsPerBlock;
  125.     }
  126.     
  127.     inline     UINT32 GetSuperBlockTime()
  128.     { 
  129. return (UINT32)(m_fmsPerBlock * m_Param.uInterleaveFactor);
  130.     }
  131.     
  132.     double     CalcMs(UINT32 ulNumBytes);
  133.     
  134.     UINT32     CalcBytes(double fMs);
  135.     
  136.     
  137.     CTimeRange   m_IBlockTimeRange;
  138.     CTimeRange   m_DBlockTimeRange;
  139.     
  140. private:
  141.     
  142.     CStreamParam& m_Param;
  143.     CInterleave* m_Interleaver;
  144.     
  145.     UINT16 m_uStreamNumber;    // Debug use
  146.     
  147.     UINT32 m_ulSuperBlockSize;
  148.     double m_fmsPerBlock;
  149.     UINT32 m_ulSamplesIn;
  150.     UINT32 m_ulLastDecodedTime;
  151.     
  152.     Byte* m_pIDataBuf;     // Interleaved Data
  153.     Byte* m_pDDataBuf;     // De-interleaved Data
  154.     UINT32* m_pIPresent;     // Interleaved Flags (data not lost)
  155.     UINT32* m_pDPresent;
  156.     
  157.     double* m_pIActualTimestamps; // Interleaved Timestamps
  158.     double* m_pDActualTimestamps;
  159.     
  160.     UINT16 m_uBlockToDecode;
  161.     UINT16 m_uNumIBlocks;
  162.     UINT32 m_ulFirstSequenceNum;
  163.     UINT32              m_ulVBRSMaxBufSize;
  164.     UINT32              m_ulVBRSDBufBytes;
  165.     double m_fCurrentTimestamp;
  166.     double m_fActualTimestamp;
  167.     double m_fCurrentDeinterleaveTimestamp;
  168.     double m_fMsPerByte;
  169.     double m_fLastDecodedTime;
  170.     BOOL m_bLastDecodedTimeSet;
  171.     BOOL                m_bDeinterleaveInPlace;
  172.     BOOL                m_bReliableSamplesIn;
  173.     BOOL                m_bIsVBRS;
  174.     
  175.     HX_BITFIELD m_bISuperBlockDone:1; // ready to de-interleave
  176.     // Flags & Params for Interleaved Data
  177.     HX_BITFIELD m_bISuperBlockEmpty:1;
  178.     HX_BITFIELD m_bFirstPacketReceived:1;
  179.     // Flags & Params for De-interleaved Data
  180.     HX_BITFIELD m_bDSuperBlockEmpty:1;
  181.     HX_BITFIELD m_bEndOfPackets:1;
  182.     
  183.     HX_BITFIELD m_bTimeStampsInTenths:1;
  184. };
  185. #define INITIAL_VBR_MAXBUFSIZE 8192 // Max AAC frame size is 8191
  186. #endif // ndef _RAIBUFS_H_