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

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 AMR_FRAME_HDR_H
  36. #define AMR_FRAME_HDR_H
  37. #include "hxtypes.h"
  38. #include "amr_frame_info.h"
  39. // This class represents the AMR frame header
  40. // This header is defined in 
  41. // 3GPP TS26.235 v5.0.0 Annex B Section B.5.3
  42. //   7   6   5   4   3   2   1   0
  43. // +---+---------------+---+---+---+
  44. // | P |       FT      | Q | P | P |
  45. // +---+---------------+---+---+---+
  46. //
  47. // P  = padding
  48. // FT = frame type
  49. // Q  = quality indicator
  50. //
  51. // According to RFC3267, the three P bits
  52. // MUST be set to 0.
  53. //
  54. class CAMRFrameHdr
  55. {
  56. public:
  57.     CAMRFrameHdr(AMRFlavor flavor);
  58.     CAMRFrameHdr(UINT8 type, UINT8 quality);
  59.     void Pack(UINT8*& pBuf) const;
  60.     void Unpack(UINT8*& pBuf);
  61.     UINT8 Type() const;
  62.     UINT8 Quality() const;
  63.     static ULONG32 HdrBits();
  64.     static ULONG32 HdrBytes();
  65.     static BOOL ValidHdrByte(BYTE ucByte);
  66.     ULONG32 DataBits() const;
  67.     ULONG32 DataBytes() const;
  68. private:
  69.     UINT8 m_type;
  70.     UINT8 m_quality;
  71.     AMRFlavor m_flavor;
  72. };
  73. inline
  74. CAMRFrameHdr::CAMRFrameHdr(AMRFlavor flavor) :
  75.     m_type(15),
  76.     m_quality(0),
  77.     m_flavor(flavor)
  78. {}
  79. inline
  80. CAMRFrameHdr::CAMRFrameHdr(UINT8 type, UINT8 quality) :
  81.     m_type(type),
  82.     m_quality(quality)
  83. {}
  84. inline
  85. void CAMRFrameHdr::Pack(UINT8*& pBuf) const
  86. {
  87.     *pBuf++ = ((m_type & 0xf) << 3) | ((m_quality & 0x1) << 2);
  88. }
  89. inline
  90. void CAMRFrameHdr::Unpack(UINT8*& pBuf)
  91. {
  92.     m_type = (*pBuf >> 3) & 0x0f;
  93.     m_quality = (*pBuf >> 2) & 0x01;
  94.     pBuf++;
  95. }
  96. inline
  97. UINT8 CAMRFrameHdr::Type() const
  98. {
  99.     return m_type;
  100. }
  101. inline
  102. UINT8 CAMRFrameHdr::Quality() const
  103. {
  104.     return m_quality;
  105. }
  106. inline
  107. ULONG32 CAMRFrameHdr::HdrBits()
  108. {
  109.     return 8;
  110. }
  111. inline
  112. ULONG32 CAMRFrameHdr::HdrBytes()
  113. {
  114.     return 1;
  115. }
  116. inline BOOL CAMRFrameHdr::ValidHdrByte(BYTE ucByte)
  117. {
  118.     // According to RFC3267, the three padding
  119.     // bits must be set to 0. Therefore, if ucByte
  120.     // has any one of these bits set to 1, then 
  121.     // we know that this could not be a valid
  122.     // AMR header byte.
  123.     //
  124.     // Bit mask for padding bits is 0x83.
  125.     return ((ucByte & 0x83) ? FALSE : TRUE);
  126. }
  127. inline
  128. ULONG32 CAMRFrameHdr::DataBits() const
  129. {
  130.     return CAMRFrameInfo::FrameBits(m_flavor, m_type);
  131. }
  132. inline
  133. ULONG32 CAMRFrameHdr::DataBytes() const
  134. {
  135.     return (DataBits() + 7) >> 3;
  136. }
  137. #endif // AMR_FRAME_HDR_H