source: 3DVCSoftware/branches/HTM-4.0.1-VSP-dev0/source/Lib/TLibCommon/TComPicSym.cpp @ 166

Last change on this file since 166 was 166, checked in by mitsubishi-htm, 12 years ago

Initial integration of VSP into HTM 4.0.1. The version used for JCT3V-B0102 at Shanghai meeting.

  • VC9 project/solution files updated. Other Visual C++ project/solution files are not updated.
  • Linux make file updated.

TODO

  • A second release is expected to include some bug fix and improvements on the interface, e.g. to move switches from macro definition to the configuration file.
  • A third release is expected after being integrated within HTM 5.x, which is to be used for CE1.h anchor.
  • Property svn:eol-style set to native
File size: 9.0 KB
RevLine 
[56]1/* The copyright in this software is being made available under the BSD
2 * License, included below. This software may be subject to other third party
3 * and contributor rights, including patent rights, and no such rights are
4 * granted under this license. 
5 *
6 * Copyright (c) 2010-2012, ITU/ISO/IEC
7 * All rights reserved.
8 *
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are met:
11 *
12 *  * Redistributions of source code must retain the above copyright notice,
13 *    this list of conditions and the following disclaimer.
14 *  * Redistributions in binary form must reproduce the above copyright notice,
15 *    this list of conditions and the following disclaimer in the documentation
16 *    and/or other materials provided with the distribution.
17 *  * Neither the name of the ITU/ISO/IEC nor the names of its contributors may
18 *    be used to endorse or promote products derived from this software without
19 *    specific prior written permission.
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS
25 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
31 * THE POSSIBILITY OF SUCH DAMAGE.
32 */
[2]33
34/** \file     TComPicSym.cpp
35    \brief    picture symbol class
36*/
37
38#include "TComPicSym.h"
39
[56]40//! \ingroup TLibCommon
41//! \{
42
[2]43// ====================================================================================================================
44// Constructor / destructor / create / destroy
45// ====================================================================================================================
46
47Void TComPicSym::create  ( Int iPicWidth, Int iPicHeight, UInt uiMaxWidth, UInt uiMaxHeight, UInt uiMaxDepth )
48{
49  UInt i;
50
51  m_uhTotalDepth      = uiMaxDepth;
52  m_uiNumPartitions   = 1<<(m_uhTotalDepth<<1);
53 
54  m_uiMaxCUWidth      = uiMaxWidth;
55  m_uiMaxCUHeight     = uiMaxHeight;
56 
57  m_uiMinCUWidth      = uiMaxWidth  >> m_uhTotalDepth;
58  m_uiMinCUHeight     = uiMaxHeight >> m_uhTotalDepth;
59 
60  m_uiNumPartInWidth  = m_uiMaxCUWidth  / m_uiMinCUWidth;
61  m_uiNumPartInHeight = m_uiMaxCUHeight / m_uiMinCUHeight;
62 
63  m_uiWidthInCU       = ( iPicWidth %m_uiMaxCUWidth  ) ? iPicWidth /m_uiMaxCUWidth  + 1 : iPicWidth /m_uiMaxCUWidth;
64  m_uiHeightInCU      = ( iPicHeight%m_uiMaxCUHeight ) ? iPicHeight/m_uiMaxCUHeight + 1 : iPicHeight/m_uiMaxCUHeight;
65 
66  m_uiNumCUsInFrame   = m_uiWidthInCU * m_uiHeightInCU;
67  m_apcTComDataCU     = new TComDataCU*[m_uiNumCUsInFrame];
68 
69  if (m_uiNumAllocatedSlice>0)
70  {
71    for ( i=0; i<m_uiNumAllocatedSlice ; i++ )
72    {
73      delete m_apcTComSlice[i];
74    }
75    delete [] m_apcTComSlice;
76  }
[56]77  m_apcTComSlice      = new TComSlice*[m_uiNumCUsInFrame*m_uiNumPartitions]; 
[2]78  m_apcTComSlice[0]   = new TComSlice;
79  m_uiNumAllocatedSlice = 1;
80  for ( i=0; i<m_uiNumCUsInFrame ; i++ )
81  {
82    m_apcTComDataCU[i] = new TComDataCU;
[56]83    m_apcTComDataCU[i]->create( m_uiNumPartitions, m_uiMaxCUWidth, m_uiMaxCUHeight, false, m_uiMaxCUWidth >> m_uhTotalDepth
84#if ADAPTIVE_QP_SELECTION
85      , true
86#endif     
87      );
[2]88  }
[56]89
90  m_puiCUOrderMap = new UInt[m_uiNumCUsInFrame+1];
91  m_puiTileIdxMap = new UInt[m_uiNumCUsInFrame];
92  m_puiInverseCUOrderMap = new UInt[m_uiNumCUsInFrame+1];
93
94  for( i=0; i<m_uiNumCUsInFrame; i++ )
95  {
96    m_puiCUOrderMap[i] = i;
97    m_puiInverseCUOrderMap[i] = i;
98  }
[166]99
100#if VSP_N
101  m_apcTComTile = NULL;
102#endif
[2]103}
104
105Void TComPicSym::destroy()
106{
107  Int i;
108 
109  if (m_uiNumAllocatedSlice>0)
110  {
111    for ( i=0; i<m_uiNumAllocatedSlice ; i++ )
112    {
113      delete m_apcTComSlice[i];
114    }
115    delete [] m_apcTComSlice;
116  }
117  m_apcTComSlice = NULL;
118 
119  for (i = 0; i < m_uiNumCUsInFrame; i++)
120  {
121    m_apcTComDataCU[i]->destroy();
122    delete m_apcTComDataCU[i];
123    m_apcTComDataCU[i] = NULL;
124  }
125  delete [] m_apcTComDataCU;
126  m_apcTComDataCU = NULL;
[56]127
128  delete [] m_apcTComTile;
129  m_apcTComTile = NULL;
130
131  delete [] m_puiCUOrderMap;
132  m_puiCUOrderMap = NULL;
133
134  delete [] m_puiTileIdxMap;
135  m_puiTileIdxMap = NULL;
136
137  delete [] m_puiInverseCUOrderMap;
138  m_puiInverseCUOrderMap = NULL;
[2]139}
140
141Void TComPicSym::allocateNewSlice()
142{
143  m_apcTComSlice[m_uiNumAllocatedSlice ++] = new TComSlice;
[56]144  if (m_uiNumAllocatedSlice>=2)
145  {
146    m_apcTComSlice[m_uiNumAllocatedSlice-1]->copySliceInfo( m_apcTComSlice[m_uiNumAllocatedSlice-2] );
147    m_apcTComSlice[m_uiNumAllocatedSlice-1]->initSlice();
148    m_apcTComSlice[m_uiNumAllocatedSlice-1]->initTiles();
149
150  }
[2]151}
152
153Void TComPicSym::clearSliceBuffer()
154{
155  UInt i;
156  for (i = 1; i < m_uiNumAllocatedSlice; i++)
157  {
158    delete m_apcTComSlice[i];
159  }
160  m_uiNumAllocatedSlice = 1;
161}
[56]162
163UInt TComPicSym::getPicSCUEncOrder( UInt SCUAddr )
164{ 
165  return getInverseCUOrderMap(SCUAddr/m_uiNumPartitions)*m_uiNumPartitions + SCUAddr%m_uiNumPartitions; 
166}
167
168UInt TComPicSym::getPicSCUAddr( UInt SCUEncOrder )
169{
170  return getCUOrderMap(SCUEncOrder/m_uiNumPartitions)*m_uiNumPartitions + SCUEncOrder%m_uiNumPartitions;
171}
172
173Void TComPicSym::xCreateTComTileArray()
174{
175  m_apcTComTile = new TComTile*[(m_iNumColumnsMinus1+1)*(m_iNumRowsMinus1+1)];
176  for( UInt i=0; i<(m_iNumColumnsMinus1+1)*(m_iNumRowsMinus1+1); i++ )
177  {
178    m_apcTComTile[i] = new TComTile;
179  }
180}
181
182Void TComPicSym::xInitTiles()
183{
184  UInt  uiTileIdx;
185  UInt  uiColumnIdx = 0;
186  UInt  uiRowIdx = 0;
187  UInt  uiRightEdgePosInCU;
188  UInt  uiBottomEdgePosInCU;
189  Int   i, j;
190
191  //initialize each tile of the current picture
192  for( uiRowIdx=0; uiRowIdx < m_iNumRowsMinus1+1; uiRowIdx++ )
193    for( uiColumnIdx=0; uiColumnIdx < m_iNumColumnsMinus1+1; uiColumnIdx++ )
194    {
195      uiTileIdx = uiRowIdx * (m_iNumColumnsMinus1+1) + uiColumnIdx;
196
197      //initialize the RightEdgePosInCU for each tile
198      uiRightEdgePosInCU = 0;
199      for( i=0; i <= uiColumnIdx; i++ )
200      {
201        uiRightEdgePosInCU += this->getTComTile(uiRowIdx * (m_iNumColumnsMinus1+1) + i)->getTileWidth();
202      }
203      this->getTComTile(uiTileIdx)->setRightEdgePosInCU(uiRightEdgePosInCU-1);
204
205      //initialize the BottomEdgePosInCU for each tile
206      uiBottomEdgePosInCU = 0;
207      for( i=0; i <= uiRowIdx; i++ )
208      {
209        uiBottomEdgePosInCU += this->getTComTile(i * (m_iNumColumnsMinus1+1) + uiColumnIdx)->getTileHeight();
210      }
211      this->getTComTile(uiTileIdx)->setBottomEdgePosInCU(uiBottomEdgePosInCU-1);
212
213      //initialize the FirstCUAddr for each tile
214      this->getTComTile(uiTileIdx)->setFirstCUAddr( (this->getTComTile(uiTileIdx)->getBottomEdgePosInCU() - this->getTComTile(uiTileIdx)->getTileHeight() +1)*m_uiWidthInCU + 
215        this->getTComTile(uiTileIdx)->getRightEdgePosInCU() - this->getTComTile(uiTileIdx)->getTileWidth() + 1);
216    }
217
218  //initialize the TileIdxMap
219  for( i=0; i<m_uiNumCUsInFrame; i++)
220  {
221    for(j=0; j < m_iNumColumnsMinus1+1; j++)
222    {
223      if(i % m_uiWidthInCU <= this->getTComTile(j)->getRightEdgePosInCU())
224      {
225        uiColumnIdx = j;
226        j = m_iNumColumnsMinus1+1;
227      }
228    }
229    for(j=0; j < m_iNumRowsMinus1+1; j++)
230    {
231      if(i/m_uiWidthInCU <= this->getTComTile(j*(m_iNumColumnsMinus1 + 1))->getBottomEdgePosInCU())
232      {
233        uiRowIdx = j;
234        j = m_iNumRowsMinus1 + 1;
235      }
236    }
237    m_puiTileIdxMap[i] = uiRowIdx * (m_iNumColumnsMinus1 + 1) + uiColumnIdx;
238  }
239
240  // Determine bits required for tile index
241  Int uiTilesCount = (m_iNumRowsMinus1+1) * (m_iNumColumnsMinus1+1);
242  m_uiBitsUsedByTileIdx = 0;
243  while (uiTilesCount)
244  {
245    m_uiBitsUsedByTileIdx++;
246    uiTilesCount >>= 1;
247  }
248}
249
250UInt TComPicSym::xCalculateNxtCUAddr( UInt uiCurrCUAddr )
251{
252  UInt  uiNxtCUAddr;
253  UInt  uiTileIdx;
254 
255  //get the tile index for the current LCU
256  uiTileIdx = this->getTileIdxMap(uiCurrCUAddr);
257
258  //get the raster scan address for the next LCU
259  if( uiCurrCUAddr % m_uiWidthInCU == this->getTComTile(uiTileIdx)->getRightEdgePosInCU() && uiCurrCUAddr / m_uiWidthInCU == this->getTComTile(uiTileIdx)->getBottomEdgePosInCU() )
260  //the current LCU is the last LCU of the tile
261  {
262    if(uiTileIdx == (m_iNumColumnsMinus1+1)*(m_iNumRowsMinus1+1)-1)
263    {
264      uiNxtCUAddr = m_uiNumCUsInFrame;
265    }
266    else
267    {
268      uiNxtCUAddr = this->getTComTile(uiTileIdx+1)->getFirstCUAddr();
269    }
270  } 
271  else //the current LCU is not the last LCU of the tile
272  {
273    if( uiCurrCUAddr % m_uiWidthInCU == this->getTComTile(uiTileIdx)->getRightEdgePosInCU() )  //the current LCU is on the rightmost edge of the tile
274    {
275      uiNxtCUAddr = uiCurrCUAddr + m_uiWidthInCU - this->getTComTile(uiTileIdx)->getTileWidth() + 1;
276    }
277    else
278    {
279      uiNxtCUAddr = uiCurrCUAddr + 1;
280    }
281  }
282
283  return uiNxtCUAddr;
284}
285
286TComTile::TComTile()
287{
288}
289
290TComTile::~TComTile()
291{
292}
293//! \}
Note: See TracBrowser for help on using the repository browser.