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

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

port rev 4230

  • Property svn:eol-style set to native
File size: 70.2 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          rpcBestCU->getTotalCost()=rpcTempCU->getTotalCost() + (1.0 / m_pcRdCost->getLambda());
958        else
959          rpcBestCU->getTotalCost()=rpcTempCU->getTotalCost()+1;
960      }
961
962      xCheckBestMode( rpcBestCU, rpcTempCU, uiDepth DEBUG_STRING_PASS_INTO(sDebug) DEBUG_STRING_PASS_INTO(sTempDebug) DEBUG_STRING_PASS_INTO(false) ); // RD compare current larger prediction
963                                                                                       // with sub partitioned prediction.
964    }
965  }
966
967  DEBUG_STRING_APPEND(sDebug_, sDebug);
968
969  rpcBestCU->copyToPic(uiDepth);                                                     // Copy Best data to Picture for next partition prediction.
970
971  xCopyYuv2Pic( rpcBestCU->getPic(), rpcBestCU->getCtuRsAddr(), rpcBestCU->getZorderIdxInCtu(), uiDepth, uiDepth, rpcBestCU, uiLPelX, uiTPelY );   // Copy Yuv data to picture Yuv
972  if (bBoundary)
973  {
974    return;
975  }
976
977  // Assert if Best prediction mode is NONE
978  // Selected mode's RD-cost must be not MAX_DOUBLE.
979  assert( rpcBestCU->getPartitionSize ( 0 ) != NUMBER_OF_PART_SIZES       );
980  assert( rpcBestCU->getPredictionMode( 0 ) != NUMBER_OF_PREDICTION_MODES );
981  assert( rpcBestCU->getTotalCost     (   ) != MAX_DOUBLE                 );
982}
983
984/** finish encoding a cu and handle end-of-slice conditions
985 * \param pcCU
986 * \param uiAbsPartIdx
987 * \param uiDepth
988 * \returns Void
989 */
990Void TEncCu::finishCU( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
991{
992  TComPic* pcPic = pcCU->getPic();
993  TComSlice * pcSlice = pcCU->getPic()->getSlice(pcCU->getPic()->getCurrSliceIdx());
994
995  //Calculate end address
996  const Int  currentCTUTsAddr = pcPic->getPicSym()->getCtuRsToTsAddrMap(pcCU->getCtuRsAddr());
997  const Bool isLastSubCUOfCtu = pcCU->isLastSubCUOfCtu(uiAbsPartIdx);
998  if ( isLastSubCUOfCtu )
999  {
1000    // The 1-terminating bit is added to all streams, so don't add it here when it's 1.
1001    // i.e. when the slice segment CurEnd CTU address is the current CTU address+1.
1002    if (pcSlice->getSliceSegmentCurEndCtuTsAddr() != currentCTUTsAddr+1)
1003    {
1004      m_pcEntropyCoder->encodeTerminatingBit( 0 );
1005    }
1006  }
1007}
1008
1009/** Compute QP for each CU
1010 * \param pcCU Target CU
1011 * \param uiDepth CU depth
1012 * \returns quantization parameter
1013 */
1014Int TEncCu::xComputeQP( TComDataCU* pcCU, UInt uiDepth )
1015{
1016  Int iBaseQp = pcCU->getSlice()->getSliceQp();
1017  Int iQpOffset = 0;
1018  if ( m_pcEncCfg->getUseAdaptiveQP() )
1019  {
1020    TEncPic* pcEPic = dynamic_cast<TEncPic*>( pcCU->getPic() );
1021    UInt uiAQDepth = min( uiDepth, pcEPic->getMaxAQDepth()-1 );
1022    TEncPicQPAdaptationLayer* pcAQLayer = pcEPic->getAQLayer( uiAQDepth );
1023    UInt uiAQUPosX = pcCU->getCUPelX() / pcAQLayer->getAQPartWidth();
1024    UInt uiAQUPosY = pcCU->getCUPelY() / pcAQLayer->getAQPartHeight();
1025    UInt uiAQUStride = pcAQLayer->getAQPartStride();
1026    TEncQPAdaptationUnit* acAQU = pcAQLayer->getQPAdaptationUnit();
1027
1028    Double dMaxQScale = pow(2.0, m_pcEncCfg->getQPAdaptationRange()/6.0);
1029    Double dAvgAct = pcAQLayer->getAvgActivity();
1030    Double dCUAct = acAQU[uiAQUPosY * uiAQUStride + uiAQUPosX].getActivity();
1031    Double dNormAct = (dMaxQScale*dCUAct + dAvgAct) / (dCUAct + dMaxQScale*dAvgAct);
1032    Double dQpOffset = log(dNormAct) / log(2.0) * 6.0;
1033    iQpOffset = Int(floor( dQpOffset + 0.49999 ));
1034  }
1035#if SVC_EXTENSION
1036  return Clip3(-pcCU->getSlice()->getQpBDOffsetY(), MAX_QP, iBaseQp+iQpOffset );
1037#else
1038  return Clip3(-pcCU->getSlice()->getSPS()->getQpBDOffset(CHANNEL_TYPE_LUMA), MAX_QP, iBaseQp+iQpOffset );
1039#endif
1040}
1041
1042/** encode a CU block recursively
1043 * \param pcCU
1044 * \param uiAbsPartIdx
1045 * \param uiDepth
1046 * \returns Void
1047 */
1048Void TEncCu::xEncodeCU( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
1049{
1050  TComPic* pcPic = pcCU->getPic();
1051
1052  Bool bBoundary = false;
1053  UInt uiLPelX   = pcCU->getCUPelX() + g_auiRasterToPelX[ g_auiZscanToRaster[uiAbsPartIdx] ];
1054  UInt uiRPelX   = uiLPelX + (g_uiMaxCUWidth>>uiDepth)  - 1;
1055  UInt uiTPelY   = pcCU->getCUPelY() + g_auiRasterToPelY[ g_auiZscanToRaster[uiAbsPartIdx] ];
1056  UInt uiBPelY   = uiTPelY + (g_uiMaxCUHeight>>uiDepth) - 1;
1057
1058  TComSlice * pcSlice = pcCU->getPic()->getSlice(pcCU->getPic()->getCurrSliceIdx());
1059#if HIGHER_LAYER_IRAP_SKIP_FLAG
1060  if (m_pcEncCfg->getSkipPictureAtArcSwitch() && m_pcEncCfg->getAdaptiveResolutionChange() > 0 && pcSlice->getLayerId() == 1 && pcSlice->getPOC() == m_pcEncCfg->getAdaptiveResolutionChange())
1061  {
1062    pcCU->setSkipFlagSubParts(true, uiAbsPartIdx, uiDepth);
1063  }
1064#endif
1065
1066#if SVC_EXTENSION
1067  if( ( uiRPelX < pcSlice->getPicWidthInLumaSamples() ) && ( uiBPelY < pcSlice->getPicHeightInLumaSamples() ) )
1068#else
1069  if( ( uiRPelX < pcSlice->getSPS()->getPicWidthInLumaSamples() ) && ( uiBPelY < pcSlice->getSPS()->getPicHeightInLumaSamples() ) )
1070#endif
1071  {
1072    m_pcEntropyCoder->encodeSplitFlag( pcCU, uiAbsPartIdx, uiDepth );
1073  }
1074  else
1075  {
1076    bBoundary = true;
1077  }
1078
1079  if( ( ( uiDepth < pcCU->getDepth( uiAbsPartIdx ) ) && ( uiDepth < (g_uiMaxCUDepth-g_uiAddCUDepth) ) ) || bBoundary )
1080  {
1081    UInt uiQNumParts = ( pcPic->getNumPartitionsInCtu() >> (uiDepth<<1) )>>2;
1082    if( (g_uiMaxCUWidth>>uiDepth) == (g_uiMaxCUWidth >> ( pcCU->getSlice()->getPPS()->getMaxCuDQPDepth())) && pcCU->getSlice()->getPPS()->getUseDQP())
1083    {
1084      setdQPFlag(true);
1085    }
1086
1087    if( (g_uiMaxCUWidth>>uiDepth) == (g_uiMaxCUWidth >> ( pcCU->getSlice()->getPPS()->getMaxCuChromaQpAdjDepth())) && pcCU->getSlice()->getUseChromaQpAdj())
1088    {
1089      setCodeChromaQpAdjFlag(true);
1090    }
1091
1092    for ( UInt uiPartUnitIdx = 0; uiPartUnitIdx < 4; uiPartUnitIdx++, uiAbsPartIdx+=uiQNumParts )
1093    {
1094      uiLPelX   = pcCU->getCUPelX() + g_auiRasterToPelX[ g_auiZscanToRaster[uiAbsPartIdx] ];
1095      uiTPelY   = pcCU->getCUPelY() + g_auiRasterToPelY[ g_auiZscanToRaster[uiAbsPartIdx] ];
1096
1097#if SVC_EXTENSION
1098      if( ( uiLPelX < pcSlice->getPicWidthInLumaSamples() ) && ( uiTPelY < pcSlice->getPicHeightInLumaSamples() ) )
1099#else
1100      if( ( uiLPelX < pcSlice->getSPS()->getPicWidthInLumaSamples() ) && ( uiTPelY < pcSlice->getSPS()->getPicHeightInLumaSamples() ) )
1101#endif
1102      {
1103        xEncodeCU( pcCU, uiAbsPartIdx, uiDepth+1 );
1104      }
1105    }
1106    return;
1107  }
1108
1109  if( (g_uiMaxCUWidth>>uiDepth) >= (g_uiMaxCUWidth >> ( pcCU->getSlice()->getPPS()->getMaxCuDQPDepth())) && pcCU->getSlice()->getPPS()->getUseDQP())
1110  {
1111    setdQPFlag(true);
1112  }
1113
1114  if( (g_uiMaxCUWidth>>uiDepth) >= (g_uiMaxCUWidth >> ( pcCU->getSlice()->getPPS()->getMaxCuChromaQpAdjDepth())) && pcCU->getSlice()->getUseChromaQpAdj())
1115  {
1116    setCodeChromaQpAdjFlag(true);
1117  }
1118
1119  if (pcCU->getSlice()->getPPS()->getTransquantBypassEnableFlag())
1120  {
1121    m_pcEntropyCoder->encodeCUTransquantBypassFlag( pcCU, uiAbsPartIdx );
1122  }
1123
1124  if( !pcCU->getSlice()->isIntra() )
1125  {
1126    m_pcEntropyCoder->encodeSkipFlag( pcCU, uiAbsPartIdx );
1127  }
1128
1129  if( pcCU->isSkipped( uiAbsPartIdx ) )
1130  {
1131    m_pcEntropyCoder->encodeMergeIndex( pcCU, uiAbsPartIdx );
1132    finishCU(pcCU,uiAbsPartIdx,uiDepth);
1133    return;
1134  }
1135
1136  m_pcEntropyCoder->encodePredMode( pcCU, uiAbsPartIdx );
1137  m_pcEntropyCoder->encodePartSize( pcCU, uiAbsPartIdx, uiDepth );
1138
1139  if (pcCU->isIntra( uiAbsPartIdx ) && pcCU->getPartitionSize( uiAbsPartIdx ) == SIZE_2Nx2N )
1140  {
1141    m_pcEntropyCoder->encodeIPCMInfo( pcCU, uiAbsPartIdx );
1142
1143    if(pcCU->getIPCMFlag(uiAbsPartIdx))
1144    {
1145      // Encode slice finish
1146      finishCU(pcCU,uiAbsPartIdx,uiDepth);
1147      return;
1148    }
1149  }
1150
1151  // prediction Info ( Intra : direction mode, Inter : Mv, reference idx )
1152  m_pcEntropyCoder->encodePredInfo( pcCU, uiAbsPartIdx );
1153
1154  // Encode Coefficients
1155  Bool bCodeDQP = getdQPFlag();
1156  Bool codeChromaQpAdj = getCodeChromaQpAdjFlag();
1157  m_pcEntropyCoder->encodeCoeff( pcCU, uiAbsPartIdx, uiDepth, bCodeDQP, codeChromaQpAdj );
1158  setCodeChromaQpAdjFlag( codeChromaQpAdj );
1159  setdQPFlag( bCodeDQP );
1160
1161  // --- write terminating bit ---
1162  finishCU(pcCU,uiAbsPartIdx,uiDepth);
1163}
1164
1165Int xCalcHADs8x8_ISlice(Pel *piOrg, Int iStrideOrg)
1166{
1167  Int k, i, j, jj;
1168  Int diff[64], m1[8][8], m2[8][8], m3[8][8], iSumHad = 0;
1169
1170  for( k = 0; k < 64; k += 8 )
1171  {
1172    diff[k+0] = piOrg[0] ;
1173    diff[k+1] = piOrg[1] ;
1174    diff[k+2] = piOrg[2] ;
1175    diff[k+3] = piOrg[3] ;
1176    diff[k+4] = piOrg[4] ;
1177    diff[k+5] = piOrg[5] ;
1178    diff[k+6] = piOrg[6] ;
1179    diff[k+7] = piOrg[7] ;
1180
1181    piOrg += iStrideOrg;
1182  }
1183
1184  //horizontal
1185  for (j=0; j < 8; j++)
1186  {
1187    jj = j << 3;
1188    m2[j][0] = diff[jj  ] + diff[jj+4];
1189    m2[j][1] = diff[jj+1] + diff[jj+5];
1190    m2[j][2] = diff[jj+2] + diff[jj+6];
1191    m2[j][3] = diff[jj+3] + diff[jj+7];
1192    m2[j][4] = diff[jj  ] - diff[jj+4];
1193    m2[j][5] = diff[jj+1] - diff[jj+5];
1194    m2[j][6] = diff[jj+2] - diff[jj+6];
1195    m2[j][7] = diff[jj+3] - diff[jj+7];
1196
1197    m1[j][0] = m2[j][0] + m2[j][2];
1198    m1[j][1] = m2[j][1] + m2[j][3];
1199    m1[j][2] = m2[j][0] - m2[j][2];
1200    m1[j][3] = m2[j][1] - m2[j][3];
1201    m1[j][4] = m2[j][4] + m2[j][6];
1202    m1[j][5] = m2[j][5] + m2[j][7];
1203    m1[j][6] = m2[j][4] - m2[j][6];
1204    m1[j][7] = m2[j][5] - m2[j][7];
1205
1206    m2[j][0] = m1[j][0] + m1[j][1];
1207    m2[j][1] = m1[j][0] - m1[j][1];
1208    m2[j][2] = m1[j][2] + m1[j][3];
1209    m2[j][3] = m1[j][2] - m1[j][3];
1210    m2[j][4] = m1[j][4] + m1[j][5];
1211    m2[j][5] = m1[j][4] - m1[j][5];
1212    m2[j][6] = m1[j][6] + m1[j][7];
1213    m2[j][7] = m1[j][6] - m1[j][7];
1214  }
1215
1216  //vertical
1217  for (i=0; i < 8; i++)
1218  {
1219    m3[0][i] = m2[0][i] + m2[4][i];
1220    m3[1][i] = m2[1][i] + m2[5][i];
1221    m3[2][i] = m2[2][i] + m2[6][i];
1222    m3[3][i] = m2[3][i] + m2[7][i];
1223    m3[4][i] = m2[0][i] - m2[4][i];
1224    m3[5][i] = m2[1][i] - m2[5][i];
1225    m3[6][i] = m2[2][i] - m2[6][i];
1226    m3[7][i] = m2[3][i] - m2[7][i];
1227
1228    m1[0][i] = m3[0][i] + m3[2][i];
1229    m1[1][i] = m3[1][i] + m3[3][i];
1230    m1[2][i] = m3[0][i] - m3[2][i];
1231    m1[3][i] = m3[1][i] - m3[3][i];
1232    m1[4][i] = m3[4][i] + m3[6][i];
1233    m1[5][i] = m3[5][i] + m3[7][i];
1234    m1[6][i] = m3[4][i] - m3[6][i];
1235    m1[7][i] = m3[5][i] - m3[7][i];
1236
1237    m2[0][i] = m1[0][i] + m1[1][i];
1238    m2[1][i] = m1[0][i] - m1[1][i];
1239    m2[2][i] = m1[2][i] + m1[3][i];
1240    m2[3][i] = m1[2][i] - m1[3][i];
1241    m2[4][i] = m1[4][i] + m1[5][i];
1242    m2[5][i] = m1[4][i] - m1[5][i];
1243    m2[6][i] = m1[6][i] + m1[7][i];
1244    m2[7][i] = m1[6][i] - m1[7][i];
1245  }
1246
1247  for (i = 0; i < 8; i++)
1248  {
1249    for (j = 0; j < 8; j++)
1250    {
1251      iSumHad += abs(m2[i][j]);
1252    }
1253  }
1254  iSumHad -= abs(m2[0][0]);
1255  iSumHad =(iSumHad+2)>>2;
1256  return(iSumHad);
1257}
1258
1259Int  TEncCu::updateCtuDataISlice(TComDataCU* pCtu, Int width, Int height)
1260{
1261  Int  xBl, yBl;
1262  const Int iBlkSize = 8;
1263
1264  Pel* pOrgInit   = pCtu->getPic()->getPicYuvOrg()->getAddr(COMPONENT_Y, pCtu->getCtuRsAddr(), 0);
1265  Int  iStrideOrig = pCtu->getPic()->getPicYuvOrg()->getStride(COMPONENT_Y);
1266  Pel  *pOrg;
1267
1268  Int iSumHad = 0;
1269  for ( yBl=0; (yBl+iBlkSize)<=height; yBl+= iBlkSize)
1270  {
1271    for ( xBl=0; (xBl+iBlkSize)<=width; xBl+= iBlkSize)
1272    {
1273      pOrg = pOrgInit + iStrideOrig*yBl + xBl;
1274      iSumHad += xCalcHADs8x8_ISlice(pOrg, iStrideOrig);
1275    }
1276  }
1277  return(iSumHad);
1278}
1279
1280/** check RD costs for a CU block encoded with merge
1281 * \param rpcBestCU
1282 * \param rpcTempCU
1283 * \returns Void
1284 */
1285#if HIGHER_LAYER_IRAP_SKIP_FLAG
1286Void TEncCu::xCheckRDCostMerge2Nx2N( TComDataCU*& rpcBestCU, TComDataCU*& rpcTempCU DEBUG_STRING_FN_DECLARE(sDebug), Bool *earlyDetectionSkipMode, Bool bUseSkip )
1287#else
1288Void TEncCu::xCheckRDCostMerge2Nx2N( TComDataCU*& rpcBestCU, TComDataCU*& rpcTempCU DEBUG_STRING_FN_DECLARE(sDebug), Bool *earlyDetectionSkipMode )
1289#endif
1290{
1291  assert( rpcTempCU->getSlice()->getSliceType() != I_SLICE );
1292  TComMvField  cMvFieldNeighbours[2 * MRG_MAX_NUM_CANDS]; // double length for mv of both lists
1293  UChar uhInterDirNeighbours[MRG_MAX_NUM_CANDS];
1294  Int numValidMergeCand = 0;
1295  const Bool bTransquantBypassFlag = rpcTempCU->getCUTransquantBypass(0);
1296
1297  for( UInt ui = 0; ui < rpcTempCU->getSlice()->getMaxNumMergeCand(); ++ui )
1298  {
1299    uhInterDirNeighbours[ui] = 0;
1300  }
1301  UChar uhDepth = rpcTempCU->getDepth( 0 );
1302  rpcTempCU->setPartSizeSubParts( SIZE_2Nx2N, 0, uhDepth ); // interprets depth relative to CTU level
1303  rpcTempCU->getInterMergeCandidates( 0, 0, cMvFieldNeighbours,uhInterDirNeighbours, numValidMergeCand );
1304
1305  Int mergeCandBuffer[MRG_MAX_NUM_CANDS];
1306  for( UInt ui = 0; ui < numValidMergeCand; ++ui )
1307  {
1308    mergeCandBuffer[ui] = 0;
1309  }
1310
1311  Bool bestIsSkip = false;
1312
1313  UInt iteration;
1314  if ( rpcTempCU->isLosslessCoded(0))
1315  {
1316    iteration = 1;
1317  }
1318  else
1319  {
1320    iteration = 2;
1321  }
1322  DEBUG_STRING_NEW(bestStr)
1323
1324#if HIGHER_LAYER_IRAP_SKIP_FLAG
1325  for( UInt uiNoResidual = bUseSkip?1:0; uiNoResidual < iteration; ++uiNoResidual )
1326#else
1327  for( UInt uiNoResidual = 0; uiNoResidual < iteration; ++uiNoResidual )
1328#endif
1329  {
1330    for( UInt uiMergeCand = 0; uiMergeCand < numValidMergeCand; ++uiMergeCand )
1331    {
1332#if REF_IDX_ME_ZEROMV
1333      Bool bZeroMVILR = rpcTempCU->xCheckZeroMVILRMerge(uhInterDirNeighbours[uiMergeCand], cMvFieldNeighbours[0 + 2*uiMergeCand], cMvFieldNeighbours[1 + 2*uiMergeCand]);
1334      if(bZeroMVILR)
1335      {
1336#endif
1337#if N0383_IL_CONSTRAINED_TILE_SETS_SEI
1338      if (!(rpcTempCU->isInterLayerReference(uhInterDirNeighbours[uiMergeCand], cMvFieldNeighbours[0 + 2*uiMergeCand], cMvFieldNeighbours[1 + 2*uiMergeCand]) && m_disableILP))
1339      {
1340#endif
1341      if(!(uiNoResidual==1 && mergeCandBuffer[uiMergeCand]==1))
1342      {
1343        if( !(bestIsSkip && uiNoResidual == 0) )
1344        {
1345          DEBUG_STRING_NEW(tmpStr)
1346          // set MC parameters
1347          rpcTempCU->setPredModeSubParts( MODE_INTER, 0, uhDepth ); // interprets depth relative to CTU level
1348          rpcTempCU->setCUTransquantBypassSubParts( bTransquantBypassFlag, 0, uhDepth );
1349          rpcTempCU->setChromaQpAdjSubParts( bTransquantBypassFlag ? 0 : m_ChromaQpAdjIdc, 0, uhDepth );
1350          rpcTempCU->setPartSizeSubParts( SIZE_2Nx2N, 0, uhDepth ); // interprets depth relative to CTU level
1351          rpcTempCU->setMergeFlagSubParts( true, 0, 0, uhDepth ); // interprets depth relative to CTU level
1352          rpcTempCU->setMergeIndexSubParts( uiMergeCand, 0, 0, uhDepth ); // interprets depth relative to CTU level
1353          rpcTempCU->setInterDirSubParts( uhInterDirNeighbours[uiMergeCand], 0, 0, uhDepth ); // interprets depth relative to CTU level
1354          rpcTempCU->getCUMvField( REF_PIC_LIST_0 )->setAllMvField( cMvFieldNeighbours[0 + 2*uiMergeCand], SIZE_2Nx2N, 0, 0 ); // interprets depth relative to rpcTempCU level
1355          rpcTempCU->getCUMvField( REF_PIC_LIST_1 )->setAllMvField( cMvFieldNeighbours[1 + 2*uiMergeCand], SIZE_2Nx2N, 0, 0 ); // interprets depth relative to rpcTempCU level
1356
1357          // do MC
1358          m_pcPredSearch->motionCompensation ( rpcTempCU, m_ppcPredYuvTemp[uhDepth] );
1359          // estimate residual and encode everything
1360          m_pcPredSearch->encodeResAndCalcRdInterCU( rpcTempCU,
1361                                                     m_ppcOrigYuv    [uhDepth],
1362                                                     m_ppcPredYuvTemp[uhDepth],
1363                                                     m_ppcResiYuvTemp[uhDepth],
1364                                                     m_ppcResiYuvBest[uhDepth],
1365                                                     m_ppcRecoYuvTemp[uhDepth],
1366                                                     (uiNoResidual != 0) DEBUG_STRING_PASS_INTO(tmpStr) );
1367
1368#ifdef DEBUG_STRING
1369          DebugInterPredResiReco(tmpStr, *(m_ppcPredYuvTemp[uhDepth]), *(m_ppcResiYuvBest[uhDepth]), *(m_ppcRecoYuvTemp[uhDepth]), DebugStringGetPredModeMask(rpcTempCU->getPredictionMode(0)));
1370#endif
1371
1372          if ((uiNoResidual == 0) && (rpcTempCU->getQtRootCbf(0) == 0))
1373          {
1374            // If no residual when allowing for one, then set mark to not try case where residual is forced to 0
1375            mergeCandBuffer[uiMergeCand] = 1;
1376          }
1377
1378          rpcTempCU->setSkipFlagSubParts( rpcTempCU->getQtRootCbf(0) == 0, 0, uhDepth );
1379          Int orgQP = rpcTempCU->getQP( 0 );
1380          xCheckDQP( rpcTempCU );
1381          xCheckBestMode(rpcBestCU, rpcTempCU, uhDepth DEBUG_STRING_PASS_INTO(bestStr) DEBUG_STRING_PASS_INTO(tmpStr));
1382
1383          rpcTempCU->initEstData( uhDepth, orgQP, bTransquantBypassFlag );
1384
1385          if( m_pcEncCfg->getUseFastDecisionForMerge() && !bestIsSkip )
1386          {
1387            bestIsSkip = rpcBestCU->getQtRootCbf(0) == 0;
1388          }
1389        }
1390      }
1391#if N0383_IL_CONSTRAINED_TILE_SETS_SEI
1392      }
1393#endif
1394#if REF_IDX_ME_ZEROMV
1395      }
1396#endif
1397    }
1398
1399    if(uiNoResidual == 0 && m_pcEncCfg->getUseEarlySkipDetection())
1400    {
1401      if(rpcBestCU->getQtRootCbf( 0 ) == 0)
1402      {
1403        if( rpcBestCU->getMergeFlag( 0 ))
1404        {
1405          *earlyDetectionSkipMode = true;
1406        }
1407        else if(m_pcEncCfg->getFastSearch() != SELECTIVE)
1408        {
1409          Int absoulte_MV=0;
1410          for ( UInt uiRefListIdx = 0; uiRefListIdx < 2; uiRefListIdx++ )
1411          {
1412            if ( rpcBestCU->getSlice()->getNumRefIdx( RefPicList( uiRefListIdx ) ) > 0 )
1413            {
1414              TComCUMvField* pcCUMvField = rpcBestCU->getCUMvField(RefPicList( uiRefListIdx ));
1415              Int iHor = pcCUMvField->getMvd( 0 ).getAbsHor();
1416              Int iVer = pcCUMvField->getMvd( 0 ).getAbsVer();
1417              absoulte_MV+=iHor+iVer;
1418            }
1419          }
1420
1421          if(absoulte_MV == 0)
1422          {
1423            *earlyDetectionSkipMode = true;
1424          }
1425        }
1426      }
1427    }
1428  }
1429  DEBUG_STRING_APPEND(sDebug, bestStr)
1430}
1431
1432
1433#if AMP_MRG
1434Void TEncCu::xCheckRDCostInter( TComDataCU*& rpcBestCU, TComDataCU*& rpcTempCU, PartSize ePartSize DEBUG_STRING_FN_DECLARE(sDebug), Bool bUseMRG)
1435#else
1436Void TEncCu::xCheckRDCostInter( TComDataCU*& rpcBestCU, TComDataCU*& rpcTempCU, PartSize ePartSize )
1437#endif
1438{
1439  DEBUG_STRING_NEW(sTest)
1440
1441  UChar uhDepth = rpcTempCU->getDepth( 0 );
1442
1443  rpcTempCU->setDepthSubParts( uhDepth, 0 );
1444
1445  rpcTempCU->setSkipFlagSubParts( false, 0, uhDepth );
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  Bool bSeparateLumaChroma = true; // choose estimation mode
1507
1508  Distortion uiPreCalcDistC = 0;
1509  if (rpcBestCU->getPic()->getChromaFormat()==CHROMA_400)
1510  {
1511    bSeparateLumaChroma=true;
1512  }
1513
1514  Pel resiLuma[NUMBER_OF_STORED_RESIDUAL_TYPES][MAX_CU_SIZE * MAX_CU_SIZE];
1515
1516  if( !bSeparateLumaChroma )
1517  {
1518    // after this function, the direction will be PLANAR, DC, HOR or VER
1519    // however, if Luma ends up being one of those, the chroma dir must be later changed to DM_CHROMA.
1520    m_pcPredSearch->preestChromaPredMode( rpcTempCU, m_ppcOrigYuv[uiDepth], m_ppcPredYuvTemp[uiDepth] );
1521  }
1522  m_pcPredSearch->estIntraPredQT( rpcTempCU, m_ppcOrigYuv[uiDepth], m_ppcPredYuvTemp[uiDepth], m_ppcResiYuvTemp[uiDepth], m_ppcRecoYuvTemp[uiDepth], resiLuma, uiPreCalcDistC, bSeparateLumaChroma DEBUG_STRING_PASS_INTO(sTest) );
1523
1524  m_ppcRecoYuvTemp[uiDepth]->copyToPicComponent(COMPONENT_Y, rpcTempCU->getPic()->getPicYuvRec(), rpcTempCU->getCtuRsAddr(), rpcTempCU->getZorderIdxInCtu() );
1525
1526  if (rpcBestCU->getPic()->getChromaFormat()!=CHROMA_400)
1527  {
1528    m_pcPredSearch->estIntraPredChromaQT( rpcTempCU, m_ppcOrigYuv[uiDepth], m_ppcPredYuvTemp[uiDepth], m_ppcResiYuvTemp[uiDepth], m_ppcRecoYuvTemp[uiDepth], resiLuma, uiPreCalcDistC DEBUG_STRING_PASS_INTO(sTest) );
1529  }
1530
1531  m_pcEntropyCoder->resetBits();
1532
1533  if ( rpcTempCU->getSlice()->getPPS()->getTransquantBypassEnableFlag())
1534  {
1535    m_pcEntropyCoder->encodeCUTransquantBypassFlag( rpcTempCU, 0,          true );
1536  }
1537
1538  m_pcEntropyCoder->encodeSkipFlag ( rpcTempCU, 0,          true );
1539  m_pcEntropyCoder->encodePredMode( rpcTempCU, 0,          true );
1540  m_pcEntropyCoder->encodePartSize( rpcTempCU, 0, uiDepth, true );
1541  m_pcEntropyCoder->encodePredInfo( rpcTempCU, 0 );
1542  m_pcEntropyCoder->encodeIPCMInfo(rpcTempCU, 0, true );
1543
1544  // Encode Coefficients
1545  Bool bCodeDQP = getdQPFlag();
1546  Bool codeChromaQpAdjFlag = getCodeChromaQpAdjFlag();
1547  m_pcEntropyCoder->encodeCoeff( rpcTempCU, 0, uiDepth, bCodeDQP, codeChromaQpAdjFlag );
1548  setCodeChromaQpAdjFlag( codeChromaQpAdjFlag );
1549  setdQPFlag( bCodeDQP );
1550
1551  m_pcRDGoOnSbacCoder->store(m_pppcRDSbacCoder[uiDepth][CI_TEMP_BEST]);
1552
1553  rpcTempCU->getTotalBits() = m_pcEntropyCoder->getNumberOfWrittenBits();
1554  rpcTempCU->getTotalBins() = ((TEncBinCABAC *)((TEncSbac*)m_pcEntropyCoder->m_pcEntropyCoderIf)->getEncBinIf())->getBinsCoded();
1555  rpcTempCU->getTotalCost() = m_pcRdCost->calcRdCost( rpcTempCU->getTotalBits(), rpcTempCU->getTotalDistortion() );
1556
1557  xCheckDQP( rpcTempCU );
1558
1559  cost = rpcTempCU->getTotalCost();
1560
1561  xCheckBestMode(rpcBestCU, rpcTempCU, uiDepth DEBUG_STRING_PASS_INTO(sDebug) DEBUG_STRING_PASS_INTO(sTest));
1562}
1563
1564
1565/** Check R-D costs for a CU with PCM mode.
1566 * \param rpcBestCU pointer to best mode CU data structure
1567 * \param rpcTempCU pointer to testing mode CU data structure
1568 * \returns Void
1569 *
1570 * \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.
1571 */
1572Void TEncCu::xCheckIntraPCM( TComDataCU*& rpcBestCU, TComDataCU*& rpcTempCU )
1573{
1574  UInt uiDepth = rpcTempCU->getDepth( 0 );
1575
1576  rpcTempCU->setSkipFlagSubParts( false, 0, uiDepth );
1577
1578  rpcTempCU->setIPCMFlag(0, true);
1579  rpcTempCU->setIPCMFlagSubParts (true, 0, rpcTempCU->getDepth(0));
1580  rpcTempCU->setPartSizeSubParts( SIZE_2Nx2N, 0, uiDepth );
1581  rpcTempCU->setPredModeSubParts( MODE_INTRA, 0, uiDepth );
1582  rpcTempCU->setTrIdxSubParts ( 0, 0, uiDepth );
1583  rpcTempCU->setChromaQpAdjSubParts( rpcTempCU->getCUTransquantBypass(0) ? 0 : m_ChromaQpAdjIdc, 0, uiDepth );
1584
1585  m_pcPredSearch->IPCMSearch( rpcTempCU, m_ppcOrigYuv[uiDepth], m_ppcPredYuvTemp[uiDepth], m_ppcResiYuvTemp[uiDepth], m_ppcRecoYuvTemp[uiDepth]);
1586
1587  m_pcRDGoOnSbacCoder->load(m_pppcRDSbacCoder[uiDepth][CI_CURR_BEST]);
1588
1589  m_pcEntropyCoder->resetBits();
1590
1591  if ( rpcTempCU->getSlice()->getPPS()->getTransquantBypassEnableFlag())
1592  {
1593    m_pcEntropyCoder->encodeCUTransquantBypassFlag( rpcTempCU, 0,          true );
1594  }
1595
1596  m_pcEntropyCoder->encodeSkipFlag ( rpcTempCU, 0,          true );
1597  m_pcEntropyCoder->encodePredMode ( rpcTempCU, 0,          true );
1598  m_pcEntropyCoder->encodePartSize ( rpcTempCU, 0, uiDepth, true );
1599  m_pcEntropyCoder->encodeIPCMInfo ( rpcTempCU, 0, true );
1600
1601  m_pcRDGoOnSbacCoder->store(m_pppcRDSbacCoder[uiDepth][CI_TEMP_BEST]);
1602
1603  rpcTempCU->getTotalBits() = m_pcEntropyCoder->getNumberOfWrittenBits();
1604  rpcTempCU->getTotalBins() = ((TEncBinCABAC *)((TEncSbac*)m_pcEntropyCoder->m_pcEntropyCoderIf)->getEncBinIf())->getBinsCoded();
1605  rpcTempCU->getTotalCost() = m_pcRdCost->calcRdCost( rpcTempCU->getTotalBits(), rpcTempCU->getTotalDistortion() );
1606
1607  xCheckDQP( rpcTempCU );
1608  DEBUG_STRING_NEW(a)
1609  DEBUG_STRING_NEW(b)
1610  xCheckBestMode(rpcBestCU, rpcTempCU, uiDepth DEBUG_STRING_PASS_INTO(a) DEBUG_STRING_PASS_INTO(b));
1611}
1612
1613/** check whether current try is the best with identifying the depth of current try
1614 * \param rpcBestCU
1615 * \param rpcTempCU
1616 * \returns Void
1617 */
1618Void TEncCu::xCheckBestMode( TComDataCU*& rpcBestCU, TComDataCU*& rpcTempCU, UInt uiDepth DEBUG_STRING_FN_DECLARE(sParent) DEBUG_STRING_FN_DECLARE(sTest) DEBUG_STRING_PASS_INTO(Bool bAddSizeInfo) )
1619{
1620  if( rpcTempCU->getTotalCost() < rpcBestCU->getTotalCost() )
1621  {
1622    TComYuv* pcYuv;
1623    // Change Information data
1624    TComDataCU* pcCU = rpcBestCU;
1625    rpcBestCU = rpcTempCU;
1626    rpcTempCU = pcCU;
1627
1628    // Change Prediction data
1629    pcYuv = m_ppcPredYuvBest[uiDepth];
1630    m_ppcPredYuvBest[uiDepth] = m_ppcPredYuvTemp[uiDepth];
1631    m_ppcPredYuvTemp[uiDepth] = pcYuv;
1632
1633    // Change Reconstruction data
1634    pcYuv = m_ppcRecoYuvBest[uiDepth];
1635    m_ppcRecoYuvBest[uiDepth] = m_ppcRecoYuvTemp[uiDepth];
1636    m_ppcRecoYuvTemp[uiDepth] = pcYuv;
1637
1638    pcYuv = NULL;
1639    pcCU  = NULL;
1640
1641    // store temp best CI for next CU coding
1642    m_pppcRDSbacCoder[uiDepth][CI_TEMP_BEST]->store(m_pppcRDSbacCoder[uiDepth][CI_NEXT_BEST]);
1643
1644
1645#ifdef DEBUG_STRING
1646    DEBUG_STRING_SWAP(sParent, sTest)
1647    const PredMode predMode=rpcBestCU->getPredictionMode(0);
1648    if ((DebugOptionList::DebugString_Structure.getInt()&DebugStringGetPredModeMask(predMode)) && bAddSizeInfo)
1649    {
1650      std::stringstream ss(stringstream::out);
1651      ss <<"###: " << (predMode==MODE_INTRA?"Intra   ":"Inter   ") << partSizeToString[rpcBestCU->getPartitionSize(0)] << " CU at " << rpcBestCU->getCUPelX() << ", " << rpcBestCU->getCUPelY() << " width=" << UInt(rpcBestCU->getWidth(0)) << std::endl;
1652      sParent+=ss.str();
1653    }
1654#endif
1655  }
1656}
1657
1658Void TEncCu::xCheckDQP( TComDataCU* pcCU )
1659{
1660  UInt uiDepth = pcCU->getDepth( 0 );
1661
1662  if( pcCU->getSlice()->getPPS()->getUseDQP() && (g_uiMaxCUWidth>>uiDepth) >= (g_uiMaxCUWidth >> ( pcCU->getSlice()->getPPS()->getMaxCuDQPDepth())) )
1663  {
1664    if ( pcCU->getQtRootCbf( 0) )
1665    {
1666#if !RDO_WITHOUT_DQP_BITS
1667      m_pcEntropyCoder->resetBits();
1668      m_pcEntropyCoder->encodeQP( pcCU, 0, false );
1669      pcCU->getTotalBits() += m_pcEntropyCoder->getNumberOfWrittenBits(); // dQP bits
1670      pcCU->getTotalBins() += ((TEncBinCABAC *)((TEncSbac*)m_pcEntropyCoder->m_pcEntropyCoderIf)->getEncBinIf())->getBinsCoded();
1671      pcCU->getTotalCost() = m_pcRdCost->calcRdCost( pcCU->getTotalBits(), pcCU->getTotalDistortion() );
1672#endif
1673    }
1674    else
1675    {
1676      pcCU->setQPSubParts( pcCU->getRefQP( 0 ), 0, uiDepth ); // set QP to default QP
1677    }
1678  }
1679}
1680
1681Void TEncCu::xCopyAMVPInfo (AMVPInfo* pSrc, AMVPInfo* pDst)
1682{
1683  pDst->iN = pSrc->iN;
1684  for (Int i = 0; i < pSrc->iN; i++)
1685  {
1686    pDst->m_acMvCand[i] = pSrc->m_acMvCand[i];
1687  }
1688}
1689Void TEncCu::xCopyYuv2Pic(TComPic* rpcPic, UInt uiCUAddr, UInt uiAbsPartIdx, UInt uiDepth, UInt uiSrcDepth, TComDataCU* pcCU, UInt uiLPelX, UInt uiTPelY )
1690{
1691  UInt uiAbsPartIdxInRaster = g_auiZscanToRaster[uiAbsPartIdx];
1692  UInt uiSrcBlkWidth = rpcPic->getNumPartInCtuWidth() >> (uiSrcDepth);
1693  UInt uiBlkWidth    = rpcPic->getNumPartInCtuWidth() >> (uiDepth);
1694  UInt uiPartIdxX = ( ( uiAbsPartIdxInRaster % rpcPic->getNumPartInCtuWidth() ) % uiSrcBlkWidth) / uiBlkWidth;
1695  UInt uiPartIdxY = ( ( uiAbsPartIdxInRaster / rpcPic->getNumPartInCtuWidth() ) % uiSrcBlkWidth) / uiBlkWidth;
1696  UInt uiPartIdx = uiPartIdxY * ( uiSrcBlkWidth / uiBlkWidth ) + uiPartIdxX;
1697  m_ppcRecoYuvBest[uiSrcDepth]->copyToPicYuv( rpcPic->getPicYuvRec (), uiCUAddr, uiAbsPartIdx, uiDepth - uiSrcDepth, uiPartIdx);
1698
1699  m_ppcPredYuvBest[uiSrcDepth]->copyToPicYuv( rpcPic->getPicYuvPred (), uiCUAddr, uiAbsPartIdx, uiDepth - uiSrcDepth, uiPartIdx);
1700}
1701
1702Void TEncCu::xCopyYuv2Tmp( UInt uiPartUnitIdx, UInt uiNextDepth )
1703{
1704  UInt uiCurrDepth = uiNextDepth - 1;
1705  m_ppcRecoYuvBest[uiNextDepth]->copyToPartYuv( m_ppcRecoYuvTemp[uiCurrDepth], uiPartUnitIdx );
1706  m_ppcPredYuvBest[uiNextDepth]->copyToPartYuv( m_ppcPredYuvBest[uiCurrDepth], uiPartUnitIdx);
1707}
1708
1709/** Function for filling the PCM buffer of a CU using its original sample array
1710 * \param pcCU pointer to current CU
1711 * \param pcOrgYuv pointer to original sample array
1712 * \returns Void
1713 */
1714Void TEncCu::xFillPCMBuffer     ( TComDataCU* pCU, TComYuv* pOrgYuv )
1715{
1716  const ChromaFormat format = pCU->getPic()->getChromaFormat();
1717  const UInt numberValidComponents = getNumberValidComponents(format);
1718  for (UInt componentIndex = 0; componentIndex < numberValidComponents; componentIndex++)
1719  {
1720    const ComponentID component = ComponentID(componentIndex);
1721
1722    const UInt width  = pCU->getWidth(0)  >> getComponentScaleX(component, format);
1723    const UInt height = pCU->getHeight(0) >> getComponentScaleY(component, format);
1724
1725    Pel *source      = pOrgYuv->getAddr(component, 0, width);
1726    Pel *destination = pCU->getPCMSample(component);
1727
1728    const UInt sourceStride = pOrgYuv->getStride(component);
1729
1730    for (Int line = 0; line < height; line++)
1731    {
1732      for (Int column = 0; column < width; column++)
1733      {
1734        destination[column] = source[column];
1735      }
1736
1737      source      += sourceStride;
1738      destination += width;
1739    }
1740  }
1741}
1742
1743#if ADAPTIVE_QP_SELECTION
1744/** Collect ARL statistics from one block
1745  */
1746Int TEncCu::xTuCollectARLStats(TCoeff* rpcCoeff, TCoeff* rpcArlCoeff, Int NumCoeffInCU, Double* cSum, UInt* numSamples )
1747{
1748  for( Int n = 0; n < NumCoeffInCU; n++ )
1749  {
1750    TCoeff u = abs( rpcCoeff[ n ] );
1751    TCoeff absc = rpcArlCoeff[ n ];
1752
1753    if( u != 0 )
1754    {
1755      if( u < LEVEL_RANGE )
1756      {
1757        cSum[ u ] += ( Double )absc;
1758        numSamples[ u ]++;
1759      }
1760      else
1761      {
1762        cSum[ LEVEL_RANGE ] += ( Double )absc - ( Double )( u << ARL_C_PRECISION );
1763        numSamples[ LEVEL_RANGE ]++;
1764      }
1765    }
1766  }
1767
1768  return 0;
1769}
1770
1771/** Collect ARL statistics from one CTU
1772 * \param pcCU
1773 */
1774Void TEncCu::xCtuCollectARLStats(TComDataCU* pCtu )
1775{
1776  Double cSum[ LEVEL_RANGE + 1 ];     //: the sum of DCT coefficients corresponding to datatype and quantization output
1777  UInt numSamples[ LEVEL_RANGE + 1 ]; //: the number of coefficients corresponding to datatype and quantization output
1778
1779  TCoeff* pCoeffY = pCtu->getCoeff(COMPONENT_Y);
1780  TCoeff* pArlCoeffY = pCtu->getArlCoeff(COMPONENT_Y);
1781
1782  UInt uiMinCUWidth = g_uiMaxCUWidth >> g_uiMaxCUDepth;
1783  UInt uiMinNumCoeffInCU = 1 << uiMinCUWidth;
1784
1785  memset( cSum, 0, sizeof( Double )*(LEVEL_RANGE+1) );
1786  memset( numSamples, 0, sizeof( UInt )*(LEVEL_RANGE+1) );
1787
1788  // Collect stats to cSum[][] and numSamples[][]
1789  for(Int i = 0; i < pCtu->getTotalNumPart(); i ++ )
1790  {
1791    UInt uiTrIdx = pCtu->getTransformIdx(i);
1792
1793    if(pCtu->isInter(i) && pCtu->getCbf( i, COMPONENT_Y, uiTrIdx ) )
1794    {
1795      xTuCollectARLStats(pCoeffY, pArlCoeffY, uiMinNumCoeffInCU, cSum, numSamples);
1796    }//Note that only InterY is processed. QP rounding is based on InterY data only.
1797
1798    pCoeffY  += uiMinNumCoeffInCU;
1799    pArlCoeffY  += uiMinNumCoeffInCU;
1800  }
1801
1802  for(Int u=1; u<LEVEL_RANGE;u++)
1803  {
1804    m_pcTrQuant->getSliceSumC()[u] += cSum[ u ] ;
1805    m_pcTrQuant->getSliceNSamples()[u] += numSamples[ u ] ;
1806  }
1807  m_pcTrQuant->getSliceSumC()[LEVEL_RANGE] += cSum[ LEVEL_RANGE ] ;
1808  m_pcTrQuant->getSliceNSamples()[LEVEL_RANGE] += numSamples[ LEVEL_RANGE ] ;
1809}
1810#endif
1811
1812#if SVC_EXTENSION
1813#if N0383_IL_CONSTRAINED_TILE_SETS_SEI
1814Bool TEncCu::xCheckTileSetConstraint( TComDataCU*& rpcCU )
1815{
1816  Bool disableILP = false;
1817
1818  if (rpcCU->getLayerId() == (m_pcEncCfg->getNumLayer() - 1)  && m_pcEncCfg->getInterLayerConstrainedTileSetsSEIEnabled() && rpcCU->getPic()->getPicSym()->getTileSetIdxMap(rpcCU->getCtuRsAddr()) >= 0)
1819  {
1820    if (rpcCU->getPic()->getPicSym()->getTileSetType(rpcCU->getCtuRsAddr()) == 2)
1821    {
1822      disableILP = true;
1823    }
1824    if (rpcCU->getPic()->getPicSym()->getTileSetType(rpcCU->getCtuRsAddr()) == 1)
1825    {
1826      Int currCUaddr = rpcCU->getCtuRsAddr();
1827      Int frameWitdhInCU  = rpcCU->getPic()->getPicSym()->getFrameWidthInCtus();
1828      Int frameHeightInCU = rpcCU->getPic()->getPicSym()->getFrameHeightInCtus();
1829      Bool leftCUExists   = (currCUaddr % frameWitdhInCU) > 0;
1830      Bool aboveCUExists  = (currCUaddr / frameWitdhInCU) > 0;
1831      Bool rightCUExists  = (currCUaddr % frameWitdhInCU) < (frameWitdhInCU - 1);
1832      Bool belowCUExists  = (currCUaddr / frameWitdhInCU) < (frameHeightInCU - 1);
1833      Int currTileSetIdx  = rpcCU->getPic()->getPicSym()->getTileSetIdxMap(currCUaddr);
1834      // Check if CU is at tile set boundary
1835      if ( (leftCUExists && rpcCU->getPic()->getPicSym()->getTileSetIdxMap(currCUaddr-1) != currTileSetIdx) ||
1836           (leftCUExists && aboveCUExists && rpcCU->getPic()->getPicSym()->getTileSetIdxMap(currCUaddr-frameWitdhInCU-1) != currTileSetIdx) ||
1837           (aboveCUExists && rpcCU->getPic()->getPicSym()->getTileSetIdxMap(currCUaddr-frameWitdhInCU) != currTileSetIdx) ||
1838           (aboveCUExists && rightCUExists && rpcCU->getPic()->getPicSym()->getTileSetIdxMap(currCUaddr-frameWitdhInCU+1) != currTileSetIdx) ||
1839           (rightCUExists && rpcCU->getPic()->getPicSym()->getTileSetIdxMap(currCUaddr+1) != currTileSetIdx) ||
1840           (rightCUExists && belowCUExists && rpcCU->getPic()->getPicSym()->getTileSetIdxMap(currCUaddr+frameWitdhInCU+1) != currTileSetIdx) ||
1841           (belowCUExists && rpcCU->getPic()->getPicSym()->getTileSetIdxMap(currCUaddr+frameWitdhInCU) != currTileSetIdx) ||
1842           (belowCUExists && leftCUExists && rpcCU->getPic()->getPicSym()->getTileSetIdxMap(currCUaddr+frameWitdhInCU-1) != currTileSetIdx) )
1843      {
1844        disableILP = true;  // Disable ILP in tile set boundary CU
1845      }
1846    }
1847  }
1848
1849  return disableILP;
1850}
1851
1852Void TEncCu::xVerifyTileSetConstraint( TComDataCU*& rpcCU )
1853{
1854  if (rpcCU->getLayerId() == (m_pcEncCfg->getNumLayer() - 1)  && m_pcEncCfg->getInterLayerConstrainedTileSetsSEIEnabled() && rpcCU->getPic()->getPicSym()->getTileSetIdxMap(rpcCU->getCtuRsAddr()) >= 0 &&
1855      m_disableILP)
1856  {
1857    UInt numPartitions = rpcCU->getPic()->getNumPartitionsInCtu();
1858    for (UInt i = 0; i < numPartitions; i++)
1859    {
1860      if (!rpcCU->isIntra(i))
1861      {
1862        for (UInt refList = 0; refList < 2; refList++)
1863        {
1864          if (rpcCU->getInterDir(i) & (1<<refList))
1865          {
1866            TComCUMvField *mvField = rpcCU->getCUMvField(RefPicList(refList));
1867            if (mvField->getRefIdx(i) >= 0)
1868            {
1869              assert(!(rpcCU->getSlice()->getRefPic(RefPicList(refList), mvField->getRefIdx(i))->isILR(rpcCU->getLayerId())));
1870            }
1871          }
1872        }
1873      }
1874    }
1875  }
1876}
1877#endif
1878
1879#if ENCODER_FAST_MODE
1880Void TEncCu::xCheckRDCostILRUni(TComDataCU *&rpcBestCU, TComDataCU *&rpcTempCU, UInt refLayerId)
1881{
1882  UChar uhDepth = rpcTempCU->getDepth( 0 );
1883  rpcTempCU->setDepthSubParts( uhDepth, 0 );
1884#if SKIP_FLAG
1885  rpcTempCU->setSkipFlagSubParts( false, 0, uhDepth );
1886#endif
1887  rpcTempCU->setPartSizeSubParts  ( SIZE_2Nx2N,  0, uhDepth );  //2Nx2N
1888  rpcTempCU->setPredModeSubParts  ( MODE_INTER, 0, uhDepth );
1889  rpcTempCU->setCUTransquantBypassSubParts  ( m_pcEncCfg->getCUTransquantBypassFlagForceValue(), 0, uhDepth );
1890  Bool exitILR = m_pcPredSearch->predInterSearchILRUni( rpcTempCU, m_ppcOrigYuv[uhDepth], m_ppcPredYuvTemp[uhDepth], m_ppcResiYuvTemp[uhDepth], m_ppcRecoYuvTemp[uhDepth], refLayerId );
1891  if(!exitILR)
1892  {
1893     return;
1894  }
1895  m_pcPredSearch->encodeResAndCalcRdInterCU( rpcTempCU, m_ppcOrigYuv[uhDepth], m_ppcPredYuvTemp[uhDepth], m_ppcResiYuvTemp[uhDepth], m_ppcResiYuvBest[uhDepth], m_ppcRecoYuvTemp[uhDepth], false );
1896  rpcTempCU->getTotalCost()  = m_pcRdCost->calcRdCost( rpcTempCU->getTotalBits(), rpcTempCU->getTotalDistortion() );
1897  xCheckDQP( rpcTempCU );
1898  xCheckBestMode(rpcBestCU, rpcTempCU, uhDepth);
1899  return;
1900}
1901#endif
1902#endif //SVC_EXTENSION
1903//! \}
Note: See TracBrowser for help on using the repository browser.