source: 3DVCSoftware/branches/HTM-DEV-0.2-dev/source/Lib/TLibEncoder/TEncCu.cpp @ 457

Last change on this file since 457 was 446, checked in by tech, 12 years ago

Added missing parts.

  • Property svn:eol-style set to native
File size: 65.4 KB
Line 
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-2013, 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 */
33
34/** \file     TEncCu.cpp
35    \brief    Coding Unit (CU) encoder class
36*/
37
38#include <stdio.h>
39#include "TEncTop.h"
40#include "TEncCu.h"
41#include "TEncAnalyze.h"
42
43#include <cmath>
44#include <algorithm>
45using namespace std;
46
47//! \ingroup TLibEncoder
48//! \{
49
50// ====================================================================================================================
51// Constructor / destructor / create / destroy
52// ====================================================================================================================
53
54/**
55 \param    uiTotalDepth  total number of allowable depth
56 \param    uiMaxWidth    largest CU width
57 \param    uiMaxHeight   largest CU height
58 */
59Void TEncCu::create(UChar uhTotalDepth, UInt uiMaxWidth, UInt uiMaxHeight)
60{
61  Int i;
62 
63  m_uhTotalDepth   = uhTotalDepth + 1;
64  m_ppcBestCU      = new TComDataCU*[m_uhTotalDepth-1];
65  m_ppcTempCU      = new TComDataCU*[m_uhTotalDepth-1];
66   
67  m_ppcPredYuvBest = new TComYuv*[m_uhTotalDepth-1];
68  m_ppcResiYuvBest = new TComYuv*[m_uhTotalDepth-1];
69  m_ppcRecoYuvBest = new TComYuv*[m_uhTotalDepth-1];
70  m_ppcPredYuvTemp = new TComYuv*[m_uhTotalDepth-1];
71  m_ppcResiYuvTemp = new TComYuv*[m_uhTotalDepth-1];
72  m_ppcRecoYuvTemp = new TComYuv*[m_uhTotalDepth-1];
73  m_ppcOrigYuv     = new TComYuv*[m_uhTotalDepth-1];
74 
75  UInt uiNumPartitions;
76  for( i=0 ; i<m_uhTotalDepth-1 ; i++)
77  {
78    uiNumPartitions = 1<<( ( m_uhTotalDepth - i - 1 )<<1 );
79    UInt uiWidth  = uiMaxWidth  >> i;
80    UInt uiHeight = uiMaxHeight >> i;
81   
82    m_ppcBestCU[i] = new TComDataCU; m_ppcBestCU[i]->create( uiNumPartitions, uiWidth, uiHeight, false, uiMaxWidth >> (m_uhTotalDepth - 1) );
83    m_ppcTempCU[i] = new TComDataCU; m_ppcTempCU[i]->create( uiNumPartitions, uiWidth, uiHeight, false, uiMaxWidth >> (m_uhTotalDepth - 1) );
84   
85    m_ppcPredYuvBest[i] = new TComYuv; m_ppcPredYuvBest[i]->create(uiWidth, uiHeight);
86    m_ppcResiYuvBest[i] = new TComYuv; m_ppcResiYuvBest[i]->create(uiWidth, uiHeight);
87    m_ppcRecoYuvBest[i] = new TComYuv; m_ppcRecoYuvBest[i]->create(uiWidth, uiHeight);
88   
89    m_ppcPredYuvTemp[i] = new TComYuv; m_ppcPredYuvTemp[i]->create(uiWidth, uiHeight);
90    m_ppcResiYuvTemp[i] = new TComYuv; m_ppcResiYuvTemp[i]->create(uiWidth, uiHeight);
91    m_ppcRecoYuvTemp[i] = new TComYuv; m_ppcRecoYuvTemp[i]->create(uiWidth, uiHeight);
92   
93    m_ppcOrigYuv    [i] = new TComYuv; m_ppcOrigYuv    [i]->create(uiWidth, uiHeight);
94  }
95 
96  m_bEncodeDQP = false;
97#if RATE_CONTROL_LAMBDA_DOMAIN
98  m_LCUPredictionSAD = 0;
99  m_addSADDepth      = 0;
100  m_temporalSAD      = 0;
101#endif
102
103  // initialize partition order.
104  UInt* piTmp = &g_auiZscanToRaster[0];
105  initZscanToRaster( m_uhTotalDepth, 1, 0, piTmp);
106  initRasterToZscan( uiMaxWidth, uiMaxHeight, m_uhTotalDepth );
107 
108  // initialize conversion matrix from partition index to pel
109  initRasterToPelXY( uiMaxWidth, uiMaxHeight, m_uhTotalDepth );
110}
111
112Void TEncCu::destroy()
113{
114  Int i;
115 
116  for( i=0 ; i<m_uhTotalDepth-1 ; i++)
117  {
118    if(m_ppcBestCU[i])
119    {
120      m_ppcBestCU[i]->destroy();      delete m_ppcBestCU[i];      m_ppcBestCU[i] = NULL;
121    }
122    if(m_ppcTempCU[i])
123    {
124      m_ppcTempCU[i]->destroy();      delete m_ppcTempCU[i];      m_ppcTempCU[i] = NULL;
125    }
126    if(m_ppcPredYuvBest[i])
127    {
128      m_ppcPredYuvBest[i]->destroy(); delete m_ppcPredYuvBest[i]; m_ppcPredYuvBest[i] = NULL;
129    }
130    if(m_ppcResiYuvBest[i])
131    {
132      m_ppcResiYuvBest[i]->destroy(); delete m_ppcResiYuvBest[i]; m_ppcResiYuvBest[i] = NULL;
133    }
134    if(m_ppcRecoYuvBest[i])
135    {
136      m_ppcRecoYuvBest[i]->destroy(); delete m_ppcRecoYuvBest[i]; m_ppcRecoYuvBest[i] = NULL;
137    }
138    if(m_ppcPredYuvTemp[i])
139    {
140      m_ppcPredYuvTemp[i]->destroy(); delete m_ppcPredYuvTemp[i]; m_ppcPredYuvTemp[i] = NULL;
141    }
142    if(m_ppcResiYuvTemp[i])
143    {
144      m_ppcResiYuvTemp[i]->destroy(); delete m_ppcResiYuvTemp[i]; m_ppcResiYuvTemp[i] = NULL;
145    }
146    if(m_ppcRecoYuvTemp[i])
147    {
148      m_ppcRecoYuvTemp[i]->destroy(); delete m_ppcRecoYuvTemp[i]; m_ppcRecoYuvTemp[i] = NULL;
149    }
150    if(m_ppcOrigYuv[i])
151    {
152      m_ppcOrigYuv[i]->destroy();     delete m_ppcOrigYuv[i];     m_ppcOrigYuv[i] = NULL;
153    }
154  }
155  if(m_ppcBestCU)
156  {
157    delete [] m_ppcBestCU;
158    m_ppcBestCU = NULL;
159  }
160  if(m_ppcTempCU)
161  {
162    delete [] m_ppcTempCU;
163    m_ppcTempCU = NULL;
164  }
165 
166  if(m_ppcPredYuvBest)
167  {
168    delete [] m_ppcPredYuvBest;
169    m_ppcPredYuvBest = NULL;
170  }
171  if(m_ppcResiYuvBest)
172  {
173    delete [] m_ppcResiYuvBest;
174    m_ppcResiYuvBest = NULL;
175  }
176  if(m_ppcRecoYuvBest)
177  {
178    delete [] m_ppcRecoYuvBest;
179    m_ppcRecoYuvBest = NULL;
180  }
181  if(m_ppcPredYuvTemp)
182  {
183    delete [] m_ppcPredYuvTemp;
184    m_ppcPredYuvTemp = NULL;
185  }
186  if(m_ppcResiYuvTemp)
187  {
188    delete [] m_ppcResiYuvTemp;
189    m_ppcResiYuvTemp = NULL;
190  }
191  if(m_ppcRecoYuvTemp)
192  {
193    delete [] m_ppcRecoYuvTemp;
194    m_ppcRecoYuvTemp = NULL;
195  }
196  if(m_ppcOrigYuv)
197  {
198    delete [] m_ppcOrigYuv;
199    m_ppcOrigYuv = NULL;
200  }
201}
202
203/** \param    pcEncTop      pointer of encoder class
204 */
205Void TEncCu::init( TEncTop* pcEncTop )
206{
207  m_pcEncCfg           = pcEncTop;
208  m_pcPredSearch       = pcEncTop->getPredSearch();
209  m_pcTrQuant          = pcEncTop->getTrQuant();
210  m_pcBitCounter       = pcEncTop->getBitCounter();
211  m_pcRdCost           = pcEncTop->getRdCost();
212 
213  m_pcEntropyCoder     = pcEncTop->getEntropyCoder();
214  m_pcCavlcCoder       = pcEncTop->getCavlcCoder();
215  m_pcSbacCoder       = pcEncTop->getSbacCoder();
216  m_pcBinCABAC         = pcEncTop->getBinCABAC();
217 
218  m_pppcRDSbacCoder   = pcEncTop->getRDSbacCoder();
219  m_pcRDGoOnSbacCoder = pcEncTop->getRDGoOnSbacCoder();
220 
221  m_bUseSBACRD        = pcEncTop->getUseSBACRD();
222  m_pcRateCtrl        = pcEncTop->getRateCtrl();
223}
224
225// ====================================================================================================================
226// Public member functions
227// ====================================================================================================================
228
229/** \param  rpcCU pointer of CU data class
230 */
231Void TEncCu::compressCU( TComDataCU*& rpcCU )
232{
233  // initialize CU data
234  m_ppcBestCU[0]->initCU( rpcCU->getPic(), rpcCU->getAddr() );
235  m_ppcTempCU[0]->initCU( rpcCU->getPic(), rpcCU->getAddr() );
236
237#if RATE_CONTROL_LAMBDA_DOMAIN
238  m_addSADDepth      = 0;
239  m_LCUPredictionSAD = 0;
240  m_temporalSAD      = 0;
241#endif
242
243  // analysis of CU
244  xCompressCU( m_ppcBestCU[0], m_ppcTempCU[0], 0 );
245
246#if ADAPTIVE_QP_SELECTION
247  if( m_pcEncCfg->getUseAdaptQpSelect() )
248  {
249    if(rpcCU->getSlice()->getSliceType()!=I_SLICE) //IIII
250    {
251      xLcuCollectARLStats( rpcCU);
252    }
253  }
254#endif
255}
256/** \param  pcCU  pointer of CU data class
257 */
258Void TEncCu::encodeCU ( TComDataCU* pcCU )
259{
260  if ( pcCU->getSlice()->getPPS()->getUseDQP() )
261  {
262    setdQPFlag(true);
263  }
264
265  // Encode CU data
266  xEncodeCU( pcCU, 0, 0 );
267}
268
269// ====================================================================================================================
270// Protected member functions
271// ====================================================================================================================
272/** Derive small set of test modes for AMP encoder speed-up
273 *\param   rpcBestCU
274 *\param   eParentPartSize
275 *\param   bTestAMP_Hor
276 *\param   bTestAMP_Ver
277 *\param   bTestMergeAMP_Hor
278 *\param   bTestMergeAMP_Ver
279 *\returns Void
280*/
281#if AMP_ENC_SPEEDUP
282#if AMP_MRG
283Void TEncCu::deriveTestModeAMP (TComDataCU *&rpcBestCU, PartSize eParentPartSize, Bool &bTestAMP_Hor, Bool &bTestAMP_Ver, Bool &bTestMergeAMP_Hor, Bool &bTestMergeAMP_Ver)
284#else
285Void TEncCu::deriveTestModeAMP (TComDataCU *&rpcBestCU, PartSize eParentPartSize, Bool &bTestAMP_Hor, Bool &bTestAMP_Ver)
286#endif
287{
288  if ( rpcBestCU->getPartitionSize(0) == SIZE_2NxN )
289  {
290    bTestAMP_Hor = true;
291  }
292  else if ( rpcBestCU->getPartitionSize(0) == SIZE_Nx2N )
293  {
294    bTestAMP_Ver = true;
295  }
296  else if ( rpcBestCU->getPartitionSize(0) == SIZE_2Nx2N && rpcBestCU->getMergeFlag(0) == false && rpcBestCU->isSkipped(0) == false )
297  {
298    bTestAMP_Hor = true;         
299    bTestAMP_Ver = true;         
300  }
301
302#if AMP_MRG
303  //! Utilizing the partition size of parent PU   
304  if ( eParentPartSize >= SIZE_2NxnU && eParentPartSize <= SIZE_nRx2N )
305  { 
306    bTestMergeAMP_Hor = true;
307    bTestMergeAMP_Ver = true;
308  }
309
310  if ( eParentPartSize == SIZE_NONE ) //! if parent is intra
311  {
312    if ( rpcBestCU->getPartitionSize(0) == SIZE_2NxN )
313    {
314      bTestMergeAMP_Hor = true;
315    }
316    else if ( rpcBestCU->getPartitionSize(0) == SIZE_Nx2N )
317    {
318      bTestMergeAMP_Ver = true;
319    }
320  }
321
322  if ( rpcBestCU->getPartitionSize(0) == SIZE_2Nx2N && rpcBestCU->isSkipped(0) == false )
323  {
324    bTestMergeAMP_Hor = true;         
325    bTestMergeAMP_Ver = true;         
326  }
327
328  if ( rpcBestCU->getWidth(0) == 64 )
329  { 
330    bTestAMP_Hor = false;
331    bTestAMP_Ver = false;
332  }   
333#else
334  //! Utilizing the partition size of parent PU       
335  if ( eParentPartSize >= SIZE_2NxnU && eParentPartSize <= SIZE_nRx2N )
336  { 
337    bTestAMP_Hor = true;
338    bTestAMP_Ver = true;
339  }
340
341  if ( eParentPartSize == SIZE_2Nx2N )
342  { 
343    bTestAMP_Hor = false;
344    bTestAMP_Ver = false;
345  }     
346#endif
347}
348#endif
349
350// ====================================================================================================================
351// Protected member functions
352// ====================================================================================================================
353/** Compress a CU block recursively with enabling sub-LCU-level delta QP
354 *\param   rpcBestCU
355 *\param   rpcTempCU
356 *\param   uiDepth
357 *\returns Void
358 *
359 *- for loop of QP value to compress the current CU with all possible QP
360*/
361#if AMP_ENC_SPEEDUP
362Void TEncCu::xCompressCU( TComDataCU*& rpcBestCU, TComDataCU*& rpcTempCU, UInt uiDepth, PartSize eParentPartSize )
363#else
364Void TEncCu::xCompressCU( TComDataCU*& rpcBestCU, TComDataCU*& rpcTempCU, UInt uiDepth )
365#endif
366{
367  TComPic* pcPic = rpcBestCU->getPic();
368
369  // get Original YUV data from picture
370  m_ppcOrigYuv[uiDepth]->copyFromPicYuv( pcPic->getPicYuvOrg(), rpcBestCU->getAddr(), rpcBestCU->getZorderIdxInCU() );
371
372  // variables for fast encoder decision
373  Bool    bEarlySkip  = false;
374  Bool    bTrySplit    = true;
375  Double  fRD_Skip    = MAX_DOUBLE;
376
377  // variable for Early CU determination
378  Bool    bSubBranch = true;
379
380  // variable for Cbf fast mode PU decision
381  Bool    doNotBlockPu = true;
382  Bool earlyDetectionSkipMode = false;
383
384  Bool    bTrySplitDQP  = true;
385
386  static  Double  afCost[ MAX_CU_DEPTH ];
387  static  Int      aiNum [ MAX_CU_DEPTH ];
388
389  if ( rpcBestCU->getAddr() == 0 )
390  {
391    ::memset( afCost, 0, sizeof( afCost ) );
392    ::memset( aiNum,  0, sizeof( aiNum  ) );
393  }
394
395  Bool bBoundary = false;
396  UInt uiLPelX   = rpcBestCU->getCUPelX();
397  UInt uiRPelX   = uiLPelX + rpcBestCU->getWidth(0)  - 1;
398  UInt uiTPelY   = rpcBestCU->getCUPelY();
399  UInt uiBPelY   = uiTPelY + rpcBestCU->getHeight(0) - 1;
400
401  Int iBaseQP = xComputeQP( rpcBestCU, uiDepth );
402  Int iMinQP;
403  Int iMaxQP;
404  Bool isAddLowestQP = false;
405  Int lowestQP = -rpcTempCU->getSlice()->getSPS()->getQpBDOffsetY();
406
407  if( (g_uiMaxCUWidth>>uiDepth) >= rpcTempCU->getSlice()->getPPS()->getMinCuDQPSize() )
408  {
409    Int idQP = m_pcEncCfg->getMaxDeltaQP();
410    iMinQP = Clip3( -rpcTempCU->getSlice()->getSPS()->getQpBDOffsetY(), MAX_QP, iBaseQP-idQP );
411    iMaxQP = Clip3( -rpcTempCU->getSlice()->getSPS()->getQpBDOffsetY(), MAX_QP, iBaseQP+idQP );
412    if ( (rpcTempCU->getSlice()->getSPS()->getUseLossless()) && (lowestQP < iMinQP) && rpcTempCU->getSlice()->getPPS()->getUseDQP() )
413    {
414      isAddLowestQP = true; 
415      iMinQP = iMinQP - 1;
416    }
417  }
418  else
419  {
420    iMinQP = rpcTempCU->getQP(0);
421    iMaxQP = rpcTempCU->getQP(0);
422  }
423
424#if RATE_CONTROL_LAMBDA_DOMAIN
425  if ( m_pcEncCfg->getUseRateCtrl() )
426  {
427    iMinQP = m_pcRateCtrl->getRCQP();
428    iMaxQP = m_pcRateCtrl->getRCQP();
429  }
430#else
431  if(m_pcEncCfg->getUseRateCtrl())
432  {
433    Int qp = m_pcRateCtrl->getUnitQP();
434    iMinQP  = Clip3( MIN_QP, MAX_QP, qp);
435    iMaxQP  = Clip3( MIN_QP, MAX_QP, qp);
436  }
437#endif
438
439  // If slice start or slice end is within this cu...
440  TComSlice * pcSlice = rpcTempCU->getPic()->getSlice(rpcTempCU->getPic()->getCurrSliceIdx());
441  Bool bSliceStart = pcSlice->getSliceSegmentCurStartCUAddr()>rpcTempCU->getSCUAddr()&&pcSlice->getSliceSegmentCurStartCUAddr()<rpcTempCU->getSCUAddr()+rpcTempCU->getTotalNumPart();
442  Bool bSliceEnd = (pcSlice->getSliceSegmentCurEndCUAddr()>rpcTempCU->getSCUAddr()&&pcSlice->getSliceSegmentCurEndCUAddr()<rpcTempCU->getSCUAddr()+rpcTempCU->getTotalNumPart());
443  Bool bInsidePicture = ( uiRPelX < rpcBestCU->getSlice()->getSPS()->getPicWidthInLumaSamples() ) && ( uiBPelY < rpcBestCU->getSlice()->getSPS()->getPicHeightInLumaSamples() );
444  // We need to split, so don't try these modes.
445  if(!bSliceEnd && !bSliceStart && bInsidePicture )
446  {
447    for (Int iQP=iMinQP; iQP<=iMaxQP; iQP++)
448    {
449      if (isAddLowestQP && (iQP == iMinQP))
450      {
451        iQP = lowestQP;
452      }
453      // variables for fast encoder decision
454      bEarlySkip  = false;
455      bTrySplit    = true;
456      fRD_Skip    = MAX_DOUBLE;
457
458      rpcTempCU->initEstData( uiDepth, iQP );
459
460      // do inter modes, SKIP and 2Nx2N
461      if( rpcBestCU->getSlice()->getSliceType() != I_SLICE )
462      {
463        // 2Nx2N
464        if(m_pcEncCfg->getUseEarlySkipDetection())
465        {
466          xCheckRDCostInter( rpcBestCU, rpcTempCU, SIZE_2Nx2N );  rpcTempCU->initEstData( uiDepth, iQP );//by Competition for inter_2Nx2N
467        }
468        // SKIP
469        xCheckRDCostMerge2Nx2N( rpcBestCU, rpcTempCU, &earlyDetectionSkipMode );//by Merge for inter_2Nx2N
470        rpcTempCU->initEstData( uiDepth, iQP );
471
472        // fast encoder decision for early skip
473        if ( m_pcEncCfg->getUseFastEnc() )
474        {
475          Int iIdx = g_aucConvertToBit[ rpcBestCU->getWidth(0) ];
476          if ( aiNum [ iIdx ] > 5 && fRD_Skip < EARLY_SKIP_THRES*afCost[ iIdx ]/aiNum[ iIdx ] )
477          {
478            bEarlySkip = true;
479            bTrySplit  = false;
480          }
481        }
482
483        if(!m_pcEncCfg->getUseEarlySkipDetection())
484        {
485          // 2Nx2N, NxN
486          if ( !bEarlySkip )
487          {
488            xCheckRDCostInter( rpcBestCU, rpcTempCU, SIZE_2Nx2N );  rpcTempCU->initEstData( uiDepth, iQP );
489            if(m_pcEncCfg->getUseCbfFastMode())
490            {
491              doNotBlockPu = rpcBestCU->getQtRootCbf( 0 ) != 0;
492            }
493          }
494        }
495      }
496
497      if( (g_uiMaxCUWidth>>uiDepth) >= rpcTempCU->getSlice()->getPPS()->getMinCuDQPSize() )
498      {
499        if(iQP == iBaseQP)
500        {
501          bTrySplitDQP = bTrySplit;
502        }
503      }
504      else
505      {
506        bTrySplitDQP = bTrySplit;
507      }
508      if (isAddLowestQP && (iQP == lowestQP))
509      {
510        iQP = iMinQP;
511      }
512    }
513
514#if RATE_CONTROL_LAMBDA_DOMAIN
515    if ( uiDepth <= m_addSADDepth )
516    {
517      m_LCUPredictionSAD += m_temporalSAD;
518      m_addSADDepth = uiDepth;
519    }
520#endif
521
522    if(!earlyDetectionSkipMode)
523    {
524      for (Int iQP=iMinQP; iQP<=iMaxQP; iQP++)
525      {
526        if (isAddLowestQP && (iQP == iMinQP))
527        {
528          iQP = lowestQP;
529        }
530        rpcTempCU->initEstData( uiDepth, iQP );
531
532        // do inter modes, NxN, 2NxN, and Nx2N
533        if( rpcBestCU->getSlice()->getSliceType() != I_SLICE )
534        {
535          // 2Nx2N, NxN
536          if ( !bEarlySkip )
537          {
538            if(!( (rpcBestCU->getWidth(0)==8) && (rpcBestCU->getHeight(0)==8) ))
539            {
540              if( uiDepth == g_uiMaxCUDepth - g_uiAddCUDepth && doNotBlockPu)
541              {
542                xCheckRDCostInter( rpcBestCU, rpcTempCU, SIZE_NxN   );
543                rpcTempCU->initEstData( uiDepth, iQP );
544              }
545            }
546          }
547
548          // 2NxN, Nx2N
549          if(doNotBlockPu)
550          {
551            xCheckRDCostInter( rpcBestCU, rpcTempCU, SIZE_Nx2N  );
552            rpcTempCU->initEstData( uiDepth, iQP );
553            if(m_pcEncCfg->getUseCbfFastMode() && rpcBestCU->getPartitionSize(0) == SIZE_Nx2N )
554            {
555              doNotBlockPu = rpcBestCU->getQtRootCbf( 0 ) != 0;
556            }
557          }
558          if(doNotBlockPu)
559          {
560            xCheckRDCostInter      ( rpcBestCU, rpcTempCU, SIZE_2NxN  );
561            rpcTempCU->initEstData( uiDepth, iQP );
562            if(m_pcEncCfg->getUseCbfFastMode() && rpcBestCU->getPartitionSize(0) == SIZE_2NxN)
563            {
564              doNotBlockPu = rpcBestCU->getQtRootCbf( 0 ) != 0;
565            }
566          }
567
568#if 1
569          //! Try AMP (SIZE_2NxnU, SIZE_2NxnD, SIZE_nLx2N, SIZE_nRx2N)
570          if( pcPic->getSlice(0)->getSPS()->getAMPAcc(uiDepth) )
571          {
572#if AMP_ENC_SPEEDUP       
573            Bool bTestAMP_Hor = false, bTestAMP_Ver = false;
574
575#if AMP_MRG
576            Bool bTestMergeAMP_Hor = false, bTestMergeAMP_Ver = false;
577
578            deriveTestModeAMP (rpcBestCU, eParentPartSize, bTestAMP_Hor, bTestAMP_Ver, bTestMergeAMP_Hor, bTestMergeAMP_Ver);
579#else
580            deriveTestModeAMP (rpcBestCU, eParentPartSize, bTestAMP_Hor, bTestAMP_Ver);
581#endif
582
583            //! Do horizontal AMP
584            if ( bTestAMP_Hor )
585            {
586              if(doNotBlockPu)
587              {
588                xCheckRDCostInter( rpcBestCU, rpcTempCU, SIZE_2NxnU );
589                rpcTempCU->initEstData( uiDepth, iQP );
590                if(m_pcEncCfg->getUseCbfFastMode() && rpcBestCU->getPartitionSize(0) == SIZE_2NxnU )
591                {
592                  doNotBlockPu = rpcBestCU->getQtRootCbf( 0 ) != 0;
593                }
594              }
595              if(doNotBlockPu)
596              {
597                xCheckRDCostInter( rpcBestCU, rpcTempCU, SIZE_2NxnD );
598                rpcTempCU->initEstData( uiDepth, iQP );
599                if(m_pcEncCfg->getUseCbfFastMode() && rpcBestCU->getPartitionSize(0) == SIZE_2NxnD )
600                {
601                  doNotBlockPu = rpcBestCU->getQtRootCbf( 0 ) != 0;
602                }
603              }
604            }
605#if AMP_MRG
606            else if ( bTestMergeAMP_Hor ) 
607            {
608              if(doNotBlockPu)
609              {
610                xCheckRDCostInter( rpcBestCU, rpcTempCU, SIZE_2NxnU, true );
611                rpcTempCU->initEstData( uiDepth, iQP );
612                if(m_pcEncCfg->getUseCbfFastMode() && rpcBestCU->getPartitionSize(0) == SIZE_2NxnU )
613                {
614                  doNotBlockPu = rpcBestCU->getQtRootCbf( 0 ) != 0;
615                }
616              }
617              if(doNotBlockPu)
618              {
619                xCheckRDCostInter( rpcBestCU, rpcTempCU, SIZE_2NxnD, true );
620                rpcTempCU->initEstData( uiDepth, iQP );
621                if(m_pcEncCfg->getUseCbfFastMode() && rpcBestCU->getPartitionSize(0) == SIZE_2NxnD )
622                {
623                  doNotBlockPu = rpcBestCU->getQtRootCbf( 0 ) != 0;
624                }
625              }
626            }
627#endif
628
629            //! Do horizontal AMP
630            if ( bTestAMP_Ver )
631            {
632              if(doNotBlockPu)
633              {
634                xCheckRDCostInter( rpcBestCU, rpcTempCU, SIZE_nLx2N );
635                rpcTempCU->initEstData( uiDepth, iQP );
636                if(m_pcEncCfg->getUseCbfFastMode() && rpcBestCU->getPartitionSize(0) == SIZE_nLx2N )
637                {
638                  doNotBlockPu = rpcBestCU->getQtRootCbf( 0 ) != 0;
639                }
640              }
641              if(doNotBlockPu)
642              {
643                xCheckRDCostInter( rpcBestCU, rpcTempCU, SIZE_nRx2N );
644                rpcTempCU->initEstData( uiDepth, iQP );
645              }
646            }
647#if AMP_MRG
648            else if ( bTestMergeAMP_Ver )
649            {
650              if(doNotBlockPu)
651              {
652                xCheckRDCostInter( rpcBestCU, rpcTempCU, SIZE_nLx2N, true );
653                rpcTempCU->initEstData( uiDepth, iQP );
654                if(m_pcEncCfg->getUseCbfFastMode() && rpcBestCU->getPartitionSize(0) == SIZE_nLx2N )
655                {
656                  doNotBlockPu = rpcBestCU->getQtRootCbf( 0 ) != 0;
657                }
658              }
659              if(doNotBlockPu)
660              {
661                xCheckRDCostInter( rpcBestCU, rpcTempCU, SIZE_nRx2N, true );
662                rpcTempCU->initEstData( uiDepth, iQP );
663              }
664            }
665#endif
666
667#else
668            xCheckRDCostInter( rpcBestCU, rpcTempCU, SIZE_2NxnU );
669            rpcTempCU->initEstData( uiDepth, iQP );
670            xCheckRDCostInter( rpcBestCU, rpcTempCU, SIZE_2NxnD );
671            rpcTempCU->initEstData( uiDepth, iQP );
672            xCheckRDCostInter( rpcBestCU, rpcTempCU, SIZE_nLx2N );
673            rpcTempCU->initEstData( uiDepth, iQP );
674
675            xCheckRDCostInter( rpcBestCU, rpcTempCU, SIZE_nRx2N );
676            rpcTempCU->initEstData( uiDepth, iQP );
677
678#endif
679          }   
680#endif
681        }
682
683        // do normal intra modes
684        if ( !bEarlySkip )
685        {
686          // speedup for inter frames
687          if( rpcBestCU->getSlice()->getSliceType() == I_SLICE || 
688            rpcBestCU->getCbf( 0, TEXT_LUMA     ) != 0   ||
689            rpcBestCU->getCbf( 0, TEXT_CHROMA_U ) != 0   ||
690            rpcBestCU->getCbf( 0, TEXT_CHROMA_V ) != 0     ) // avoid very complex intra if it is unlikely
691          {
692            xCheckRDCostIntra( rpcBestCU, rpcTempCU, SIZE_2Nx2N );
693            rpcTempCU->initEstData( uiDepth, iQP );
694            if( uiDepth == g_uiMaxCUDepth - g_uiAddCUDepth )
695            {
696              if( rpcTempCU->getWidth(0) > ( 1 << rpcTempCU->getSlice()->getSPS()->getQuadtreeTULog2MinSize() ) )
697              {
698                xCheckRDCostIntra( rpcBestCU, rpcTempCU, SIZE_NxN   );
699                rpcTempCU->initEstData( uiDepth, iQP );
700              }
701            }
702          }
703        }
704
705        // test PCM
706        if(pcPic->getSlice(0)->getSPS()->getUsePCM()
707          && rpcTempCU->getWidth(0) <= (1<<pcPic->getSlice(0)->getSPS()->getPCMLog2MaxSize())
708          && rpcTempCU->getWidth(0) >= (1<<pcPic->getSlice(0)->getSPS()->getPCMLog2MinSize()) )
709        {
710          UInt uiRawBits = (2 * g_bitDepthY + g_bitDepthC) * rpcBestCU->getWidth(0) * rpcBestCU->getHeight(0) / 2;
711          UInt uiBestBits = rpcBestCU->getTotalBits();
712#if H_3D_VSO // M7
713          Double dRDCostTemp = m_pcRdCost->getUseVSO() ? m_pcRdCost->calcRdCostVSO(uiRawBits, 0) : m_pcRdCost->calcRdCost(uiRawBits, 0);
714          if((uiBestBits > uiRawBits) || (rpcBestCU->getTotalCost() > dRDCostTemp ))
715#else
716          if((uiBestBits > uiRawBits) || (rpcBestCU->getTotalCost() > m_pcRdCost->calcRdCost(uiRawBits, 0)))
717#endif
718          {
719            xCheckIntraPCM (rpcBestCU, rpcTempCU);
720            rpcTempCU->initEstData( uiDepth, iQP );
721          }
722        }
723        if (isAddLowestQP && (iQP == lowestQP))
724        {
725          iQP = iMinQP;
726        }
727      }
728    }
729
730    m_pcEntropyCoder->resetBits();
731    m_pcEntropyCoder->encodeSplitFlag( rpcBestCU, 0, uiDepth, true );
732    rpcBestCU->getTotalBits() += m_pcEntropyCoder->getNumberOfWrittenBits(); // split bits
733    if(m_pcEncCfg->getUseSBACRD())
734    {
735      rpcBestCU->getTotalBins() += ((TEncBinCABAC *)((TEncSbac*)m_pcEntropyCoder->m_pcEntropyCoderIf)->getEncBinIf())->getBinsCoded();
736    }
737
738#if H_3D_VSO // M8
739    if ( m_pcRdCost->getUseVSO() )   
740      rpcBestCU->getTotalCost()  = m_pcRdCost->calcRdCostVSO( rpcBestCU->getTotalBits(), rpcBestCU->getTotalDistortion() );   
741    else
742#endif
743    rpcBestCU->getTotalCost()  = m_pcRdCost->calcRdCost( rpcBestCU->getTotalBits(), rpcBestCU->getTotalDistortion() );
744
745    // accumulate statistics for early skip
746    if ( m_pcEncCfg->getUseFastEnc() )
747    {
748      if ( rpcBestCU->isSkipped(0) )
749      {
750        Int iIdx = g_aucConvertToBit[ rpcBestCU->getWidth(0) ];
751        afCost[ iIdx ] += rpcBestCU->getTotalCost();
752        aiNum [ iIdx ] ++;
753      }
754    }
755
756    // Early CU determination
757    if( m_pcEncCfg->getUseEarlyCU() && rpcBestCU->isSkipped(0) )
758    {
759      bSubBranch = false;
760    }
761    else
762    {
763      bSubBranch = true;
764    }
765  }
766  else if(!(bSliceEnd && bInsidePicture))
767  {
768    bBoundary = true;
769#if RATE_CONTROL_LAMBDA_DOMAIN
770    m_addSADDepth++;
771#endif
772  }
773
774  // copy orginal YUV samples to PCM buffer
775  if( rpcBestCU->isLosslessCoded(0) && (rpcBestCU->getIPCMFlag(0) == false))
776  {
777    xFillPCMBuffer(rpcBestCU, m_ppcOrigYuv[uiDepth]);
778  }
779  if( (g_uiMaxCUWidth>>uiDepth) == rpcTempCU->getSlice()->getPPS()->getMinCuDQPSize() )
780  {
781    Int idQP = m_pcEncCfg->getMaxDeltaQP();
782    iMinQP = Clip3( -rpcTempCU->getSlice()->getSPS()->getQpBDOffsetY(), MAX_QP, iBaseQP-idQP );
783    iMaxQP = Clip3( -rpcTempCU->getSlice()->getSPS()->getQpBDOffsetY(), MAX_QP, iBaseQP+idQP );
784    if ( (rpcTempCU->getSlice()->getSPS()->getUseLossless()) && (lowestQP < iMinQP) && rpcTempCU->getSlice()->getPPS()->getUseDQP() )
785    {
786      isAddLowestQP = true;
787      iMinQP = iMinQP - 1;     
788    }
789  }
790  else if( (g_uiMaxCUWidth>>uiDepth) > rpcTempCU->getSlice()->getPPS()->getMinCuDQPSize() )
791  {
792    iMinQP = iBaseQP;
793    iMaxQP = iBaseQP;
794  }
795  else
796  {
797    Int iStartQP;
798    if( pcPic->getCU( rpcTempCU->getAddr() )->getSliceSegmentStartCU(rpcTempCU->getZorderIdxInCU()) == pcSlice->getSliceSegmentCurStartCUAddr())
799    {
800      iStartQP = rpcTempCU->getQP(0);
801    }
802    else
803    {
804      UInt uiCurSliceStartPartIdx = pcSlice->getSliceSegmentCurStartCUAddr() % pcPic->getNumPartInCU() - rpcTempCU->getZorderIdxInCU();
805      iStartQP = rpcTempCU->getQP(uiCurSliceStartPartIdx);
806    }
807    iMinQP = iStartQP;
808    iMaxQP = iStartQP;
809  }
810#if RATE_CONTROL_LAMBDA_DOMAIN
811  if ( m_pcEncCfg->getUseRateCtrl() )
812  {
813    iMinQP = m_pcRateCtrl->getRCQP();
814    iMaxQP = m_pcRateCtrl->getRCQP();
815  }
816#else
817  if(m_pcEncCfg->getUseRateCtrl())
818  {
819    Int qp = m_pcRateCtrl->getUnitQP();
820    iMinQP  = Clip3( MIN_QP, MAX_QP, qp);
821    iMaxQP  = Clip3( MIN_QP, MAX_QP, qp);
822  }
823#endif
824  for (Int iQP=iMinQP; iQP<=iMaxQP; iQP++)
825  {
826    if (isAddLowestQP && (iQP == iMinQP))
827    {
828      iQP = lowestQP;
829    }
830    rpcTempCU->initEstData( uiDepth, iQP );
831
832    // further split
833    if( bSubBranch && bTrySplitDQP && uiDepth < g_uiMaxCUDepth - g_uiAddCUDepth )
834    {
835#if H_3D_VSO // M9
836      // reset Model
837      if( m_pcRdCost->getUseRenModel() )
838      {
839        UInt  uiWidth     = m_ppcOrigYuv[uiDepth]->getWidth ( );
840        UInt  uiHeight    = m_ppcOrigYuv[uiDepth]->getHeight( );
841        Pel*  piSrc       = m_ppcOrigYuv[uiDepth]->getLumaAddr( 0 );
842        UInt  uiSrcStride = m_ppcOrigYuv[uiDepth]->getStride();
843        m_pcRdCost->setRenModelData( m_ppcBestCU[uiDepth], 0, piSrc, uiSrcStride, uiWidth, uiHeight );
844      }
845#endif
846
847      UChar       uhNextDepth         = uiDepth+1;
848      TComDataCU* pcSubBestPartCU     = m_ppcBestCU[uhNextDepth];
849      TComDataCU* pcSubTempPartCU     = m_ppcTempCU[uhNextDepth];
850
851      for ( UInt uiPartUnitIdx = 0; uiPartUnitIdx < 4; uiPartUnitIdx++ )
852      {
853        pcSubBestPartCU->initSubCU( rpcTempCU, uiPartUnitIdx, uhNextDepth, iQP );           // clear sub partition datas or init.
854        pcSubTempPartCU->initSubCU( rpcTempCU, uiPartUnitIdx, uhNextDepth, iQP );           // clear sub partition datas or init.
855
856        Bool bInSlice = pcSubBestPartCU->getSCUAddr()+pcSubBestPartCU->getTotalNumPart()>pcSlice->getSliceSegmentCurStartCUAddr()&&pcSubBestPartCU->getSCUAddr()<pcSlice->getSliceSegmentCurEndCUAddr();
857        if(bInSlice && ( pcSubBestPartCU->getCUPelX() < pcSlice->getSPS()->getPicWidthInLumaSamples() ) && ( pcSubBestPartCU->getCUPelY() < pcSlice->getSPS()->getPicHeightInLumaSamples() ) )
858        {
859          if( m_bUseSBACRD )
860          {
861            if ( 0 == uiPartUnitIdx) //initialize RD with previous depth buffer
862            {
863              m_pppcRDSbacCoder[uhNextDepth][CI_CURR_BEST]->load(m_pppcRDSbacCoder[uiDepth][CI_CURR_BEST]);
864            }
865            else
866            {
867              m_pppcRDSbacCoder[uhNextDepth][CI_CURR_BEST]->load(m_pppcRDSbacCoder[uhNextDepth][CI_NEXT_BEST]);
868            }
869          }
870
871#if AMP_ENC_SPEEDUP
872          if ( rpcBestCU->isIntra(0) )
873          {
874            xCompressCU( pcSubBestPartCU, pcSubTempPartCU, uhNextDepth, SIZE_NONE );
875          }
876          else
877          {
878            xCompressCU( pcSubBestPartCU, pcSubTempPartCU, uhNextDepth, rpcBestCU->getPartitionSize(0) );
879          }
880#else
881          xCompressCU( pcSubBestPartCU, pcSubTempPartCU, uhNextDepth );
882#endif
883
884          rpcTempCU->copyPartFrom( pcSubBestPartCU, uiPartUnitIdx, uhNextDepth );         // Keep best part data to current temporary data.
885          xCopyYuv2Tmp( pcSubBestPartCU->getTotalNumPart()*uiPartUnitIdx, uhNextDepth );
886        }
887        else if (bInSlice)
888        {
889          pcSubBestPartCU->copyToPic( uhNextDepth );
890          rpcTempCU->copyPartFrom( pcSubBestPartCU, uiPartUnitIdx, uhNextDepth );
891        }
892      }
893
894      if( !bBoundary )
895      {
896        m_pcEntropyCoder->resetBits();
897        m_pcEntropyCoder->encodeSplitFlag( rpcTempCU, 0, uiDepth, true );
898
899        rpcTempCU->getTotalBits() += m_pcEntropyCoder->getNumberOfWrittenBits(); // split bits
900        if(m_pcEncCfg->getUseSBACRD())
901        {
902          rpcTempCU->getTotalBins() += ((TEncBinCABAC *)((TEncSbac*)m_pcEntropyCoder->m_pcEntropyCoderIf)->getEncBinIf())->getBinsCoded();
903        }
904      }
905
906#if H_3D_VSO // M10
907      if ( m_pcRdCost->getUseVSO() )
908        rpcTempCU->getTotalCost()  = m_pcRdCost->calcRdCostVSO( rpcTempCU->getTotalBits(), rpcTempCU->getTotalDistortion() );
909      else
910#endif
911      rpcTempCU->getTotalCost()  = m_pcRdCost->calcRdCost( rpcTempCU->getTotalBits(), rpcTempCU->getTotalDistortion() );
912
913      if( (g_uiMaxCUWidth>>uiDepth) == rpcTempCU->getSlice()->getPPS()->getMinCuDQPSize() && rpcTempCU->getSlice()->getPPS()->getUseDQP())
914      {
915        Bool hasResidual = false;
916        for( UInt uiBlkIdx = 0; uiBlkIdx < rpcTempCU->getTotalNumPart(); uiBlkIdx ++)
917        {
918          if( ( pcPic->getCU( rpcTempCU->getAddr() )->getSliceSegmentStartCU(uiBlkIdx+rpcTempCU->getZorderIdxInCU()) == rpcTempCU->getSlice()->getSliceSegmentCurStartCUAddr() ) && 
919              ( rpcTempCU->getCbf( uiBlkIdx, TEXT_LUMA ) || rpcTempCU->getCbf( uiBlkIdx, TEXT_CHROMA_U ) || rpcTempCU->getCbf( uiBlkIdx, TEXT_CHROMA_V ) ) )
920          {
921            hasResidual = true;
922            break;
923          }
924        }
925
926        UInt uiTargetPartIdx;
927        if ( pcPic->getCU( rpcTempCU->getAddr() )->getSliceSegmentStartCU(rpcTempCU->getZorderIdxInCU()) != pcSlice->getSliceSegmentCurStartCUAddr() )
928        {
929          uiTargetPartIdx = pcSlice->getSliceSegmentCurStartCUAddr() % pcPic->getNumPartInCU() - rpcTempCU->getZorderIdxInCU();
930        }
931        else
932        {
933          uiTargetPartIdx = 0;
934        }
935        if ( hasResidual )
936        {
937#if !RDO_WITHOUT_DQP_BITS
938          m_pcEntropyCoder->resetBits();
939          m_pcEntropyCoder->encodeQP( rpcTempCU, uiTargetPartIdx, false );
940          rpcTempCU->getTotalBits() += m_pcEntropyCoder->getNumberOfWrittenBits(); // dQP bits
941          if(m_pcEncCfg->getUseSBACRD())
942          {
943            rpcTempCU->getTotalBins() += ((TEncBinCABAC *)((TEncSbac*)m_pcEntropyCoder->m_pcEntropyCoderIf)->getEncBinIf())->getBinsCoded();
944          }
945#if H_3D_VSO // M11
946          if ( m_pcRdCost->getUseLambdaScaleVSO())         
947            rpcTempCU->getTotalCost()  = m_pcRdCost->calcRdCostVSO( rpcTempCU->getTotalBits(), rpcTempCU->getTotalDistortion() );         
948          else
949#endif
950          rpcTempCU->getTotalCost()  = m_pcRdCost->calcRdCost( rpcTempCU->getTotalBits(), rpcTempCU->getTotalDistortion() );
951#endif
952
953          Bool foundNonZeroCbf = false;
954          rpcTempCU->setQPSubCUs( rpcTempCU->getRefQP( uiTargetPartIdx ), rpcTempCU, 0, uiDepth, foundNonZeroCbf );
955          assert( foundNonZeroCbf );
956        }
957        else
958        {
959          rpcTempCU->setQPSubParts( rpcTempCU->getRefQP( uiTargetPartIdx ), 0, uiDepth ); // set QP to default QP
960        }
961      }
962
963      if( m_bUseSBACRD )
964      {
965        m_pppcRDSbacCoder[uhNextDepth][CI_NEXT_BEST]->store(m_pppcRDSbacCoder[uiDepth][CI_TEMP_BEST]);
966      }
967      Bool isEndOfSlice        = rpcBestCU->getSlice()->getSliceMode()==FIXED_NUMBER_OF_BYTES
968                                 && (rpcBestCU->getTotalBits()>rpcBestCU->getSlice()->getSliceArgument()<<3);
969      Bool isEndOfSliceSegment = rpcBestCU->getSlice()->getSliceSegmentMode()==FIXED_NUMBER_OF_BYTES
970                                 && (rpcBestCU->getTotalBits()>rpcBestCU->getSlice()->getSliceSegmentArgument()<<3);
971      if(isEndOfSlice||isEndOfSliceSegment)
972      {
973        rpcBestCU->getTotalCost()=rpcTempCU->getTotalCost()+1;
974      }
975      xCheckBestMode( rpcBestCU, rpcTempCU, uiDepth);                                  // RD compare current larger prediction
976    }                                                                                  // with sub partitioned prediction.
977    if (isAddLowestQP && (iQP == lowestQP))
978    {
979      iQP = iMinQP;
980    }
981  }
982
983
984#if H_3D_VSO // M12
985  if( m_pcRdCost->getUseRenModel() )
986  {
987    UInt  uiWidth     = m_ppcRecoYuvBest[uiDepth]->getWidth   ( );
988    UInt  uiHeight    = m_ppcRecoYuvBest[uiDepth]->getHeight  ( );
989    Pel*  piSrc       = m_ppcRecoYuvBest[uiDepth]->getLumaAddr( 0 );
990    UInt  uiSrcStride = m_ppcRecoYuvBest[uiDepth]->getStride  ( );
991    m_pcRdCost->setRenModelData( rpcBestCU, 0, piSrc, uiSrcStride, uiWidth, uiHeight );
992  }
993#endif
994
995  rpcBestCU->copyToPic(uiDepth);                                                     // Copy Best data to Picture for next partition prediction.
996
997  xCopyYuv2Pic( rpcBestCU->getPic(), rpcBestCU->getAddr(), rpcBestCU->getZorderIdxInCU(), uiDepth, uiDepth, rpcBestCU, uiLPelX, uiTPelY );   // Copy Yuv data to picture Yuv
998  if( bBoundary ||(bSliceEnd && bInsidePicture))
999  {
1000    return;
1001  }
1002
1003  // Assert if Best prediction mode is NONE
1004  // Selected mode's RD-cost must be not MAX_DOUBLE.
1005  assert( rpcBestCU->getPartitionSize ( 0 ) != SIZE_NONE  );
1006  assert( rpcBestCU->getPredictionMode( 0 ) != MODE_NONE  );
1007  assert( rpcBestCU->getTotalCost     (   ) != MAX_DOUBLE );
1008}
1009
1010/** finish encoding a cu and handle end-of-slice conditions
1011 * \param pcCU
1012 * \param uiAbsPartIdx
1013 * \param uiDepth
1014 * \returns Void
1015 */
1016Void TEncCu::finishCU( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
1017{
1018  TComPic* pcPic = pcCU->getPic();
1019  TComSlice * pcSlice = pcCU->getPic()->getSlice(pcCU->getPic()->getCurrSliceIdx());
1020
1021  //Calculate end address
1022  UInt uiCUAddr = pcCU->getSCUAddr()+uiAbsPartIdx;
1023
1024  UInt uiInternalAddress = pcPic->getPicSym()->getPicSCUAddr(pcSlice->getSliceSegmentCurEndCUAddr()-1) % pcPic->getNumPartInCU();
1025  UInt uiExternalAddress = pcPic->getPicSym()->getPicSCUAddr(pcSlice->getSliceSegmentCurEndCUAddr()-1) / pcPic->getNumPartInCU();
1026  UInt uiPosX = ( uiExternalAddress % pcPic->getFrameWidthInCU() ) * g_uiMaxCUWidth+ g_auiRasterToPelX[ g_auiZscanToRaster[uiInternalAddress] ];
1027  UInt uiPosY = ( uiExternalAddress / pcPic->getFrameWidthInCU() ) * g_uiMaxCUHeight+ g_auiRasterToPelY[ g_auiZscanToRaster[uiInternalAddress] ];
1028  UInt uiWidth = pcSlice->getSPS()->getPicWidthInLumaSamples();
1029  UInt uiHeight = pcSlice->getSPS()->getPicHeightInLumaSamples();
1030  while(uiPosX>=uiWidth||uiPosY>=uiHeight)
1031  {
1032    uiInternalAddress--;
1033    uiPosX = ( uiExternalAddress % pcPic->getFrameWidthInCU() ) * g_uiMaxCUWidth+ g_auiRasterToPelX[ g_auiZscanToRaster[uiInternalAddress] ];
1034    uiPosY = ( uiExternalAddress / pcPic->getFrameWidthInCU() ) * g_uiMaxCUHeight+ g_auiRasterToPelY[ g_auiZscanToRaster[uiInternalAddress] ];
1035  }
1036  uiInternalAddress++;
1037  if(uiInternalAddress==pcCU->getPic()->getNumPartInCU())
1038  {
1039    uiInternalAddress = 0;
1040    uiExternalAddress = pcPic->getPicSym()->getCUOrderMap(pcPic->getPicSym()->getInverseCUOrderMap(uiExternalAddress)+1);
1041  }
1042  UInt uiRealEndAddress = pcPic->getPicSym()->getPicSCUEncOrder(uiExternalAddress*pcPic->getNumPartInCU()+uiInternalAddress);
1043
1044  // Encode slice finish
1045  Bool bTerminateSlice = false;
1046  if (uiCUAddr+(pcCU->getPic()->getNumPartInCU()>>(uiDepth<<1)) == uiRealEndAddress)
1047  {
1048    bTerminateSlice = true;
1049  }
1050  UInt uiGranularityWidth = g_uiMaxCUWidth;
1051  uiPosX = pcCU->getCUPelX() + g_auiRasterToPelX[ g_auiZscanToRaster[uiAbsPartIdx] ];
1052  uiPosY = pcCU->getCUPelY() + g_auiRasterToPelY[ g_auiZscanToRaster[uiAbsPartIdx] ];
1053  Bool granularityBoundary=((uiPosX+pcCU->getWidth(uiAbsPartIdx))%uiGranularityWidth==0||(uiPosX+pcCU->getWidth(uiAbsPartIdx)==uiWidth))
1054    &&((uiPosY+pcCU->getHeight(uiAbsPartIdx))%uiGranularityWidth==0||(uiPosY+pcCU->getHeight(uiAbsPartIdx)==uiHeight));
1055 
1056  if(granularityBoundary)
1057  {
1058    // The 1-terminating bit is added to all streams, so don't add it here when it's 1.
1059    if (!bTerminateSlice)
1060      m_pcEntropyCoder->encodeTerminatingBit( bTerminateSlice ? 1 : 0 );
1061  }
1062 
1063  Int numberOfWrittenBits = 0;
1064  if (m_pcBitCounter)
1065  {
1066    numberOfWrittenBits = m_pcEntropyCoder->getNumberOfWrittenBits();
1067  }
1068 
1069  // Calculate slice end IF this CU puts us over slice bit size.
1070  UInt iGranularitySize = pcCU->getPic()->getNumPartInCU();
1071  Int iGranularityEnd = ((pcCU->getSCUAddr()+uiAbsPartIdx)/iGranularitySize)*iGranularitySize;
1072  if(iGranularityEnd<=pcSlice->getSliceSegmentCurStartCUAddr()) 
1073  {
1074    iGranularityEnd+=max(iGranularitySize,(pcCU->getPic()->getNumPartInCU()>>(uiDepth<<1)));
1075  }
1076  // Set slice end parameter
1077  if(pcSlice->getSliceMode()==FIXED_NUMBER_OF_BYTES&&!pcSlice->getFinalized()&&pcSlice->getSliceBits()+numberOfWrittenBits>pcSlice->getSliceArgument()<<3) 
1078  {
1079    pcSlice->setSliceSegmentCurEndCUAddr(iGranularityEnd);
1080    pcSlice->setSliceCurEndCUAddr(iGranularityEnd);
1081    return;
1082  }
1083  // Set dependent slice end parameter
1084  if(pcSlice->getSliceSegmentMode()==FIXED_NUMBER_OF_BYTES&&!pcSlice->getFinalized()&&pcSlice->getSliceSegmentBits()+numberOfWrittenBits > pcSlice->getSliceSegmentArgument()<<3) 
1085  {
1086    pcSlice->setSliceSegmentCurEndCUAddr(iGranularityEnd);
1087    return;
1088  }
1089  if(granularityBoundary)
1090  {
1091    pcSlice->setSliceBits( (UInt)(pcSlice->getSliceBits() + numberOfWrittenBits) );
1092    pcSlice->setSliceSegmentBits(pcSlice->getSliceSegmentBits()+numberOfWrittenBits);
1093    if (m_pcBitCounter)
1094    {
1095      m_pcEntropyCoder->resetBits();     
1096    }
1097  }
1098}
1099
1100/** Compute QP for each CU
1101 * \param pcCU Target CU
1102 * \param uiDepth CU depth
1103 * \returns quantization parameter
1104 */
1105Int TEncCu::xComputeQP( TComDataCU* pcCU, UInt uiDepth )
1106{
1107  Int iBaseQp = pcCU->getSlice()->getSliceQp();
1108  Int iQpOffset = 0;
1109  if ( m_pcEncCfg->getUseAdaptiveQP() )
1110  {
1111    TEncPic* pcEPic = dynamic_cast<TEncPic*>( pcCU->getPic() );
1112    UInt uiAQDepth = min( uiDepth, pcEPic->getMaxAQDepth()-1 );
1113    TEncPicQPAdaptationLayer* pcAQLayer = pcEPic->getAQLayer( uiAQDepth );
1114    UInt uiAQUPosX = pcCU->getCUPelX() / pcAQLayer->getAQPartWidth();
1115    UInt uiAQUPosY = pcCU->getCUPelY() / pcAQLayer->getAQPartHeight();
1116    UInt uiAQUStride = pcAQLayer->getAQPartStride();
1117    TEncQPAdaptationUnit* acAQU = pcAQLayer->getQPAdaptationUnit();
1118
1119    Double dMaxQScale = pow(2.0, m_pcEncCfg->getQPAdaptationRange()/6.0);
1120    Double dAvgAct = pcAQLayer->getAvgActivity();
1121    Double dCUAct = acAQU[uiAQUPosY * uiAQUStride + uiAQUPosX].getActivity();
1122    Double dNormAct = (dMaxQScale*dCUAct + dAvgAct) / (dCUAct + dMaxQScale*dAvgAct);
1123    Double dQpOffset = log(dNormAct) / log(2.0) * 6.0;
1124    iQpOffset = Int(floor( dQpOffset + 0.49999 ));
1125  }
1126  return Clip3(-pcCU->getSlice()->getSPS()->getQpBDOffsetY(), MAX_QP, iBaseQp+iQpOffset );
1127}
1128
1129/** encode a CU block recursively
1130 * \param pcCU
1131 * \param uiAbsPartIdx
1132 * \param uiDepth
1133 * \returns Void
1134 */
1135Void TEncCu::xEncodeCU( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
1136{
1137  TComPic* pcPic = pcCU->getPic();
1138 
1139  Bool bBoundary = false;
1140  UInt uiLPelX   = pcCU->getCUPelX() + g_auiRasterToPelX[ g_auiZscanToRaster[uiAbsPartIdx] ];
1141  UInt uiRPelX   = uiLPelX + (g_uiMaxCUWidth>>uiDepth)  - 1;
1142  UInt uiTPelY   = pcCU->getCUPelY() + g_auiRasterToPelY[ g_auiZscanToRaster[uiAbsPartIdx] ];
1143  UInt uiBPelY   = uiTPelY + (g_uiMaxCUHeight>>uiDepth) - 1;
1144 
1145  TComSlice * pcSlice = pcCU->getPic()->getSlice(pcCU->getPic()->getCurrSliceIdx());
1146  // If slice start is within this cu...
1147  Bool bSliceStart = pcSlice->getSliceSegmentCurStartCUAddr() > pcPic->getPicSym()->getInverseCUOrderMap(pcCU->getAddr())*pcCU->getPic()->getNumPartInCU()+uiAbsPartIdx && 
1148    pcSlice->getSliceSegmentCurStartCUAddr() < pcPic->getPicSym()->getInverseCUOrderMap(pcCU->getAddr())*pcCU->getPic()->getNumPartInCU()+uiAbsPartIdx+( pcPic->getNumPartInCU() >> (uiDepth<<1) );
1149  // We need to split, so don't try these modes.
1150  if(!bSliceStart&&( uiRPelX < pcSlice->getSPS()->getPicWidthInLumaSamples() ) && ( uiBPelY < pcSlice->getSPS()->getPicHeightInLumaSamples() ) )
1151  {
1152    m_pcEntropyCoder->encodeSplitFlag( pcCU, uiAbsPartIdx, uiDepth );
1153  }
1154  else
1155  {
1156    bBoundary = true;
1157  }
1158 
1159  if( ( ( uiDepth < pcCU->getDepth( uiAbsPartIdx ) ) && ( uiDepth < (g_uiMaxCUDepth-g_uiAddCUDepth) ) ) || bBoundary )
1160  {
1161    UInt uiQNumParts = ( pcPic->getNumPartInCU() >> (uiDepth<<1) )>>2;
1162    if( (g_uiMaxCUWidth>>uiDepth) == pcCU->getSlice()->getPPS()->getMinCuDQPSize() && pcCU->getSlice()->getPPS()->getUseDQP())
1163    {
1164      setdQPFlag(true);
1165    }
1166    for ( UInt uiPartUnitIdx = 0; uiPartUnitIdx < 4; uiPartUnitIdx++, uiAbsPartIdx+=uiQNumParts )
1167    {
1168      uiLPelX   = pcCU->getCUPelX() + g_auiRasterToPelX[ g_auiZscanToRaster[uiAbsPartIdx] ];
1169      uiTPelY   = pcCU->getCUPelY() + g_auiRasterToPelY[ g_auiZscanToRaster[uiAbsPartIdx] ];
1170      Bool bInSlice = pcCU->getSCUAddr()+uiAbsPartIdx+uiQNumParts>pcSlice->getSliceSegmentCurStartCUAddr()&&pcCU->getSCUAddr()+uiAbsPartIdx<pcSlice->getSliceSegmentCurEndCUAddr();
1171      if(bInSlice&&( uiLPelX < pcSlice->getSPS()->getPicWidthInLumaSamples() ) && ( uiTPelY < pcSlice->getSPS()->getPicHeightInLumaSamples() ) )
1172      {
1173        xEncodeCU( pcCU, uiAbsPartIdx, uiDepth+1 );
1174      }
1175    }
1176    return;
1177  }
1178 
1179  if( (g_uiMaxCUWidth>>uiDepth) >= pcCU->getSlice()->getPPS()->getMinCuDQPSize() && pcCU->getSlice()->getPPS()->getUseDQP())
1180  {
1181    setdQPFlag(true);
1182  }
1183  if (pcCU->getSlice()->getPPS()->getTransquantBypassEnableFlag())
1184  {
1185    m_pcEntropyCoder->encodeCUTransquantBypassFlag( pcCU, uiAbsPartIdx );
1186  }
1187  if( !pcCU->getSlice()->isIntra() )
1188  {
1189    m_pcEntropyCoder->encodeSkipFlag( pcCU, uiAbsPartIdx );
1190  }
1191 
1192  if( pcCU->isSkipped( uiAbsPartIdx ) )
1193  {
1194    m_pcEntropyCoder->encodeMergeIndex( pcCU, uiAbsPartIdx );
1195    finishCU(pcCU,uiAbsPartIdx,uiDepth);
1196    return;
1197  }
1198  m_pcEntropyCoder->encodePredMode( pcCU, uiAbsPartIdx );
1199 
1200  m_pcEntropyCoder->encodePartSize( pcCU, uiAbsPartIdx, uiDepth );
1201 
1202  if (pcCU->isIntra( uiAbsPartIdx ) && pcCU->getPartitionSize( uiAbsPartIdx ) == SIZE_2Nx2N )
1203  {
1204    m_pcEntropyCoder->encodeIPCMInfo( pcCU, uiAbsPartIdx );
1205
1206    if(pcCU->getIPCMFlag(uiAbsPartIdx))
1207    {
1208      // Encode slice finish
1209      finishCU(pcCU,uiAbsPartIdx,uiDepth);
1210      return;
1211    }
1212  }
1213
1214  // prediction Info ( Intra : direction mode, Inter : Mv, reference idx )
1215  m_pcEntropyCoder->encodePredInfo( pcCU, uiAbsPartIdx );
1216 
1217  // Encode Coefficients
1218  Bool bCodeDQP = getdQPFlag();
1219  m_pcEntropyCoder->encodeCoeff( pcCU, uiAbsPartIdx, uiDepth, pcCU->getWidth (uiAbsPartIdx), pcCU->getHeight(uiAbsPartIdx), bCodeDQP );
1220  setdQPFlag( bCodeDQP );
1221
1222  // --- write terminating bit ---
1223  finishCU(pcCU,uiAbsPartIdx,uiDepth);
1224}
1225
1226/** check RD costs for a CU block encoded with merge
1227 * \param rpcBestCU
1228 * \param rpcTempCU
1229 * \returns Void
1230 */
1231Void TEncCu::xCheckRDCostMerge2Nx2N( TComDataCU*& rpcBestCU, TComDataCU*& rpcTempCU, Bool *earlyDetectionSkipMode )
1232{
1233  assert( rpcTempCU->getSlice()->getSliceType() != I_SLICE );
1234  TComMvField  cMvFieldNeighbours[MRG_MAX_NUM_CANDS << 1]; // double length for mv of both lists
1235  UChar uhInterDirNeighbours[MRG_MAX_NUM_CANDS];
1236  Int numValidMergeCand = 0;
1237
1238  for( UInt ui = 0; ui < rpcTempCU->getSlice()->getMaxNumMergeCand(); ++ui )
1239  {
1240    uhInterDirNeighbours[ui] = 0;
1241  }
1242  UChar uhDepth = rpcTempCU->getDepth( 0 );
1243
1244#if H_3D_VSO // M1  //nececcary here?
1245  if( m_pcRdCost->getUseRenModel() )
1246  {
1247    UInt  uiWidth     = m_ppcOrigYuv[uhDepth]->getWidth ( );
1248    UInt  uiHeight    = m_ppcOrigYuv[uhDepth]->getHeight( );
1249    Pel*  piSrc       = m_ppcOrigYuv[uhDepth]->getLumaAddr( );
1250    UInt  uiSrcStride = m_ppcOrigYuv[uhDepth]->getStride();
1251    m_pcRdCost->setRenModelData( rpcTempCU, 0, piSrc, uiSrcStride, uiWidth, uiHeight );
1252  }
1253#endif
1254
1255  rpcTempCU->setPartSizeSubParts( SIZE_2Nx2N, 0, uhDepth ); // interprets depth relative to LCU level
1256  rpcTempCU->setCUTransquantBypassSubParts( m_pcEncCfg->getCUTransquantBypassFlagValue(), 0, uhDepth );
1257  rpcTempCU->getInterMergeCandidates( 0, 0, cMvFieldNeighbours,uhInterDirNeighbours, numValidMergeCand );
1258
1259  Int mergeCandBuffer[MRG_MAX_NUM_CANDS];
1260  for( UInt ui = 0; ui < rpcTempCU->getSlice()->getMaxNumMergeCand(); ++ui )
1261  {
1262    mergeCandBuffer[ui] = 0;
1263  }
1264
1265  Bool bestIsSkip = false;
1266
1267  UInt iteration;
1268  if ( rpcTempCU->isLosslessCoded(0))
1269  {
1270    iteration = 1;
1271  }
1272  else 
1273  {
1274    iteration = 2;
1275  }
1276
1277  for( UInt uiNoResidual = 0; uiNoResidual < iteration; ++uiNoResidual )
1278  {
1279    for( UInt uiMergeCand = 0; uiMergeCand < numValidMergeCand; ++uiMergeCand )
1280    {
1281      {
1282        if(!(uiNoResidual==1 && mergeCandBuffer[uiMergeCand]==1))
1283        {
1284
1285        if( !(bestIsSkip && uiNoResidual == 0) )
1286        {
1287          // set MC parameters
1288          rpcTempCU->setPredModeSubParts( MODE_INTER, 0, uhDepth ); // interprets depth relative to LCU level
1289          rpcTempCU->setCUTransquantBypassSubParts( m_pcEncCfg->getCUTransquantBypassFlagValue(),     0, uhDepth );
1290          rpcTempCU->setPartSizeSubParts( SIZE_2Nx2N, 0, uhDepth ); // interprets depth relative to LCU level
1291          rpcTempCU->setMergeFlagSubParts( true, 0, 0, uhDepth ); // interprets depth relative to LCU level
1292          rpcTempCU->setMergeIndexSubParts( uiMergeCand, 0, 0, uhDepth ); // interprets depth relative to LCU level
1293          rpcTempCU->setInterDirSubParts( uhInterDirNeighbours[uiMergeCand], 0, 0, uhDepth ); // interprets depth relative to LCU level
1294          rpcTempCU->getCUMvField( REF_PIC_LIST_0 )->setAllMvField( cMvFieldNeighbours[0 + 2*uiMergeCand], SIZE_2Nx2N, 0, 0 ); // interprets depth relative to rpcTempCU level
1295          rpcTempCU->getCUMvField( REF_PIC_LIST_1 )->setAllMvField( cMvFieldNeighbours[1 + 2*uiMergeCand], SIZE_2Nx2N, 0, 0 ); // interprets depth relative to rpcTempCU level
1296
1297       // do MC
1298       m_pcPredSearch->motionCompensation ( rpcTempCU, m_ppcPredYuvTemp[uhDepth] );
1299       // estimate residual and encode everything
1300
1301#if H_3D_VSO //M2
1302       if( m_pcRdCost->getUseRenModel() )
1303       { //Reset
1304         UInt  uiWidth     = m_ppcOrigYuv[uhDepth]->getWidth    ();
1305         UInt  uiHeight    = m_ppcOrigYuv[uhDepth]->getHeight   ();
1306         Pel*  piSrc       = m_ppcOrigYuv[uhDepth]->getLumaAddr ();
1307         UInt  uiSrcStride = m_ppcOrigYuv[uhDepth]->getStride   ();
1308         m_pcRdCost->setRenModelData( rpcTempCU, 0, piSrc, uiSrcStride, uiWidth, uiHeight );
1309       }
1310#endif
1311
1312       m_pcPredSearch->encodeResAndCalcRdInterCU( rpcTempCU,
1313         m_ppcOrigYuv    [uhDepth],
1314         m_ppcPredYuvTemp[uhDepth],
1315         m_ppcResiYuvTemp[uhDepth],
1316         m_ppcResiYuvBest[uhDepth],
1317         m_ppcRecoYuvTemp[uhDepth],
1318         (uiNoResidual? true:false));
1319
1320
1321       if(uiNoResidual==0)
1322       {
1323         if(rpcTempCU->getQtRootCbf(0) == 0)
1324         {
1325           mergeCandBuffer[uiMergeCand] = 1;
1326         }
1327       }
1328
1329       rpcTempCU->setSkipFlagSubParts( rpcTempCU->getQtRootCbf(0) == 0, 0, uhDepth );
1330          Int orgQP = rpcTempCU->getQP( 0 );
1331          xCheckDQP( rpcTempCU );
1332          xCheckBestMode(rpcBestCU, rpcTempCU, uhDepth);
1333          rpcTempCU->initEstData( uhDepth, orgQP );
1334
1335
1336      if( m_pcEncCfg->getUseFastDecisionForMerge() && !bestIsSkip )
1337      {
1338        bestIsSkip = rpcBestCU->getQtRootCbf(0) == 0;
1339      }
1340
1341    }
1342    }
1343   }
1344  }
1345
1346  if(uiNoResidual == 0 && m_pcEncCfg->getUseEarlySkipDetection())
1347  {
1348    if(rpcBestCU->getQtRootCbf( 0 ) == 0)
1349    {
1350      if( rpcBestCU->getMergeFlag( 0 ))
1351      {
1352        *earlyDetectionSkipMode = true;
1353      }
1354      else
1355      {
1356        Int absoulte_MV=0;
1357        for ( UInt uiRefListIdx = 0; uiRefListIdx < 2; uiRefListIdx++ )
1358        {
1359          if ( rpcBestCU->getSlice()->getNumRefIdx( RefPicList( uiRefListIdx ) ) > 0 )
1360          {
1361            TComCUMvField* pcCUMvField = rpcBestCU->getCUMvField(RefPicList( uiRefListIdx ));
1362            Int iHor = pcCUMvField->getMvd( 0 ).getAbsHor();
1363            Int iVer = pcCUMvField->getMvd( 0 ).getAbsVer();
1364            absoulte_MV+=iHor+iVer;
1365          }
1366        }
1367
1368        if(absoulte_MV == 0)
1369        {
1370          *earlyDetectionSkipMode = true;
1371        }
1372      }
1373    }
1374  }
1375 }
1376}
1377
1378
1379#if AMP_MRG
1380Void TEncCu::xCheckRDCostInter( TComDataCU*& rpcBestCU, TComDataCU*& rpcTempCU, PartSize ePartSize, Bool bUseMRG)
1381#else
1382Void TEncCu::xCheckRDCostInter( TComDataCU*& rpcBestCU, TComDataCU*& rpcTempCU, PartSize ePartSize )
1383#endif
1384{
1385  UChar uhDepth = rpcTempCU->getDepth( 0 );
1386#if H_3D_VSO // M3
1387  if( m_pcRdCost->getUseRenModel() )
1388  {
1389    UInt  uiWidth     = m_ppcOrigYuv[uhDepth]->getWidth ( );
1390    UInt  uiHeight    = m_ppcOrigYuv[uhDepth]->getHeight( );
1391    Pel*  piSrc       = m_ppcOrigYuv[uhDepth]->getLumaAddr( );
1392    UInt  uiSrcStride = m_ppcOrigYuv[uhDepth]->getStride();
1393    m_pcRdCost->setRenModelData( rpcTempCU, 0, piSrc, uiSrcStride, uiWidth, uiHeight );
1394  }
1395#endif
1396
1397  rpcTempCU->setDepthSubParts( uhDepth, 0 );
1398 
1399  rpcTempCU->setSkipFlagSubParts( false, 0, uhDepth );
1400
1401  rpcTempCU->setPartSizeSubParts  ( ePartSize,  0, uhDepth );
1402  rpcTempCU->setPredModeSubParts  ( MODE_INTER, 0, uhDepth );
1403  rpcTempCU->setCUTransquantBypassSubParts  ( m_pcEncCfg->getCUTransquantBypassFlagValue(),      0, uhDepth );
1404 
1405#if AMP_MRG
1406  rpcTempCU->setMergeAMP (true);
1407  m_pcPredSearch->predInterSearch ( rpcTempCU, m_ppcOrigYuv[uhDepth], m_ppcPredYuvTemp[uhDepth], m_ppcResiYuvTemp[uhDepth], m_ppcRecoYuvTemp[uhDepth], false, bUseMRG );
1408#else 
1409  m_pcPredSearch->predInterSearch ( rpcTempCU, m_ppcOrigYuv[uhDepth], m_ppcPredYuvTemp[uhDepth], m_ppcResiYuvTemp[uhDepth], m_ppcRecoYuvTemp[uhDepth] );
1410#endif
1411
1412#if AMP_MRG
1413  if ( !rpcTempCU->getMergeAMP() )
1414  {
1415    return;
1416  }
1417#endif
1418
1419#if RATE_CONTROL_LAMBDA_DOMAIN
1420  if ( m_pcEncCfg->getUseRateCtrl() && m_pcEncCfg->getLCULevelRC() && ePartSize == SIZE_2Nx2N && uhDepth <= m_addSADDepth )
1421  {
1422    UInt SAD = m_pcRdCost->getSADPart( g_bitDepthY, m_ppcPredYuvTemp[uhDepth]->getLumaAddr(), m_ppcPredYuvTemp[uhDepth]->getStride(),
1423      m_ppcOrigYuv[uhDepth]->getLumaAddr(), m_ppcOrigYuv[uhDepth]->getStride(),
1424      rpcTempCU->getWidth(0), rpcTempCU->getHeight(0) );
1425    m_temporalSAD = (Int)SAD;
1426  }
1427#endif
1428
1429  m_pcPredSearch->encodeResAndCalcRdInterCU( rpcTempCU, m_ppcOrigYuv[uhDepth], m_ppcPredYuvTemp[uhDepth], m_ppcResiYuvTemp[uhDepth], m_ppcResiYuvBest[uhDepth], m_ppcRecoYuvTemp[uhDepth], false );
1430
1431
1432#if H_3D_VSO // M4
1433  if( m_pcRdCost->getUseLambdaScaleVSO() )
1434    rpcTempCU->getTotalCost()  = m_pcRdCost->calcRdCostVSO( rpcTempCU->getTotalBits(), rpcTempCU->getTotalDistortion() );
1435  else
1436#endif
1437  rpcTempCU->getTotalCost()  = m_pcRdCost->calcRdCost( rpcTempCU->getTotalBits(), rpcTempCU->getTotalDistortion() );
1438
1439  xCheckDQP( rpcTempCU );
1440  xCheckBestMode(rpcBestCU, rpcTempCU, uhDepth);
1441}
1442
1443Void TEncCu::xCheckRDCostIntra( TComDataCU*& rpcBestCU, TComDataCU*& rpcTempCU, PartSize eSize )
1444{
1445  UInt uiDepth = rpcTempCU->getDepth( 0 );
1446 
1447#if H_3D_VSO // M5
1448  if( m_pcRdCost->getUseRenModel() )
1449  {
1450    UInt  uiWidth     = m_ppcOrigYuv[uiDepth]->getWidth   ();
1451    UInt  uiHeight    = m_ppcOrigYuv[uiDepth]->getHeight  ();
1452    Pel*  piSrc       = m_ppcOrigYuv[uiDepth]->getLumaAddr();
1453    UInt  uiSrcStride = m_ppcOrigYuv[uiDepth]->getStride  ();
1454    m_pcRdCost->setRenModelData( rpcTempCU, 0, piSrc, uiSrcStride, uiWidth, uiHeight );
1455  }
1456#endif
1457
1458  rpcTempCU->setSkipFlagSubParts( false, 0, uiDepth );
1459
1460  rpcTempCU->setPartSizeSubParts( eSize, 0, uiDepth );
1461  rpcTempCU->setPredModeSubParts( MODE_INTRA, 0, uiDepth );
1462  rpcTempCU->setCUTransquantBypassSubParts( m_pcEncCfg->getCUTransquantBypassFlagValue(), 0, uiDepth );
1463 
1464  Bool bSeparateLumaChroma = true; // choose estimation mode
1465  UInt uiPreCalcDistC      = 0;
1466  if( !bSeparateLumaChroma )
1467  {
1468    m_pcPredSearch->preestChromaPredMode( rpcTempCU, m_ppcOrigYuv[uiDepth], m_ppcPredYuvTemp[uiDepth] );
1469  }
1470  m_pcPredSearch  ->estIntraPredQT      ( rpcTempCU, m_ppcOrigYuv[uiDepth], m_ppcPredYuvTemp[uiDepth], m_ppcResiYuvTemp[uiDepth], m_ppcRecoYuvTemp[uiDepth], uiPreCalcDistC, bSeparateLumaChroma );
1471
1472  m_ppcRecoYuvTemp[uiDepth]->copyToPicLuma(rpcTempCU->getPic()->getPicYuvRec(), rpcTempCU->getAddr(), rpcTempCU->getZorderIdxInCU() );
1473 
1474  m_pcPredSearch  ->estIntraPredChromaQT( rpcTempCU, m_ppcOrigYuv[uiDepth], m_ppcPredYuvTemp[uiDepth], m_ppcResiYuvTemp[uiDepth], m_ppcRecoYuvTemp[uiDepth], uiPreCalcDistC );
1475 
1476  m_pcEntropyCoder->resetBits();
1477  if ( rpcTempCU->getSlice()->getPPS()->getTransquantBypassEnableFlag())
1478  {
1479    m_pcEntropyCoder->encodeCUTransquantBypassFlag( rpcTempCU, 0,          true );
1480  }
1481  m_pcEntropyCoder->encodeSkipFlag ( rpcTempCU, 0,          true );
1482  m_pcEntropyCoder->encodePredMode( rpcTempCU, 0,          true );
1483  m_pcEntropyCoder->encodePartSize( rpcTempCU, 0, uiDepth, true );
1484  m_pcEntropyCoder->encodePredInfo( rpcTempCU, 0,          true );
1485  m_pcEntropyCoder->encodeIPCMInfo(rpcTempCU, 0, true );
1486
1487  // Encode Coefficients
1488  Bool bCodeDQP = getdQPFlag();
1489  m_pcEntropyCoder->encodeCoeff( rpcTempCU, 0, uiDepth, rpcTempCU->getWidth (0), rpcTempCU->getHeight(0), bCodeDQP );
1490  setdQPFlag( bCodeDQP );
1491 
1492  if( m_bUseSBACRD ) m_pcRDGoOnSbacCoder->store(m_pppcRDSbacCoder[uiDepth][CI_TEMP_BEST]);
1493 
1494  rpcTempCU->getTotalBits() = m_pcEntropyCoder->getNumberOfWrittenBits();
1495  if(m_pcEncCfg->getUseSBACRD())
1496  {
1497    rpcTempCU->getTotalBins() = ((TEncBinCABAC *)((TEncSbac*)m_pcEntropyCoder->m_pcEntropyCoderIf)->getEncBinIf())->getBinsCoded();
1498  }
1499
1500#if H_3D_VSO // M6
1501  if( m_pcRdCost->getUseLambdaScaleVSO()) 
1502    rpcTempCU->getTotalCost() = m_pcRdCost->calcRdCostVSO( rpcTempCU->getTotalBits(), rpcTempCU->getTotalDistortion() ); 
1503  else
1504#endif
1505  rpcTempCU->getTotalCost() = m_pcRdCost->calcRdCost( rpcTempCU->getTotalBits(), rpcTempCU->getTotalDistortion() );
1506 
1507  xCheckDQP( rpcTempCU );
1508  xCheckBestMode(rpcBestCU, rpcTempCU, uiDepth);
1509}
1510
1511/** Check R-D costs for a CU with PCM mode.
1512 * \param rpcBestCU pointer to best mode CU data structure
1513 * \param rpcTempCU pointer to testing mode CU data structure
1514 * \returns Void
1515 *
1516 * \note Current PCM implementation encodes sample values in a lossless way. The distortion of PCM mode CUs are zero. PCM mode is selected if the best mode yields bits greater than that of PCM mode.
1517 */
1518Void TEncCu::xCheckIntraPCM( TComDataCU*& rpcBestCU, TComDataCU*& rpcTempCU )
1519{
1520  UInt uiDepth = rpcTempCU->getDepth( 0 );
1521
1522  rpcTempCU->setSkipFlagSubParts( false, 0, uiDepth );
1523
1524  rpcTempCU->setIPCMFlag(0, true);
1525  rpcTempCU->setIPCMFlagSubParts (true, 0, rpcTempCU->getDepth(0));
1526  rpcTempCU->setPartSizeSubParts( SIZE_2Nx2N, 0, uiDepth );
1527  rpcTempCU->setPredModeSubParts( MODE_INTRA, 0, uiDepth );
1528  rpcTempCU->setTrIdxSubParts ( 0, 0, uiDepth );
1529  rpcTempCU->setCUTransquantBypassSubParts( m_pcEncCfg->getCUTransquantBypassFlagValue(), 0, uiDepth );
1530
1531  m_pcPredSearch->IPCMSearch( rpcTempCU, m_ppcOrigYuv[uiDepth], m_ppcPredYuvTemp[uiDepth], m_ppcResiYuvTemp[uiDepth], m_ppcRecoYuvTemp[uiDepth]);
1532
1533  if( m_bUseSBACRD ) m_pcRDGoOnSbacCoder->load(m_pppcRDSbacCoder[uiDepth][CI_CURR_BEST]);
1534
1535  m_pcEntropyCoder->resetBits();
1536  if ( rpcTempCU->getSlice()->getPPS()->getTransquantBypassEnableFlag())
1537  {
1538    m_pcEntropyCoder->encodeCUTransquantBypassFlag( rpcTempCU, 0,          true );
1539  }
1540  m_pcEntropyCoder->encodeSkipFlag ( rpcTempCU, 0,          true );
1541  m_pcEntropyCoder->encodePredMode ( rpcTempCU, 0,          true );
1542  m_pcEntropyCoder->encodePartSize ( rpcTempCU, 0, uiDepth, true );
1543  m_pcEntropyCoder->encodeIPCMInfo ( rpcTempCU, 0, true );
1544
1545  if( m_bUseSBACRD ) m_pcRDGoOnSbacCoder->store(m_pppcRDSbacCoder[uiDepth][CI_TEMP_BEST]);
1546
1547  rpcTempCU->getTotalBits() = m_pcEntropyCoder->getNumberOfWrittenBits();
1548  if(m_pcEncCfg->getUseSBACRD())
1549  {
1550    rpcTempCU->getTotalBins() = ((TEncBinCABAC *)((TEncSbac*)m_pcEntropyCoder->m_pcEntropyCoderIf)->getEncBinIf())->getBinsCoded();
1551  }
1552#if H_3D_VSO // M44
1553  if ( m_pcRdCost->getUseVSO() )
1554    rpcTempCU->getTotalCost() = m_pcRdCost->calcRdCostVSO( rpcTempCU->getTotalBits(), rpcTempCU->getTotalDistortion() );
1555  else
1556#endif
1557  rpcTempCU->getTotalCost() = m_pcRdCost->calcRdCost( rpcTempCU->getTotalBits(), rpcTempCU->getTotalDistortion() );
1558
1559  xCheckDQP( rpcTempCU );
1560  xCheckBestMode( rpcBestCU, rpcTempCU, uiDepth );
1561}
1562
1563/** check whether current try is the best with identifying the depth of current try
1564 * \param rpcBestCU
1565 * \param rpcTempCU
1566 * \returns Void
1567 */
1568Void TEncCu::xCheckBestMode( TComDataCU*& rpcBestCU, TComDataCU*& rpcTempCU, UInt uiDepth )
1569{
1570  if( rpcTempCU->getTotalCost() < rpcBestCU->getTotalCost() )
1571  {
1572    TComYuv* pcYuv;
1573    // Change Information data
1574    TComDataCU* pcCU = rpcBestCU;
1575    rpcBestCU = rpcTempCU;
1576    rpcTempCU = pcCU;
1577
1578    // Change Prediction data
1579    pcYuv = m_ppcPredYuvBest[uiDepth];
1580    m_ppcPredYuvBest[uiDepth] = m_ppcPredYuvTemp[uiDepth];
1581    m_ppcPredYuvTemp[uiDepth] = pcYuv;
1582
1583    // Change Reconstruction data
1584    pcYuv = m_ppcRecoYuvBest[uiDepth];
1585    m_ppcRecoYuvBest[uiDepth] = m_ppcRecoYuvTemp[uiDepth];
1586    m_ppcRecoYuvTemp[uiDepth] = pcYuv;
1587
1588    pcYuv = NULL;
1589    pcCU  = NULL;
1590
1591    if( m_bUseSBACRD )  // store temp best CI for next CU coding
1592      m_pppcRDSbacCoder[uiDepth][CI_TEMP_BEST]->store(m_pppcRDSbacCoder[uiDepth][CI_NEXT_BEST]);
1593  }
1594}
1595
1596Void TEncCu::xCheckDQP( TComDataCU* pcCU )
1597{
1598  UInt uiDepth = pcCU->getDepth( 0 );
1599
1600  if( pcCU->getSlice()->getPPS()->getUseDQP() && (g_uiMaxCUWidth>>uiDepth) >= pcCU->getSlice()->getPPS()->getMinCuDQPSize() )
1601  {
1602    if ( pcCU->getCbf( 0, TEXT_LUMA, 0 ) || pcCU->getCbf( 0, TEXT_CHROMA_U, 0 ) || pcCU->getCbf( 0, TEXT_CHROMA_V, 0 ) )
1603    {
1604#if !RDO_WITHOUT_DQP_BITS
1605      m_pcEntropyCoder->resetBits();
1606      m_pcEntropyCoder->encodeQP( pcCU, 0, false );
1607      pcCU->getTotalBits() += m_pcEntropyCoder->getNumberOfWrittenBits(); // dQP bits
1608      if(m_pcEncCfg->getUseSBACRD())
1609      {
1610        pcCU->getTotalBins() += ((TEncBinCABAC *)((TEncSbac*)m_pcEntropyCoder->m_pcEntropyCoderIf)->getEncBinIf())->getBinsCoded();
1611      }
1612#if H_3D_VSO // M45
1613      if ( m_pcRdCost->getUseVSO() )     
1614        pcCU->getTotalCost() = m_pcRdCost->calcRdCostVSO( pcCU->getTotalBits(), pcCU->getTotalDistortion() );     
1615      else
1616#endif
1617      pcCU->getTotalCost() = m_pcRdCost->calcRdCost( pcCU->getTotalBits(), pcCU->getTotalDistortion() );
1618#endif
1619    }
1620    else
1621    {
1622      pcCU->setQPSubParts( pcCU->getRefQP( 0 ), 0, uiDepth ); // set QP to default QP
1623    }
1624  }
1625}
1626
1627Void TEncCu::xCopyAMVPInfo (AMVPInfo* pSrc, AMVPInfo* pDst)
1628{
1629  pDst->iN = pSrc->iN;
1630  for (Int i = 0; i < pSrc->iN; i++)
1631  {
1632    pDst->m_acMvCand[i] = pSrc->m_acMvCand[i];
1633  }
1634}
1635Void TEncCu::xCopyYuv2Pic(TComPic* rpcPic, UInt uiCUAddr, UInt uiAbsPartIdx, UInt uiDepth, UInt uiSrcDepth, TComDataCU* pcCU, UInt uiLPelX, UInt uiTPelY )
1636{
1637  UInt uiRPelX   = uiLPelX + (g_uiMaxCUWidth>>uiDepth)  - 1;
1638  UInt uiBPelY   = uiTPelY + (g_uiMaxCUHeight>>uiDepth) - 1;
1639  TComSlice * pcSlice = pcCU->getPic()->getSlice(pcCU->getPic()->getCurrSliceIdx());
1640  Bool bSliceStart = pcSlice->getSliceSegmentCurStartCUAddr() > rpcPic->getPicSym()->getInverseCUOrderMap(pcCU->getAddr())*pcCU->getPic()->getNumPartInCU()+uiAbsPartIdx && 
1641    pcSlice->getSliceSegmentCurStartCUAddr() < rpcPic->getPicSym()->getInverseCUOrderMap(pcCU->getAddr())*pcCU->getPic()->getNumPartInCU()+uiAbsPartIdx+( pcCU->getPic()->getNumPartInCU() >> (uiDepth<<1) );
1642  Bool bSliceEnd   = pcSlice->getSliceSegmentCurEndCUAddr() > rpcPic->getPicSym()->getInverseCUOrderMap(pcCU->getAddr())*pcCU->getPic()->getNumPartInCU()+uiAbsPartIdx && 
1643    pcSlice->getSliceSegmentCurEndCUAddr() < rpcPic->getPicSym()->getInverseCUOrderMap(pcCU->getAddr())*pcCU->getPic()->getNumPartInCU()+uiAbsPartIdx+( pcCU->getPic()->getNumPartInCU() >> (uiDepth<<1) );
1644  if(!bSliceEnd && !bSliceStart && ( uiRPelX < pcSlice->getSPS()->getPicWidthInLumaSamples() ) && ( uiBPelY < pcSlice->getSPS()->getPicHeightInLumaSamples() ) )
1645  {
1646    UInt uiAbsPartIdxInRaster = g_auiZscanToRaster[uiAbsPartIdx];
1647    UInt uiSrcBlkWidth = rpcPic->getNumPartInWidth() >> (uiSrcDepth);
1648    UInt uiBlkWidth    = rpcPic->getNumPartInWidth() >> (uiDepth);
1649    UInt uiPartIdxX = ( ( uiAbsPartIdxInRaster % rpcPic->getNumPartInWidth() ) % uiSrcBlkWidth) / uiBlkWidth;
1650    UInt uiPartIdxY = ( ( uiAbsPartIdxInRaster / rpcPic->getNumPartInWidth() ) % uiSrcBlkWidth) / uiBlkWidth;
1651    UInt uiPartIdx = uiPartIdxY * ( uiSrcBlkWidth / uiBlkWidth ) + uiPartIdxX;
1652    m_ppcRecoYuvBest[uiSrcDepth]->copyToPicYuv( rpcPic->getPicYuvRec (), uiCUAddr, uiAbsPartIdx, uiDepth - uiSrcDepth, uiPartIdx);
1653  }
1654  else
1655  {
1656    UInt uiQNumParts = ( pcCU->getPic()->getNumPartInCU() >> (uiDepth<<1) )>>2;
1657
1658    for ( UInt uiPartUnitIdx = 0; uiPartUnitIdx < 4; uiPartUnitIdx++, uiAbsPartIdx+=uiQNumParts )
1659    {
1660      UInt uiSubCULPelX   = uiLPelX + ( g_uiMaxCUWidth >>(uiDepth+1) )*( uiPartUnitIdx &  1 );
1661      UInt uiSubCUTPelY   = uiTPelY + ( g_uiMaxCUHeight>>(uiDepth+1) )*( uiPartUnitIdx >> 1 );
1662
1663      Bool bInSlice = rpcPic->getPicSym()->getInverseCUOrderMap(pcCU->getAddr())*pcCU->getPic()->getNumPartInCU()+uiAbsPartIdx+uiQNumParts > pcSlice->getSliceSegmentCurStartCUAddr() && 
1664        rpcPic->getPicSym()->getInverseCUOrderMap(pcCU->getAddr())*pcCU->getPic()->getNumPartInCU()+uiAbsPartIdx < pcSlice->getSliceSegmentCurEndCUAddr();
1665      if(bInSlice&&( uiSubCULPelX < pcSlice->getSPS()->getPicWidthInLumaSamples() ) && ( uiSubCUTPelY < pcSlice->getSPS()->getPicHeightInLumaSamples() ) )
1666      {
1667        xCopyYuv2Pic( rpcPic, uiCUAddr, uiAbsPartIdx, uiDepth+1, uiSrcDepth, pcCU, uiSubCULPelX, uiSubCUTPelY );   // Copy Yuv data to picture Yuv
1668      }
1669    }
1670  }
1671}
1672
1673Void TEncCu::xCopyYuv2Tmp( UInt uiPartUnitIdx, UInt uiNextDepth )
1674{
1675  UInt uiCurrDepth = uiNextDepth - 1;
1676  m_ppcRecoYuvBest[uiNextDepth]->copyToPartYuv( m_ppcRecoYuvTemp[uiCurrDepth], uiPartUnitIdx );
1677}
1678
1679/** Function for filling the PCM buffer of a CU using its original sample array
1680 * \param pcCU pointer to current CU
1681 * \param pcOrgYuv pointer to original sample array
1682 * \returns Void
1683 */
1684Void TEncCu::xFillPCMBuffer     ( TComDataCU*& pCU, TComYuv* pOrgYuv )
1685{
1686
1687  UInt   width        = pCU->getWidth(0);
1688  UInt   height       = pCU->getHeight(0);
1689
1690  Pel*   pSrcY = pOrgYuv->getLumaAddr(0, width); 
1691  Pel*   pDstY = pCU->getPCMSampleY();
1692  UInt   srcStride = pOrgYuv->getStride();
1693
1694  for(Int y = 0; y < height; y++ )
1695  {
1696    for(Int x = 0; x < width; x++ )
1697    {
1698      pDstY[x] = pSrcY[x];
1699    }
1700    pDstY += width;
1701    pSrcY += srcStride;
1702  }
1703
1704  Pel* pSrcCb       = pOrgYuv->getCbAddr();
1705  Pel* pSrcCr       = pOrgYuv->getCrAddr();;
1706
1707  Pel* pDstCb       = pCU->getPCMSampleCb();
1708  Pel* pDstCr       = pCU->getPCMSampleCr();;
1709
1710  UInt srcStrideC = pOrgYuv->getCStride();
1711  UInt heightC   = height >> 1;
1712  UInt widthC    = width  >> 1;
1713
1714  for(Int y = 0; y < heightC; y++ )
1715  {
1716    for(Int x = 0; x < widthC; x++ )
1717    {
1718      pDstCb[x] = pSrcCb[x];
1719      pDstCr[x] = pSrcCr[x];
1720    }
1721    pDstCb += widthC;
1722    pDstCr += widthC;
1723    pSrcCb += srcStrideC;
1724    pSrcCr += srcStrideC;
1725  }
1726}
1727
1728#if ADAPTIVE_QP_SELECTION
1729/** Collect ARL statistics from one block
1730  */
1731Int TEncCu::xTuCollectARLStats(TCoeff* rpcCoeff, Int* rpcArlCoeff, Int NumCoeffInCU, Double* cSum, UInt* numSamples )
1732{
1733  for( Int n = 0; n < NumCoeffInCU; n++ )
1734  {
1735    Int u = abs( rpcCoeff[ n ] );
1736    Int absc = rpcArlCoeff[ n ];
1737
1738    if( u != 0 )
1739    {
1740      if( u < LEVEL_RANGE )
1741      {
1742        cSum[ u ] += ( Double )absc;
1743        numSamples[ u ]++;
1744      }
1745      else 
1746      {
1747        cSum[ LEVEL_RANGE ] += ( Double )absc - ( Double )( u << ARL_C_PRECISION );
1748        numSamples[ LEVEL_RANGE ]++;
1749      }
1750    }
1751  }
1752
1753  return 0;
1754}
1755
1756/** Collect ARL statistics from one LCU
1757 * \param pcCU
1758 */
1759Void TEncCu::xLcuCollectARLStats(TComDataCU* rpcCU )
1760{
1761  Double cSum[ LEVEL_RANGE + 1 ];     //: the sum of DCT coefficients corresponding to datatype and quantization output
1762  UInt numSamples[ LEVEL_RANGE + 1 ]; //: the number of coefficients corresponding to datatype and quantization output
1763
1764  TCoeff* pCoeffY = rpcCU->getCoeffY();
1765  Int* pArlCoeffY = rpcCU->getArlCoeffY();
1766
1767  UInt uiMinCUWidth = g_uiMaxCUWidth >> g_uiMaxCUDepth;
1768  UInt uiMinNumCoeffInCU = 1 << uiMinCUWidth;
1769
1770  memset( cSum, 0, sizeof( Double )*(LEVEL_RANGE+1) );
1771  memset( numSamples, 0, sizeof( UInt )*(LEVEL_RANGE+1) );
1772
1773  // Collect stats to cSum[][] and numSamples[][]
1774  for(Int i = 0; i < rpcCU->getTotalNumPart(); i ++ )
1775  {
1776    UInt uiTrIdx = rpcCU->getTransformIdx(i);
1777
1778    if(rpcCU->getPredictionMode(i) == MODE_INTER)
1779    if( rpcCU->getCbf( i, TEXT_LUMA, uiTrIdx ) )
1780    {
1781      xTuCollectARLStats(pCoeffY, pArlCoeffY, uiMinNumCoeffInCU, cSum, numSamples);
1782    }//Note that only InterY is processed. QP rounding is based on InterY data only.
1783   
1784    pCoeffY  += uiMinNumCoeffInCU;
1785    pArlCoeffY  += uiMinNumCoeffInCU;
1786  }
1787
1788  for(Int u=1; u<LEVEL_RANGE;u++)
1789  {
1790    m_pcTrQuant->getSliceSumC()[u] += cSum[ u ] ;
1791    m_pcTrQuant->getSliceNSamples()[u] += numSamples[ u ] ;
1792  }
1793  m_pcTrQuant->getSliceSumC()[LEVEL_RANGE] += cSum[ LEVEL_RANGE ] ;
1794  m_pcTrQuant->getSliceNSamples()[LEVEL_RANGE] += numSamples[ LEVEL_RANGE ] ;
1795}
1796#endif
1797//! \}
Note: See TracBrowser for help on using the repository browser.