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

Last change on this file since 238 was 191, checked in by seregin, 12 years ago

unix2dos for *.cpp and *.h

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