amr_reorder.cpp
上传用户: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. #include "hlxclib/string.h"
  36. #include "amr_reorder.h"
  37. #include "hxassert.h"
  38. #include "amr_frame_info.h"
  39. #include "./reorder.tab"
  40. const UINT16* const CAMRBitReorder::zm_pToCodecTbl[2][8] = {
  41.     {z_pNBMode0DecTbl,  // AMR-NB
  42.      z_pNBMode1DecTbl,
  43.      z_pNBMode2DecTbl,
  44.      z_pNBMode3DecTbl,
  45.      z_pNBMode4DecTbl,
  46.      z_pNBMode5DecTbl,
  47.      z_pNBMode6DecTbl,
  48.      z_pNBMode7DecTbl},
  49.     {0, 0, 0, 0, 0, 0, 0, 0} // AMR-WB
  50. };
  51. CAMRBitReorder::CAMRBitReorder(AMRFlavor flavor) :
  52.     m_pWorkspace(0),
  53.     m_flavor(flavor)
  54. {
  55.     ULONG32 workspaceBytes = (CAMRFrameInfo::MaxFrameBits(m_flavor) + 7) >> 3;
  56.     m_pWorkspace = new UINT8[workspaceBytes];
  57.     for (ULONG32 i = 0; i < 2; i++)
  58. for (ULONG32 j = 0; j < 8; j++)
  59.     m_pToNetworkTbl[i][j] = 0;
  60. }
  61. CAMRBitReorder::~CAMRBitReorder()
  62. {
  63.     // Remove ToNetwork entries if they were created
  64.     for (ULONG32 i = 0; i < 2; i++)
  65.     {
  66. for (ULONG32 j = 0; j < 8; j++)
  67. {
  68.     delete [] m_pToNetworkTbl[i][j];
  69.     m_pToNetworkTbl[i][j] = 0;
  70. }
  71.     }
  72.     delete [] m_pWorkspace;
  73.     m_pWorkspace = 0;
  74. }
  75. void CAMRBitReorder::ToCodec(ULONG32 frameType, UINT8* pInOut)
  76. {
  77.     HX_ASSERT(frameType < 8);
  78.     HX_ASSERT(zm_pToCodecTbl[frameType]);
  79.     ReorderBits(CAMRFrameInfo::FrameBits(m_flavor, frameType),
  80. zm_pToCodecTbl[m_flavor][frameType], 
  81. pInOut);
  82. }
  83. void CAMRBitReorder::ToNetwork(ULONG32 frameType, UINT8* pInOut)
  84. {
  85.     HX_ASSERT(frameType < 8);
  86.     
  87.     if (!m_pToNetworkTbl[frameType])
  88. GenerateTable(frameType);
  89.     ReorderBits(CAMRFrameInfo::FrameBits(m_flavor, frameType),
  90. m_pToNetworkTbl[m_flavor][frameType], 
  91. pInOut);
  92. }
  93. void CAMRBitReorder::ReorderBits(ULONG32 bitCount, const UINT16* pTbl, 
  94.  UINT8* pInOut)
  95. {    
  96.     ULONG32 byteCount = (bitCount + 7) >> 3;
  97.     const UINT8* pIn = pInOut;
  98.     while (bitCount)
  99.     {
  100. UINT8 ch = *pIn++;
  101. ULONG32 i = 8;
  102. while (bitCount && i)
  103. {
  104.     ULONG32 outBit = *pTbl++;
  105.     ULONG32 outByte = outBit >> 3;
  106.     
  107.     ULONG32 outCh = 1 << (7 - (outBit & 0x7));
  108.     if (ch & 0x80)
  109. m_pWorkspace[outByte] |= outCh;
  110.     else
  111. m_pWorkspace[outByte] &= ~outCh;
  112.     ch <<= 1;
  113.     i--;
  114.     bitCount--;
  115. }
  116.     }
  117.     ::memcpy(pInOut, m_pWorkspace, byteCount); /* Flawfinder: ignore */
  118. }
  119. // Generate the "to network" table which is the inverse of the 
  120. // "to codec" table.
  121. void CAMRBitReorder::GenerateTable(ULONG32 frameType)
  122. {
  123.     HX_ASSERT(zm_pToCodecTbl[frameType]);
  124.     HX_ASSERT(!m_pToNetworkTbl[frameType]);
  125.     ULONG32 bitCount = CAMRFrameInfo::FrameBits(m_flavor, frameType);
  126.     
  127.     const UINT16* pSrcTbl = zm_pToCodecTbl[m_flavor][frameType];
  128.     UINT16* pDestTbl = new UINT16[bitCount];
  129.     for (ULONG32 i = 0; i < bitCount; i++)
  130. pDestTbl[pSrcTbl[i]] = (UINT16)i;
  131.     m_pToNetworkTbl[m_flavor][frameType] = pDestTbl;
  132. }