amr_rs_itr.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 "amr_rs_itr.h"
  36. #include "amr_toc.h"
  37. #include "amr_frame_info.h"
  38. AMRRobustSortingItr::AMRRobustSortingItr() :
  39.     m_bMore(FALSE),
  40.     m_ulFrameIndex(0),
  41.     m_ulOffset(0),
  42.     m_ulFrameCount(0),
  43.     m_pFrameInfo(0)
  44. {}
  45. AMRRobustSortingItr::~AMRRobustSortingItr()
  46. {
  47.     delete [] m_pFrameInfo;
  48.     m_pFrameInfo = 0;
  49. }
  50. BOOL AMRRobustSortingItr::Init(AMRFlavor flavor, ULONG32 ulChannels, 
  51.        ULONG32 ulStartBlock, ULONG32 ulBlockInc,
  52.        const AMRTOCInfo& tocInfo)
  53. {
  54.     m_bMore = FALSE;
  55.     m_ulFrameCount = tocInfo.EntryCount();
  56.     m_ulFrameIndex = 0;
  57.     m_ulOffset = 0;
  58.     if (m_ulFrameCount)
  59.     {
  60. delete [] m_pFrameInfo;
  61. m_pFrameInfo = new FrameInfo[m_ulFrameCount];
  62. ULONG32 ulBlockCount = m_ulFrameCount / ulChannels;
  63. if (m_pFrameInfo && ulBlockCount)
  64. {
  65.     ULONG32 ulFrameIndex = 0;
  66.     ULONG32 ulBlockIndex = ulStartBlock;
  67.     
  68.     for (ULONG32 i = 0; i < ulBlockCount; i++)
  69.     {
  70. ULONG32 ulOffset = 0;
  71. for(ULONG32 j = 0; j < ulChannels; ulFrameIndex++, j++)
  72. {
  73.     ULONG32 frameType = tocInfo.GetType(ulFrameIndex);
  74.     ULONG32 ulFrameBits = CAMRFrameInfo::FrameBits(flavor, 
  75.    frameType);
  76.     ULONG32 ulFrameBytes = 1 + ((ulFrameBits + 7) >> 3);
  77.     
  78.     m_pFrameInfo[ulFrameIndex].Init(ulBlockIndex, ulOffset, 
  79.     ulFrameBytes);
  80.     
  81.     ulOffset += ulFrameBytes;
  82. }
  83. ulBlockIndex += ulBlockInc;
  84.     }
  85.     m_bMore = TRUE;
  86. }
  87.     }
  88.     return m_bMore;
  89. }
  90. ULONG32 AMRRobustSortingItr::Block() const
  91. {
  92.     return m_pFrameInfo[m_ulFrameIndex].Block();
  93. }
  94. ULONG32 AMRRobustSortingItr::Offset() const
  95. {
  96.     return m_ulOffset + m_pFrameInfo[m_ulFrameIndex].Offset();
  97. }
  98. BOOL AMRRobustSortingItr::More() const
  99. {
  100.     return m_bMore;
  101. }
  102. void AMRRobustSortingItr::Next()
  103. {
  104.     if (m_bMore)
  105.     {
  106. m_pFrameInfo[m_ulFrameIndex].DecSize();
  107. ULONG32 ulStartIdx = m_ulFrameIndex;
  108. IncFrameIndex();
  109. // Find the next valid index
  110. while((m_ulFrameIndex != ulStartIdx) &&
  111.       (m_pFrameInfo[m_ulFrameIndex].Size() == 0))
  112. {
  113.     IncFrameIndex();
  114. }
  115. // Determine if we have more to go
  116. m_bMore = (m_pFrameInfo[m_ulFrameIndex].Size() != 0);
  117.     }
  118. }
  119. void AMRRobustSortingItr::IncFrameIndex()
  120. {
  121.     m_ulFrameIndex++;
  122.     // See if we need to loop
  123.     if (m_ulFrameIndex >= m_ulFrameCount)
  124.     {
  125. m_ulFrameIndex = 0;
  126. // Increment the offset since we have looped
  127. m_ulOffset++;
  128.     }
  129. }
  130. AMRRobustSortingItr::FrameInfo::FrameInfo()
  131. {}
  132. void AMRRobustSortingItr::FrameInfo::Init(ULONG32 ulBlock, 
  133.   ULONG32 ulOffset, 
  134.   ULONG32 ulSize)
  135. {
  136.     m_ulBlock = ulBlock;
  137.     m_ulOffset = ulOffset;
  138.     m_ulSize = ulSize;
  139. }
  140. ULONG32 AMRRobustSortingItr::FrameInfo::Block() const
  141. {
  142.     return m_ulBlock;
  143. }
  144. ULONG32 AMRRobustSortingItr::FrameInfo::Offset() const
  145. {
  146.     return m_ulOffset;
  147. }
  148. ULONG32 AMRRobustSortingItr::FrameInfo::Size() const
  149. {
  150.     return m_ulSize;
  151. }
  152. void AMRRobustSortingItr::FrameInfo::DecSize()
  153. {
  154.     m_ulSize--;
  155. }