source: SHVCSoftware/branches/SHM-dev/source/Lib/TLibEncoder/TEncCu.cpp @ 1257

Last change on this file since 1257 was 1248, checked in by seregin, 9 years ago

port rev 4242

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