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

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

port rev 4488

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