source: 3DVCSoftware/trunk/source/Lib/TLibEncoder/TEncCu.cpp @ 72

Last change on this file since 72 was 61, checked in by suehring, 13 years ago

remove non-ascii characters

  • Property svn:eol-style set to native
File size: 96.7 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-2012, 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#if HHI_INTER_VIEW_RESIDUAL_PRED
75  m_ppcResPredTmp  = new TComYuv*[m_uhTotalDepth-1];
76#endif
77 
78#if HHI_MPI
79  m_puhDepthSaved  = new UChar[1ll<<( ( m_uhTotalDepth - 1 )<<1 )];
80  m_puhWidthSaved  = new UChar[1ll<<( ( m_uhTotalDepth - 1 )<<1 )];
81  m_puhHeightSaved = new UChar[1ll<<( ( m_uhTotalDepth - 1 )<<1 )];
82#endif
83
84  UInt uiNumPartitions;
85  for( i=0 ; i<m_uhTotalDepth-1 ; i++)
86  {
87    uiNumPartitions = 1<<( ( m_uhTotalDepth - i - 1 )<<1 );
88    UInt uiWidth  = uiMaxWidth  >> i;
89    UInt uiHeight = uiMaxHeight >> i;
90   
91    m_ppcBestCU[i] = new TComDataCU; m_ppcBestCU[i]->create( uiNumPartitions, uiWidth, uiHeight, false, uiMaxWidth >> (m_uhTotalDepth - 1) );
92    m_ppcTempCU[i] = new TComDataCU; m_ppcTempCU[i]->create( uiNumPartitions, uiWidth, uiHeight, false, uiMaxWidth >> (m_uhTotalDepth - 1) );
93   
94    m_ppcPredYuvBest[i] = new TComYuv; m_ppcPredYuvBest[i]->create(uiWidth, uiHeight);
95    m_ppcResiYuvBest[i] = new TComYuv; m_ppcResiYuvBest[i]->create(uiWidth, uiHeight);
96    m_ppcRecoYuvBest[i] = new TComYuv; m_ppcRecoYuvBest[i]->create(uiWidth, uiHeight);
97   
98    m_ppcPredYuvTemp[i] = new TComYuv; m_ppcPredYuvTemp[i]->create(uiWidth, uiHeight);
99    m_ppcResiYuvTemp[i] = new TComYuv; m_ppcResiYuvTemp[i]->create(uiWidth, uiHeight);
100    m_ppcRecoYuvTemp[i] = new TComYuv; m_ppcRecoYuvTemp[i]->create(uiWidth, uiHeight);
101   
102    m_ppcOrigYuv    [i] = new TComYuv; m_ppcOrigYuv    [i]->create(uiWidth, uiHeight);
103#if HHI_INTER_VIEW_RESIDUAL_PRED
104    m_ppcResPredTmp [i] = new TComYuv; m_ppcResPredTmp [i]->create(uiWidth, uiHeight);
105#endif
106  }
107 
108  m_bEncodeDQP = false;
109#if BURST_IPCM
110  m_checkBurstIPCMFlag = false;
111#endif
112
113  // initialize partition order.
114  UInt* piTmp = &g_auiZscanToRaster[0];
115  initZscanToRaster( m_uhTotalDepth, 1, 0, piTmp);
116  initRasterToZscan( uiMaxWidth, uiMaxHeight, m_uhTotalDepth );
117 
118  // initialize conversion matrix from partition index to pel
119  initRasterToPelXY( uiMaxWidth, uiMaxHeight, m_uhTotalDepth );
120  initMotionReferIdx ( uiMaxWidth, uiMaxHeight, m_uhTotalDepth );
121}
122
123Void TEncCu::destroy()
124{
125  Int i;
126 
127#if HHI_MPI
128  delete[] m_puhDepthSaved;  m_puhDepthSaved  = NULL;
129  delete[] m_puhWidthSaved;  m_puhWidthSaved  = NULL;
130  delete[] m_puhHeightSaved; m_puhHeightSaved = NULL;
131#endif
132  for( i=0 ; i<m_uhTotalDepth-1 ; i++)
133  {
134    if(m_ppcBestCU[i])
135    {
136      m_ppcBestCU[i]->destroy();      delete m_ppcBestCU[i];      m_ppcBestCU[i] = NULL;
137    }
138    if(m_ppcTempCU[i])
139    {
140      m_ppcTempCU[i]->destroy();      delete m_ppcTempCU[i];      m_ppcTempCU[i] = NULL;
141    }
142    if(m_ppcPredYuvBest[i])
143    {
144      m_ppcPredYuvBest[i]->destroy(); delete m_ppcPredYuvBest[i]; m_ppcPredYuvBest[i] = NULL;
145    }
146    if(m_ppcResiYuvBest[i])
147    {
148      m_ppcResiYuvBest[i]->destroy(); delete m_ppcResiYuvBest[i]; m_ppcResiYuvBest[i] = NULL;
149    }
150    if(m_ppcRecoYuvBest[i])
151    {
152      m_ppcRecoYuvBest[i]->destroy(); delete m_ppcRecoYuvBest[i]; m_ppcRecoYuvBest[i] = NULL;
153    }
154    if(m_ppcPredYuvTemp[i])
155    {
156      m_ppcPredYuvTemp[i]->destroy(); delete m_ppcPredYuvTemp[i]; m_ppcPredYuvTemp[i] = NULL;
157    }
158    if(m_ppcResiYuvTemp[i])
159    {
160      m_ppcResiYuvTemp[i]->destroy(); delete m_ppcResiYuvTemp[i]; m_ppcResiYuvTemp[i] = NULL;
161    }
162    if(m_ppcRecoYuvTemp[i])
163    {
164      m_ppcRecoYuvTemp[i]->destroy(); delete m_ppcRecoYuvTemp[i]; m_ppcRecoYuvTemp[i] = NULL;
165    }
166    if(m_ppcOrigYuv[i])
167    {
168      m_ppcOrigYuv[i]->destroy();     delete m_ppcOrigYuv[i];     m_ppcOrigYuv[i] = NULL;
169    }
170#if HHI_INTER_VIEW_RESIDUAL_PRED
171    if(m_ppcResPredTmp[i])
172    {
173      m_ppcResPredTmp [i]->destroy(); delete m_ppcResPredTmp[i];  m_ppcResPredTmp[i] = NULL;
174    }
175#endif
176  }
177  if(m_ppcBestCU)
178  {
179    delete [] m_ppcBestCU;
180    m_ppcBestCU = NULL;
181  }
182  if(m_ppcTempCU)
183  {
184    delete [] m_ppcTempCU;
185    m_ppcTempCU = NULL;
186  }
187 
188  if(m_ppcPredYuvBest)
189  {
190    delete [] m_ppcPredYuvBest;
191    m_ppcPredYuvBest = NULL;
192  }
193  if(m_ppcResiYuvBest)
194  {
195    delete [] m_ppcResiYuvBest;
196    m_ppcResiYuvBest = NULL;
197  }
198  if(m_ppcRecoYuvBest)
199  {
200    delete [] m_ppcRecoYuvBest;
201    m_ppcRecoYuvBest = NULL;
202  }
203  if(m_ppcPredYuvTemp)
204  {
205    delete [] m_ppcPredYuvTemp;
206    m_ppcPredYuvTemp = NULL;
207  }
208  if(m_ppcResiYuvTemp)
209  {
210    delete [] m_ppcResiYuvTemp;
211    m_ppcResiYuvTemp = NULL;
212  }
213  if(m_ppcRecoYuvTemp)
214  {
215    delete [] m_ppcRecoYuvTemp;
216    m_ppcRecoYuvTemp = NULL;
217  }
218  if(m_ppcOrigYuv)
219  {
220    delete [] m_ppcOrigYuv;
221    m_ppcOrigYuv = NULL;
222  }
223#if HHI_INTER_VIEW_RESIDUAL_PRED
224  if(m_ppcResPredTmp)
225  {
226    delete [] m_ppcResPredTmp;
227    m_ppcResPredTmp = NULL;
228  }
229#endif
230}
231
232/** \param    pcEncTop      pointer of encoder class
233 */
234Void TEncCu::init( TEncTop* pcEncTop )
235{
236  m_pcEncCfg           = pcEncTop;
237  m_pcPredSearch       = pcEncTop->getPredSearch();
238  m_pcTrQuant          = pcEncTop->getTrQuant();
239  m_pcBitCounter       = pcEncTop->getBitCounter();
240  m_pcRdCost           = pcEncTop->getRdCost();
241 
242  m_pcEntropyCoder     = pcEncTop->getEntropyCoder();
243  m_pcCavlcCoder       = pcEncTop->getCavlcCoder();
244  m_pcSbacCoder       = pcEncTop->getSbacCoder();
245  m_pcBinCABAC         = pcEncTop->getBinCABAC();
246 
247  m_pppcRDSbacCoder   = pcEncTop->getRDSbacCoder();
248  m_pcRDGoOnSbacCoder = pcEncTop->getRDGoOnSbacCoder();
249 
250  m_bUseSBACRD        = pcEncTop->getUseSBACRD();
251}
252
253// ====================================================================================================================
254// Public member functions
255// ====================================================================================================================
256
257/** \param  rpcCU pointer of CU data class
258 */
259Void TEncCu::compressCU( TComDataCU*& rpcCU )
260{
261  // initialize CU data
262  m_ppcBestCU[0]->initCU( rpcCU->getPic(), rpcCU->getAddr() );
263  m_ppcTempCU[0]->initCU( rpcCU->getPic(), rpcCU->getAddr() );
264
265  // analysis of CU
266  xCompressCU( m_ppcBestCU[0], m_ppcTempCU[0], 0 );
267
268#if ADAPTIVE_QP_SELECTION
269  if( m_pcEncCfg->getUseAdaptQpSelect() )
270  {
271    if(rpcCU->getSlice()->getSliceType()!=I_SLICE) //IIII
272    {
273      xLcuCollectARLStats( rpcCU);
274    }
275  }
276#endif
277}
278/** \param  pcCU  pointer of CU data class, bForceTerminate when set to true terminates slice (default is false).
279 */
280Void TEncCu::encodeCU ( TComDataCU* pcCU, Bool bForceTerminate )
281{
282  if ( pcCU->getSlice()->getPPS()->getUseDQP() )
283  {
284    setdQPFlag(true);
285  }
286
287#if BURST_IPCM
288  TComPic* pcPic = pcCU->getPic();
289  Bool checkBurstIPCMFlag = (pcPic->getSlice(0)->getSPS()->getUsePCM())? true : false;
290
291  setCheckBurstIPCMFlag( checkBurstIPCMFlag );
292
293  pcCU->setNumSucIPCM(0);
294  pcCU->setLastCUSucIPCMFlag(false);
295#endif
296
297  // Encode CU data
298  xEncodeCU( pcCU, 0, 0 );
299 
300#if OL_FLUSH
301  bool bTerminateSlice = bForceTerminate;
302  UInt uiCUAddr = pcCU->getAddr();
303    /* If at the end of an LCU line but not at the end of a substream, perform CABAC flush */
304#if WPP_SIMPLIFICATION
305    if (!bTerminateSlice && pcCU->getSlice()->getPPS()->getNumSubstreams() > 1)
306#else
307    if (!bTerminateSlice && pcCU->getSlice()->getPPS()->getCabacIstateReset())
308#endif
309    {
310      Int iNumSubstreams = pcCU->getSlice()->getPPS()->getNumSubstreams();
311      UInt uiWidthInLCUs = pcCU->getPic()->getPicSym()->getFrameWidthInCU();
312      UInt uiCol     = uiCUAddr % uiWidthInLCUs;
313      UInt uiLin     = uiCUAddr / uiWidthInLCUs;
314#if !REMOVE_TILE_DEPENDENCE
315      Int iBreakDep = pcCU->getPic()->getPicSym()->getTileBoundaryIndependenceIdr();
316#endif
317      UInt uiTileStartLCU = pcCU->getPic()->getPicSym()->getTComTile(pcCU->getPic()->getPicSym()->getTileIdxMap(uiCUAddr))->getFirstCUAddr();
318      UInt uiTileLCUX = uiTileStartLCU % uiWidthInLCUs;
319      UInt uiTileLCUY = uiTileStartLCU / uiWidthInLCUs;
320      UInt uiTileWidth = pcCU->getPic()->getPicSym()->getTComTile(pcCU->getPic()->getPicSym()->getTileIdxMap(uiCUAddr))->getTileWidth();
321      UInt uiTileHeight = pcCU->getPic()->getPicSym()->getTComTile(pcCU->getPic()->getPicSym()->getTileIdxMap(uiCUAddr))->getTileHeight();
322      Int iNumSubstreamsPerTile = iNumSubstreams;
323#if !REMOVE_TILE_DEPENDENCE
324#if WPP_SIMPLIFICATION
325      if (iBreakDep && pcCU->getSlice()->getPPS()->getNumSubstreams() > 1)
326#else
327      if (iBreakDep && pcCU->getSlice()->getPPS()->getEntropyCodingSynchro())
328#endif
329        iNumSubstreamsPerTile /= pcCU->getPic()->getPicSym()->getNumTiles();
330      if ((iBreakDep && (uiCol == uiTileLCUX+uiTileWidth-1) && (uiLin+iNumSubstreamsPerTile < uiTileLCUY+uiTileHeight))
331          || (!iBreakDep && (uiCol == uiWidthInLCUs-1) && (uiLin+iNumSubstreams < pcCU->getPic()->getFrameHeightInCU())))
332      {
333        m_pcEntropyCoder->encodeFlush();
334      }
335#else
336#if WPP_SIMPLIFICATION
337      if (pcCU->getSlice()->getPPS()->getNumSubstreams() > 1)
338#else
339      if (pcCU->getSlice()->getPPS()->getEntropyCodingSynchro())
340#endif
341      {
342        iNumSubstreamsPerTile /= pcCU->getPic()->getPicSym()->getNumTiles();
343      }
344      if ((uiCol == uiTileLCUX+uiTileWidth-1) && (uiLin+iNumSubstreamsPerTile < uiTileLCUY+uiTileHeight))
345      {
346        m_pcEntropyCoder->encodeFlush();
347      }
348#endif
349    }
350#endif // OL_FLUSH
351}
352
353// ====================================================================================================================
354// Protected member functions
355// ====================================================================================================================
356/** Derive small set of test modes for AMP encoder speed-up
357 *\param   rpcBestCU
358 *\param   eParentPartSize
359 *\param   bTestAMP_Hor
360 *\param   bTestAMP_Ver
361 *\param   bTestMergeAMP_Hor
362 *\param   bTestMergeAMP_Ver
363 *\returns Void
364*/
365#if AMP_ENC_SPEEDUP
366#if AMP_MRG
367Void TEncCu::deriveTestModeAMP (TComDataCU *&rpcBestCU, PartSize eParentPartSize, Bool &bTestAMP_Hor, Bool &bTestAMP_Ver, Bool &bTestMergeAMP_Hor, Bool &bTestMergeAMP_Ver)
368#else
369Void TEncCu::deriveTestModeAMP (TComDataCU *&rpcBestCU, PartSize eParentPartSize, Bool &bTestAMP_Hor, Bool &bTestAMP_Ver)
370#endif
371{
372  if ( rpcBestCU->getPartitionSize(0) == SIZE_2NxN )
373  {
374    bTestAMP_Hor = true;
375  }
376  else if ( rpcBestCU->getPartitionSize(0) == SIZE_Nx2N )
377  {
378    bTestAMP_Ver = true;
379  }
380  else if ( rpcBestCU->getPartitionSize(0) == SIZE_2Nx2N && rpcBestCU->getMergeFlag(0) == false && rpcBestCU->isSkipped(0) == false )
381  {
382    bTestAMP_Hor = true;         
383    bTestAMP_Ver = true;         
384  }
385
386#if AMP_MRG
387  //! Utilizing the partition size of parent PU   
388  if ( eParentPartSize >= SIZE_2NxnU && eParentPartSize <= SIZE_nRx2N )
389  { 
390    bTestMergeAMP_Hor = true;
391    bTestMergeAMP_Ver = true;
392  }
393
394  if ( eParentPartSize == SIZE_NONE ) //! if parent is intra
395  {
396    if ( rpcBestCU->getPartitionSize(0) == SIZE_2NxN )
397    {
398      bTestMergeAMP_Hor = true;
399    }
400    else if ( rpcBestCU->getPartitionSize(0) == SIZE_Nx2N )
401    {
402      bTestMergeAMP_Ver = true;
403    }
404  }
405
406  if ( rpcBestCU->getPartitionSize(0) == SIZE_2Nx2N && rpcBestCU->isSkipped(0) == false )
407  {
408    bTestMergeAMP_Hor = true;         
409    bTestMergeAMP_Ver = true;         
410  }
411
412  if ( rpcBestCU->getWidth(0) == 64 )
413  { 
414    bTestAMP_Hor = false;
415    bTestAMP_Ver = false;
416  }   
417#else
418  //! Utilizing the partition size of parent PU       
419  if ( eParentPartSize >= SIZE_2NxnU && eParentPartSize <= SIZE_nRx2N )
420  { 
421    bTestAMP_Hor = true;
422    bTestAMP_Ver = true;
423  }
424
425  if ( eParentPartSize == SIZE_2Nx2N )
426  { 
427    bTestAMP_Hor = false;
428    bTestAMP_Ver = false;
429  }     
430#endif
431}
432#endif
433
434// ====================================================================================================================
435// Protected member functions
436// ====================================================================================================================
437/** Compress a CU block recursively with enabling sub-LCU-level delta QP
438 *\param   rpcBestCU
439 *\param   rpcTempCU
440 *\param   uiDepth
441 *\returns Void
442 *
443 *- for loop of QP value to compress the current CU with all possible QP
444*/
445#if AMP_ENC_SPEEDUP
446Void TEncCu::xCompressCU( TComDataCU*& rpcBestCU, TComDataCU*& rpcTempCU, UInt uiDepth, PartSize eParentPartSize )
447#else
448Void TEncCu::xCompressCU( TComDataCU*& rpcBestCU, TComDataCU*& rpcTempCU, UInt uiDepth )
449#endif
450{
451  TComPic* pcPic = rpcBestCU->getPic();
452
453  // get Original YUV data from picture
454  m_ppcOrigYuv[uiDepth]->copyFromPicYuv( pcPic->getPicYuvOrg(), rpcBestCU->getAddr(), rpcBestCU->getZorderIdxInCU() );
455
456  // variables for fast encoder decision
457  Bool    bEarlySkip  = false;
458  Bool    bTrySplit    = true;
459  Double  fRD_Skip    = MAX_DOUBLE;
460
461  // variable for Early CU determination
462  Bool    bSubBranch = true;
463
464  // variable for Cbf fast mode PU decision
465  Bool    doNotBlockPu = true;
466
467  Bool    bTrySplitDQP  = true;
468
469  static  Double  afCost[ MAX_CU_DEPTH ];
470  static  Int      aiNum [ MAX_CU_DEPTH ];
471
472  if ( rpcBestCU->getAddr() == 0 )
473  {
474    ::memset( afCost, 0, sizeof( afCost ) );
475    ::memset( aiNum,  0, sizeof( aiNum  ) );
476  }
477
478  Bool bBoundary = false;
479  UInt uiLPelX   = rpcBestCU->getCUPelX();
480  UInt uiRPelX   = uiLPelX + rpcBestCU->getWidth(0)  - 1;
481  UInt uiTPelY   = rpcBestCU->getCUPelY();
482  UInt uiBPelY   = uiTPelY + rpcBestCU->getHeight(0) - 1;
483
484#if HHI_INTERVIEW_SKIP
485  Bool bFullyRenderedSec = true ;
486  if( m_pcEncCfg->getInterViewSkip() )
487  {
488    Pel* pUsedSamples ;
489    UInt uiStride ;
490    pUsedSamples =  pcPic->getUsedPelsMap()->getLumaAddr( rpcBestCU->getAddr(), rpcBestCU->getZorderIdxInCU() );
491    uiStride = pcPic->getUsedPelsMap()->getStride();
492
493    for ( Int y=0; y<m_ppcOrigYuv[uiDepth]->getHeight(); y++)
494    {
495      for ( Int x=0; x<m_ppcOrigYuv[uiDepth]->getWidth(); x++)
496      {
497        if( pUsedSamples[x] !=0 )
498        {
499          bFullyRenderedSec = false ;
500          break ;
501        }
502      }
503      if ( !bFullyRenderedSec )
504      {
505        break;
506      }
507      pUsedSamples += uiStride ;
508    }
509  }
510  else
511  {
512    bFullyRenderedSec = false ;
513  }
514
515#if HHI_INTERVIEW_SKIP_LAMBDA_SCALE
516  if( bFullyRenderedSec )
517  {
518    m_pcRdCost->setLambdaScale( m_pcEncCfg->getInterViewSkipLambdaScale() );
519  }
520  else
521  {
522    m_pcRdCost->setLambdaScale( 1 );
523  }
524  rpcTempCU->getTotalCost()  = m_pcRdCost->calcRdCost( rpcTempCU->getTotalBits(), rpcTempCU->getTotalDistortion() );
525#endif
526
527#endif
528  Int iBaseQP = xComputeQP( rpcBestCU, uiDepth );
529  Int iMinQP;
530  Int iMaxQP;
531#if LOSSLESS_CODING
532  Bool isAddLowestQP = false;
533#if H0736_AVC_STYLE_QP_RANGE
534  Int lowestQP = -rpcTempCU->getSlice()->getSPS()->getQpBDOffsetY();
535#else
536  Int lowestQP = 0;
537#endif
538#endif
539
540  if( (g_uiMaxCUWidth>>uiDepth) >= rpcTempCU->getSlice()->getPPS()->getMinCuDQPSize() )
541  {
542    Int idQP = m_pcEncCfg->getMaxDeltaQP();
543#if H0736_AVC_STYLE_QP_RANGE
544    iMinQP = Clip3( -rpcTempCU->getSlice()->getSPS()->getQpBDOffsetY(), MAX_QP, iBaseQP-idQP );
545    iMaxQP = Clip3( -rpcTempCU->getSlice()->getSPS()->getQpBDOffsetY(), MAX_QP, iBaseQP+idQP );
546#if LOSSLESS_CODING
547    if ( (rpcTempCU->getSlice()->getSPS()->getUseLossless()) && (lowestQP < iMinQP) && rpcTempCU->getSlice()->getPPS()->getUseDQP() )
548    {
549      isAddLowestQP = true; 
550      iMinQP = iMinQP - 1;
551       
552    }
553#endif
554#else
555    iMinQP = Clip3( MIN_QP, MAX_QP, iBaseQP-idQP );
556    iMaxQP = Clip3( MIN_QP, MAX_QP, iBaseQP+idQP );
557#if LOSSLESS_CODING
558    if ( (rpcTempCU->getSlice()->getSPS()->getUseLossless()) && (lowestQP < iMinQP) && rpcTempCU->getSlice()->getPPS()->getUseDQP() )
559    {
560      isAddLowestQP = true;
561      iMinQP = iMinQP - 1;
562    }
563#endif
564#endif
565  }
566  else
567  {
568    iMinQP = rpcTempCU->getQP(0);
569    iMaxQP = rpcTempCU->getQP(0);
570  }
571
572  // If slice start or slice end is within this cu...
573  TComSlice * pcSlice = rpcTempCU->getPic()->getSlice(rpcTempCU->getPic()->getCurrSliceIdx());
574  Bool bSliceStart = pcSlice->getEntropySliceCurStartCUAddr()>rpcTempCU->getSCUAddr()&&pcSlice->getEntropySliceCurStartCUAddr()<rpcTempCU->getSCUAddr()+rpcTempCU->getTotalNumPart();
575  Bool bSliceEnd = (pcSlice->getEntropySliceCurEndCUAddr()>rpcTempCU->getSCUAddr()&&pcSlice->getEntropySliceCurEndCUAddr()<rpcTempCU->getSCUAddr()+rpcTempCU->getTotalNumPart());
576  Bool bInsidePicture = ( uiRPelX < rpcBestCU->getSlice()->getSPS()->getPicWidthInLumaSamples() ) && ( uiBPelY < rpcBestCU->getSlice()->getSPS()->getPicHeightInLumaSamples() );
577  // We need to split, so don't try these modes.
578  if(!bSliceEnd && !bSliceStart && bInsidePicture )
579  {
580    for (Int iQP=iMinQP; iQP<=iMaxQP; iQP++)
581    {
582#if LOSSLESS_CODING
583      if (isAddLowestQP && (iQP == iMinQP))
584      {
585        iQP = lowestQP;
586      }
587#endif
588      // variables for fast encoder decision
589      bEarlySkip  = false;
590      bTrySplit    = true;
591      fRD_Skip    = MAX_DOUBLE;
592
593      rpcTempCU->initEstData( uiDepth, iQP );
594
595      // do inter modes, SKIP and 2Nx2N
596      if( rpcBestCU->getSlice()->getSliceType() != I_SLICE )
597      {
598#if HHI_INTER_VIEW_RESIDUAL_PRED
599        // check availability of residual prediction
600        Bool  bResPredAvailable   = false;
601        Bool  bResPredAllowed     =                    (!rpcBestCU->getSlice()->getSPS()->isDepth                () );
602        bResPredAllowed           = bResPredAllowed && ( rpcBestCU->getSlice()->getSPS()->getViewId              () );
603        bResPredAllowed           = bResPredAllowed && ( rpcBestCU->getSlice()->getSPS()->getMultiviewResPredMode() );
604        if( bResPredAllowed )
605        {
606          bResPredAvailable       = rpcBestCU->getResidualSamples( 0, m_ppcResPredTmp[uiDepth] );
607        }
608
609        for( UInt uiResPrdId = 0; uiResPrdId < ( bResPredAvailable ? 2 : 1 ); uiResPrdId++ )
610        {
611          Bool bResPredFlag  = ( uiResPrdId > 0 );
612#endif
613#if HHI_INTER_VIEW_RESIDUAL_PRED
614        rpcTempCU->setResPredIndicator( bResPredAvailable, bResPredFlag );
615#endif
616        // SKIP
617#if HHI_INTERVIEW_SKIP
618        xCheckRDCostMerge2Nx2N( rpcBestCU, rpcTempCU, bFullyRenderedSec );
619#else
620        xCheckRDCostMerge2Nx2N( rpcBestCU, rpcTempCU );
621#endif
622        rpcTempCU->initEstData( uiDepth, iQP );
623
624        // fast encoder decision for early skip
625        if ( m_pcEncCfg->getUseFastEnc() )
626        {
627          Int iIdx = g_aucConvertToBit[ rpcBestCU->getWidth(0) ];
628          if ( aiNum [ iIdx ] > 5 && fRD_Skip < EARLY_SKIP_THRES*afCost[ iIdx ]/aiNum[ iIdx ] )
629          {
630            bEarlySkip = true;
631            bTrySplit  = false;
632          }
633        }
634
635        // 2Nx2N, NxN
636        if ( !bEarlySkip )
637        {
638#if HHI_INTER_VIEW_RESIDUAL_PRED
639          rpcTempCU->setResPredIndicator( bResPredAvailable, bResPredFlag );
640#endif
641#if HHI_INTERVIEW_SKIP
642            xCheckRDCostInter( rpcBestCU, rpcTempCU, SIZE_2Nx2N, bFullyRenderedSec );
643
644#else
645            xCheckRDCostInter( rpcBestCU, rpcTempCU, SIZE_2Nx2N );
646#endif
647          rpcTempCU->initEstData( uiDepth, iQP );
648          if(m_pcEncCfg->getUseCbfFastMode())
649          {
650            doNotBlockPu = rpcBestCU->getQtRootCbf( 0 ) != 0;
651          }
652        }
653#if HHI_INTER_VIEW_RESIDUAL_PRED
654        } // uiResPrdId
655#endif
656      } // != I_SLICE
657
658
659      if( (g_uiMaxCUWidth>>uiDepth) >= rpcTempCU->getSlice()->getPPS()->getMinCuDQPSize() )
660      {
661        if(iQP == iBaseQP)
662        {
663          bTrySplitDQP = bTrySplit;
664        }
665      }
666      else
667      {
668        bTrySplitDQP = bTrySplit;
669      }
670#if LOSSLESS_CODING
671      if (isAddLowestQP && (iQP == lowestQP))
672      {
673        iQP = iMinQP;
674      }
675#endif
676    }  // end for iMinQP to iMaxQP
677
678
679    for (Int iQP=iMinQP; iQP<=iMaxQP; iQP++)
680    {
681#if LOSSLESS_CODING
682      if (isAddLowestQP && (iQP == iMinQP))
683      {
684        iQP = lowestQP;
685      }
686#endif
687      rpcTempCU->initEstData( uiDepth, iQP );
688
689      // do inter modes, NxN, 2NxN, and Nx2N
690      if( rpcBestCU->getSlice()->getSliceType() != I_SLICE )
691      {
692#if HHI_INTER_VIEW_RESIDUAL_PRED
693        // check availability of residual prediction
694        Bool  bResPredAvailable   = false;
695        Bool  bResPredAllowed     =                    (!rpcBestCU->getSlice()->getSPS()->isDepth                () );
696        bResPredAllowed           = bResPredAllowed && ( rpcBestCU->getSlice()->getSPS()->getViewId              () );
697        bResPredAllowed           = bResPredAllowed && ( rpcBestCU->getSlice()->getSPS()->getMultiviewResPredMode() );
698        if( bResPredAllowed )
699        {
700          bResPredAvailable       = rpcBestCU->getResidualSamples( 0, m_ppcResPredTmp[uiDepth] );
701        }
702
703        for( UInt uiResPrdId = 0; uiResPrdId < ( bResPredAvailable ? 2 : 1 ); uiResPrdId++ )
704        {
705          Bool bResPredFlag  = ( uiResPrdId > 0 );
706#endif
707        // 2Nx2N, NxN
708        if ( !bEarlySkip )
709        {
710
711        if(!( rpcBestCU->getSlice()->getSPS()->getDisInter4x4()  && (rpcBestCU->getWidth(0)==8) && (rpcBestCU->getHeight(0)==8) ))
712        {
713          if( uiDepth == g_uiMaxCUDepth - g_uiAddCUDepth && doNotBlockPu)
714          {
715#if HHI_INTER_VIEW_RESIDUAL_PRED
716            rpcTempCU->setResPredIndicator( bResPredAvailable, bResPredFlag );
717#endif
718#if HHI_INTERVIEW_SKIP
719            xCheckRDCostInter( rpcBestCU, rpcTempCU, SIZE_NxN, bFullyRenderedSec   );
720#else
721            xCheckRDCostInter( rpcBestCU, rpcTempCU, SIZE_NxN   );
722#endif
723            rpcTempCU->initEstData( uiDepth, iQP );
724          }
725        }
726        }
727
728        { // 2NxN, Nx2N
729          if(doNotBlockPu)
730          {
731#if HHI_INTER_VIEW_RESIDUAL_PRED
732            rpcTempCU->setResPredIndicator( bResPredAvailable, bResPredFlag );
733#endif
734#if HHI_INTERVIEW_SKIP
735            xCheckRDCostInter( rpcBestCU, rpcTempCU, SIZE_Nx2N, bFullyRenderedSec   );
736#else
737            xCheckRDCostInter( rpcBestCU, rpcTempCU, SIZE_Nx2N  );
738#endif
739            rpcTempCU->initEstData( uiDepth, iQP );
740            if(m_pcEncCfg->getUseCbfFastMode() && rpcBestCU->getPartitionSize(0) == SIZE_Nx2N )
741            {
742              doNotBlockPu = rpcBestCU->getQtRootCbf( 0 ) != 0;
743            }
744          }
745          if(doNotBlockPu)
746          {
747#if HHI_INTER_VIEW_RESIDUAL_PRED
748            rpcTempCU->setResPredIndicator( bResPredAvailable, bResPredFlag );
749#endif
750#if HHI_INTERVIEW_SKIP
751            xCheckRDCostInter( rpcBestCU, rpcTempCU, SIZE_2NxN, bFullyRenderedSec   );
752#else
753            xCheckRDCostInter      ( rpcBestCU, rpcTempCU, SIZE_2NxN  );
754#endif
755            rpcTempCU->initEstData( uiDepth, iQP );
756            if(m_pcEncCfg->getUseCbfFastMode() && rpcBestCU->getPartitionSize(0) == SIZE_2NxN)
757            {
758              doNotBlockPu = rpcBestCU->getQtRootCbf( 0 ) != 0;
759            }
760          }
761        }
762
763#if 1
764        //! Try AMP (SIZE_2NxnU, SIZE_2NxnD, SIZE_nLx2N, SIZE_nRx2N)
765        if( pcPic->getSlice(0)->getSPS()->getAMPAcc(uiDepth) )
766        {
767#if AMP_ENC_SPEEDUP       
768          Bool bTestAMP_Hor = false, bTestAMP_Ver = false;
769
770#if AMP_MRG
771          Bool bTestMergeAMP_Hor = false, bTestMergeAMP_Ver = false;
772
773          deriveTestModeAMP (rpcBestCU, eParentPartSize, bTestAMP_Hor, bTestAMP_Ver, bTestMergeAMP_Hor, bTestMergeAMP_Ver);
774#else
775          deriveTestModeAMP (rpcBestCU, eParentPartSize, bTestAMP_Hor, bTestAMP_Ver);
776#endif
777
778          //! Do horizontal AMP
779          if ( bTestAMP_Hor )
780          {
781            if(doNotBlockPu)
782            {
783#if HHI_INTER_VIEW_RESIDUAL_PRED
784              rpcTempCU->setResPredIndicator( bResPredAvailable, bResPredFlag );
785#endif
786#if HHI_INTERVIEW_SKIP
787              xCheckRDCostInter( rpcBestCU, rpcTempCU, SIZE_2NxnU, bFullyRenderedSec );
788#else
789              xCheckRDCostInter( rpcBestCU, rpcTempCU, SIZE_2NxnU );
790#endif
791              rpcTempCU->initEstData( uiDepth, iQP );
792              if(m_pcEncCfg->getUseCbfFastMode() && rpcBestCU->getPartitionSize(0) == SIZE_2NxnU )
793              {
794                doNotBlockPu = rpcBestCU->getQtRootCbf( 0 ) != 0;
795              }
796            }
797            if(doNotBlockPu)
798            {
799#if HHI_INTER_VIEW_RESIDUAL_PRED
800              rpcTempCU->setResPredIndicator( bResPredAvailable, bResPredFlag );
801#endif
802#if HHI_INTERVIEW_SKIP
803              xCheckRDCostInter( rpcBestCU, rpcTempCU, SIZE_2NxnD, bFullyRenderedSec );
804#else
805              xCheckRDCostInter( rpcBestCU, rpcTempCU, SIZE_2NxnD );
806#endif
807              rpcTempCU->initEstData( uiDepth, iQP );
808              if(m_pcEncCfg->getUseCbfFastMode() && rpcBestCU->getPartitionSize(0) == SIZE_2NxnD )
809              {
810                doNotBlockPu = rpcBestCU->getQtRootCbf( 0 ) != 0;
811              }
812            }
813          }
814#if AMP_MRG
815          else if ( bTestMergeAMP_Hor ) 
816          {
817            if(doNotBlockPu)
818            {
819#if HHI_INTER_VIEW_RESIDUAL_PRED
820              rpcTempCU->setResPredIndicator( bResPredAvailable, bResPredFlag );
821#endif
822#if HHI_INTERVIEW_SKIP
823              xCheckRDCostInter( rpcBestCU, rpcTempCU, SIZE_2NxnU, bFullyRenderedSec, true );
824#else
825              xCheckRDCostInter( rpcBestCU, rpcTempCU, SIZE_2NxnU, true );
826#endif
827              rpcTempCU->initEstData( uiDepth, iQP );
828              if(m_pcEncCfg->getUseCbfFastMode() && rpcBestCU->getPartitionSize(0) == SIZE_2NxnU )
829              {
830                doNotBlockPu = rpcBestCU->getQtRootCbf( 0 ) != 0;
831              }
832            }
833            if(doNotBlockPu)
834            {
835#if HHI_INTER_VIEW_RESIDUAL_PRED
836              rpcTempCU->setResPredIndicator( bResPredAvailable, bResPredFlag );
837#endif
838#if HHI_INTERVIEW_SKIP
839              xCheckRDCostInter( rpcBestCU, rpcTempCU, SIZE_2NxnD, bFullyRenderedSec, true );
840#else
841              xCheckRDCostInter( rpcBestCU, rpcTempCU, SIZE_2NxnD, true );
842#endif
843              rpcTempCU->initEstData( uiDepth, iQP );
844              if(m_pcEncCfg->getUseCbfFastMode() && rpcBestCU->getPartitionSize(0) == SIZE_2NxnD )
845              {
846                doNotBlockPu = rpcBestCU->getQtRootCbf( 0 ) != 0;
847              }
848            }
849          }
850#endif
851
852          //! Do horizontal AMP
853          if ( bTestAMP_Ver )
854          {
855            if(doNotBlockPu)
856            {
857#if HHI_INTER_VIEW_RESIDUAL_PRED
858              rpcTempCU->setResPredIndicator( bResPredAvailable, bResPredFlag );
859#endif
860#if HHI_INTERVIEW_SKIP
861              xCheckRDCostInter( rpcBestCU, rpcTempCU, SIZE_nLx2N, bFullyRenderedSec );
862#else
863              xCheckRDCostInter( rpcBestCU, rpcTempCU, SIZE_nLx2N );
864#endif
865              rpcTempCU->initEstData( uiDepth, iQP );
866              if(m_pcEncCfg->getUseCbfFastMode() && rpcBestCU->getPartitionSize(0) == SIZE_nLx2N )
867              {
868                doNotBlockPu = rpcBestCU->getQtRootCbf( 0 ) != 0;
869              }
870            }
871            if(doNotBlockPu)
872            {
873#if HHI_INTER_VIEW_RESIDUAL_PRED
874              rpcTempCU->setResPredIndicator( bResPredAvailable, bResPredFlag );
875#endif
876#if HHI_INTERVIEW_SKIP
877              xCheckRDCostInter( rpcBestCU, rpcTempCU, SIZE_nRx2N, bFullyRenderedSec );
878#else
879              xCheckRDCostInter( rpcBestCU, rpcTempCU, SIZE_nRx2N );
880#endif
881              rpcTempCU->initEstData( uiDepth, iQP );
882            }
883          }
884#if AMP_MRG
885          else if ( bTestMergeAMP_Ver )
886          {
887            if(doNotBlockPu)
888            {
889#if HHI_INTER_VIEW_RESIDUAL_PRED
890              rpcTempCU->setResPredIndicator( bResPredAvailable, bResPredFlag );
891#endif
892#if HHI_INTERVIEW_SKIP
893              xCheckRDCostInter( rpcBestCU, rpcTempCU, SIZE_nLx2N, bFullyRenderedSec, true );
894#else
895              xCheckRDCostInter( rpcBestCU, rpcTempCU, SIZE_nLx2N, true );
896#endif
897              rpcTempCU->initEstData( uiDepth, iQP );
898              if(m_pcEncCfg->getUseCbfFastMode() && rpcBestCU->getPartitionSize(0) == SIZE_nLx2N )
899              {
900                doNotBlockPu = rpcBestCU->getQtRootCbf( 0 ) != 0;
901              }
902            }
903            if(doNotBlockPu)
904            {
905#if HHI_INTER_VIEW_RESIDUAL_PRED
906              rpcTempCU->setResPredIndicator( bResPredAvailable, bResPredFlag );
907#endif
908#if HHI_INTERVIEW_SKIP
909              xCheckRDCostInter( rpcBestCU, rpcTempCU, SIZE_nRx2N, bFullyRenderedSec, true );
910#else
911              xCheckRDCostInter( rpcBestCU, rpcTempCU, SIZE_nRx2N, true );
912#endif
913              rpcTempCU->initEstData( uiDepth, iQP );
914            }
915          }
916#endif
917
918#else
919#if HHI_INTER_VIEW_RESIDUAL_PRED
920              rpcTempCU->setResPredIndicator( bResPredAvailable, bResPredFlag );
921#endif
922#if HHI_INTERVIEW_SKIP
923              xCheckRDCostInter( rpcBestCU, rpcTempCU, SIZE_2NxnU, bFullyRenderedSec );
924#else
925          xCheckRDCostInter( rpcBestCU, rpcTempCU, SIZE_2NxnU );
926#endif
927          rpcTempCU->initEstData( uiDepth, iQP );
928#if HHI_INTER_VIEW_RESIDUAL_PRED
929              rpcTempCU->setResPredIndicator( bResPredAvailable, bResPredFlag );
930#endif
931#if HHI_INTERVIEW_SKIP
932              xCheckRDCostInter( rpcBestCU, rpcTempCU, SIZE_2NxnD, bFullyRenderedSec );
933#else
934          xCheckRDCostInter( rpcBestCU, rpcTempCU, SIZE_2NxnD );
935#endif
936          rpcTempCU->initEstData( uiDepth, iQP );
937#if HHI_INTER_VIEW_RESIDUAL_PRED
938              rpcTempCU->setResPredIndicator( bResPredAvailable, bResPredFlag );
939#endif
940#if HHI_INTERVIEW_SKIP
941              xCheckRDCostInter( rpcBestCU, rpcTempCU, SIZE_nLx2N, bFullyRenderedSec );
942#else
943          xCheckRDCostInter( rpcBestCU, rpcTempCU, SIZE_nLx2N );
944#endif
945          rpcTempCU->initEstData( uiDepth, iQP );
946#if HHI_INTER_VIEW_RESIDUAL_PRED
947              rpcTempCU->setResPredIndicator( bResPredAvailable, bResPredFlag );
948#endif
949#if HHI_INTERVIEW_SKIP
950              xCheckRDCostInter( rpcBestCU, rpcTempCU, SIZE_nRx2N, bFullyRenderedSec );
951#else
952          xCheckRDCostInter( rpcBestCU, rpcTempCU, SIZE_nRx2N );
953#endif
954          rpcTempCU->initEstData( uiDepth, iQP );
955
956#endif
957        } //! Try AMP (SIZE_2NxnU, SIZE_2NxnD, SIZE_nLx2N, SIZE_nRx2N)
958#endif
959#if HHI_INTER_VIEW_RESIDUAL_PRED
960        } // uiResPrdId
961#endif
962      } // != I_SLICE
963
964      // initialize PCM flag
965      rpcTempCU->setIPCMFlag( 0, false);
966      rpcTempCU->setIPCMFlagSubParts ( false, 0, uiDepth); //SUB_LCU_DQP
967
968      // do normal intra modes
969      if ( !bEarlySkip )
970      {
971        // speedup for inter frames
972#if HHI_INTERVIEW_SKIP
973      if( ( rpcBestCU->getSlice()->getSliceType() == I_SLICE ||
974               rpcBestCU->getCbf( 0, TEXT_LUMA     ) != 0   ||
975               rpcBestCU->getCbf( 0, TEXT_CHROMA_U ) != 0   ||
976               rpcBestCU->getCbf( 0, TEXT_CHROMA_V ) != 0 ) && !bFullyRenderedSec ) // avoid very complex intra if it is unlikely
977#else
978        if( rpcBestCU->getSlice()->getSliceType() == I_SLICE || 
979          rpcBestCU->getCbf( 0, TEXT_LUMA     ) != 0   ||
980          rpcBestCU->getCbf( 0, TEXT_CHROMA_U ) != 0   ||
981          rpcBestCU->getCbf( 0, TEXT_CHROMA_V ) != 0     ) // avoid very complex intra if it is unlikely
982#endif
983        {
984          xCheckRDCostIntra( rpcBestCU, rpcTempCU, SIZE_2Nx2N );
985          rpcTempCU->initEstData( uiDepth, iQP );
986          if( uiDepth == g_uiMaxCUDepth - g_uiAddCUDepth )
987          {
988            if( rpcTempCU->getWidth(0) > ( 1 << rpcTempCU->getSlice()->getSPS()->getQuadtreeTULog2MinSize() ) )
989            {
990              xCheckRDCostIntra( rpcBestCU, rpcTempCU, SIZE_NxN   );
991              rpcTempCU->initEstData( uiDepth, iQP );
992            }
993          }
994        }
995      }
996
997      // test PCM
998      if(pcPic->getSlice(0)->getSPS()->getUsePCM()
999        && rpcTempCU->getWidth(0) <= (1<<pcPic->getSlice(0)->getSPS()->getPCMLog2MaxSize())
1000        && rpcTempCU->getWidth(0) >= (1<<pcPic->getSlice(0)->getSPS()->getPCMLog2MinSize()) )
1001      {
1002        UInt uiRawBits = (g_uiBitDepth * rpcBestCU->getWidth(0) * rpcBestCU->getHeight(0) * 3 / 2);
1003        UInt uiBestBits = rpcBestCU->getTotalBits();
1004#if HHI_VSO
1005        Double dRDCostTemp = m_pcRdCost->getUseVSO() ? m_pcRdCost->calcRdCostVSO(uiRawBits, 0) : m_pcRdCost->calcRdCost(uiRawBits, 0);
1006        if((uiBestBits > uiRawBits) || (rpcBestCU->getTotalCost() > dRDCostTemp ))
1007#else
1008        if((uiBestBits > uiRawBits) || (rpcBestCU->getTotalCost() > m_pcRdCost->calcRdCost(uiRawBits, 0)))
1009#endif
1010        {
1011          xCheckIntraPCM (rpcBestCU, rpcTempCU);
1012          rpcTempCU->initEstData( uiDepth, iQP );
1013        }
1014      }
1015#if HHI_MPI
1016      if( rpcBestCU->getSlice()->getSPS()->getUseMVI() && rpcBestCU->getSlice()->getSliceType() != I_SLICE )
1017      {
1018        xCheckRDCostMvInheritance( rpcBestCU, rpcTempCU, uiDepth, false, false );
1019        rpcTempCU->initEstData( uiDepth, iQP );
1020        xCheckRDCostMvInheritance( rpcBestCU, rpcTempCU, uiDepth, true, false );
1021        rpcTempCU->initEstData( uiDepth, iQP );
1022      }
1023#endif
1024#if LOSSLESS_CODING
1025      if (isAddLowestQP && (iQP == lowestQP))
1026      {
1027        iQP = iMinQP;
1028      }
1029#endif
1030    }
1031
1032    m_pcEntropyCoder->resetBits();
1033    m_pcEntropyCoder->encodeSplitFlag( rpcBestCU, 0, uiDepth, true );
1034    rpcBestCU->getTotalBits() += m_pcEntropyCoder->getNumberOfWrittenBits(); // split bits
1035    if(m_pcEncCfg->getUseSBACRD())
1036    {
1037      rpcBestCU->getTotalBins() += ((TEncBinCABAC *)((TEncSbac*)m_pcEntropyCoder->m_pcEntropyCoderIf)->getEncBinIf())->getBinsCoded();
1038    }
1039
1040#if HHI_VSO   
1041    if ( m_pcRdCost->getUseVSO() )
1042    {
1043      rpcBestCU->getTotalCost()  = m_pcRdCost->calcRdCostVSO( rpcBestCU->getTotalBits(), rpcBestCU->getTotalDistortion() );
1044    }
1045    else
1046#endif
1047    {
1048    rpcBestCU->getTotalCost()  = m_pcRdCost->calcRdCost( rpcBestCU->getTotalBits(), rpcBestCU->getTotalDistortion() );
1049    }
1050
1051    // accumulate statistics for early skip
1052    if ( m_pcEncCfg->getUseFastEnc() )
1053    {
1054      if ( rpcBestCU->isSkipped(0) )
1055      {
1056        Int iIdx = g_aucConvertToBit[ rpcBestCU->getWidth(0) ];
1057        afCost[ iIdx ] += rpcBestCU->getTotalCost();
1058        aiNum [ iIdx ] ++;
1059      }
1060    }
1061
1062    // Early CU determination
1063    if( m_pcEncCfg->getUseEarlyCU() && ((*rpcBestCU->getPredictionMode()) == 0) )
1064    {
1065      bSubBranch = false;
1066    }
1067    else
1068    {
1069      bSubBranch = true;
1070    }
1071#if HHI_INTERVIEW_SKIP
1072  rpcBestCU->setRenderableSubParts(bFullyRenderedSec,0,rpcBestCU->getDepth( 0 )) ;
1073#endif
1074  }
1075  else if(!(bSliceEnd && bInsidePicture))
1076  {
1077    bBoundary = true;
1078  }
1079
1080#if LOSSLESS_CODING
1081  // copy orginal YUV samples to PCM buffer
1082  if( rpcBestCU->isLosslessCoded(0) && (rpcBestCU->getIPCMFlag(0) == false))
1083  {
1084    xFillPCMBuffer(rpcBestCU, m_ppcOrigYuv[uiDepth]);
1085  }
1086#endif
1087  if( (g_uiMaxCUWidth>>uiDepth) == rpcTempCU->getSlice()->getPPS()->getMinCuDQPSize() )
1088  {
1089    Int idQP = m_pcEncCfg->getMaxDeltaQP();
1090#if H0736_AVC_STYLE_QP_RANGE
1091    iMinQP = Clip3( -rpcTempCU->getSlice()->getSPS()->getQpBDOffsetY(), MAX_QP, iBaseQP-idQP );
1092    iMaxQP = Clip3( -rpcTempCU->getSlice()->getSPS()->getQpBDOffsetY(), MAX_QP, iBaseQP+idQP );
1093#if LOSSLESS_CODING
1094    if ( (rpcTempCU->getSlice()->getSPS()->getUseLossless()) && (lowestQP < iMinQP) && rpcTempCU->getSlice()->getPPS()->getUseDQP() )
1095    {
1096      isAddLowestQP = true;
1097      iMinQP = iMinQP - 1;     
1098    }
1099#endif
1100#else
1101    iMinQP = Clip3( MIN_QP, MAX_QP, iBaseQP-idQP );
1102    iMaxQP = Clip3( MIN_QP, MAX_QP, iBaseQP+idQP );
1103#if LOSSLESS_CODING
1104    if ( (rpcTempCU->getSlice()->getSPS()->getUseLossless()) && (lowestQP < iMinQP) && rpcTempCU->getSlice()->getPPS()->getUseDQP() )
1105    {
1106      isAddLowestQP = true;
1107      iMinQP = iMinQP - 1;
1108    }
1109#endif
1110#endif
1111  }
1112  else if( (g_uiMaxCUWidth>>uiDepth) > rpcTempCU->getSlice()->getPPS()->getMinCuDQPSize() )
1113  {
1114    iMinQP = iBaseQP;
1115    iMaxQP = iBaseQP;
1116  }
1117  else
1118  {
1119    Int iStartQP;
1120    if( pcPic->getCU( rpcTempCU->getAddr() )->getEntropySliceStartCU(rpcTempCU->getZorderIdxInCU()) == pcSlice->getEntropySliceCurStartCUAddr())
1121    {
1122      iStartQP = rpcTempCU->getQP(0);
1123    }
1124    else
1125    {
1126      UInt uiCurSliceStartPartIdx = pcSlice->getEntropySliceCurStartCUAddr() % pcPic->getNumPartInCU() - rpcTempCU->getZorderIdxInCU();
1127      iStartQP = rpcTempCU->getQP(uiCurSliceStartPartIdx);
1128    }
1129    iMinQP = iStartQP;
1130    iMaxQP = iStartQP;
1131  }
1132
1133  for (Int iQP=iMinQP; iQP<=iMaxQP; iQP++)
1134  {
1135#if LOSSLESS_CODING
1136      if (isAddLowestQP && (iQP == iMinQP))
1137      {
1138        iQP = lowestQP;
1139      }
1140#endif
1141    rpcTempCU->initEstData( uiDepth, iQP );
1142
1143    // further split
1144    if( bSubBranch && bTrySplitDQP && uiDepth < g_uiMaxCUDepth - g_uiAddCUDepth )
1145    {
1146#if HHI_VSO
1147      // reset Model
1148      if( m_pcRdCost->getUseRenModel() )
1149      {
1150        UInt  uiWidth     = m_ppcBestCU[uiDepth]->getWidth ( 0 );
1151        UInt  uiHeight    = m_ppcBestCU[uiDepth]->getHeight( 0 );
1152        Pel*  piSrc       = m_ppcOrigYuv[uiDepth]->getLumaAddr( 0 );
1153        UInt  uiSrcStride = m_ppcOrigYuv[uiDepth]->getStride();
1154        m_pcRdCost->setRenModelData( m_ppcBestCU[uiDepth], 0, piSrc, uiSrcStride, uiWidth, uiHeight );
1155      }
1156#endif
1157      UChar       uhNextDepth         = uiDepth+1;
1158      TComDataCU* pcSubBestPartCU     = m_ppcBestCU[uhNextDepth];
1159      TComDataCU* pcSubTempPartCU     = m_ppcTempCU[uhNextDepth];
1160
1161      for ( UInt uiPartUnitIdx = 0; uiPartUnitIdx < 4; uiPartUnitIdx++ )
1162      {
1163        pcSubBestPartCU->initSubCU( rpcTempCU, uiPartUnitIdx, uhNextDepth, iQP );           // clear sub partition datas or init.
1164        pcSubTempPartCU->initSubCU( rpcTempCU, uiPartUnitIdx, uhNextDepth, iQP );           // clear sub partition datas or init.
1165
1166        Bool bInSlice = pcSubBestPartCU->getSCUAddr()+pcSubBestPartCU->getTotalNumPart()>pcSlice->getEntropySliceCurStartCUAddr()&&pcSubBestPartCU->getSCUAddr()<pcSlice->getEntropySliceCurEndCUAddr();
1167        if(bInSlice && ( pcSubBestPartCU->getCUPelX() < pcSlice->getSPS()->getPicWidthInLumaSamples() ) && ( pcSubBestPartCU->getCUPelY() < pcSlice->getSPS()->getPicHeightInLumaSamples() ) )
1168        {
1169          if( m_bUseSBACRD )
1170          {
1171            if ( 0 == uiPartUnitIdx) //initialize RD with previous depth buffer
1172            {
1173              m_pppcRDSbacCoder[uhNextDepth][CI_CURR_BEST]->load(m_pppcRDSbacCoder[uiDepth][CI_CURR_BEST]);
1174            }
1175            else
1176            {
1177              m_pppcRDSbacCoder[uhNextDepth][CI_CURR_BEST]->load(m_pppcRDSbacCoder[uhNextDepth][CI_NEXT_BEST]);
1178            }
1179          }
1180
1181#if AMP_ENC_SPEEDUP
1182          if ( rpcBestCU->isIntra(0) )
1183          {
1184            xCompressCU( pcSubBestPartCU, pcSubTempPartCU, uhNextDepth, SIZE_NONE );
1185          }
1186          else
1187          {
1188            xCompressCU( pcSubBestPartCU, pcSubTempPartCU, uhNextDepth, rpcBestCU->getPartitionSize(0) );
1189          }
1190#else
1191          xCompressCU( pcSubBestPartCU, pcSubTempPartCU, uhNextDepth );
1192#endif
1193
1194          rpcTempCU->copyPartFrom( pcSubBestPartCU, uiPartUnitIdx, uhNextDepth );         // Keep best part data to current temporary data.
1195          xCopyYuv2Tmp( pcSubBestPartCU->getTotalNumPart()*uiPartUnitIdx, uhNextDepth );
1196
1197#if HHI_VSO
1198          if( m_pcRdCost->getUseRenModel() ) // necessary ??
1199          {
1200            UInt  uiWidth     = pcSubBestPartCU->getWidth ( 0 );
1201            UInt  uiHeight    = pcSubBestPartCU->getHeight( 0 );
1202            Pel*  piSrc       = m_ppcRecoYuvBest[pcSubBestPartCU->getDepth(0)]->getLumaAddr( 0 );
1203            UInt  uiSrcStride = m_ppcRecoYuvBest[pcSubBestPartCU->getDepth(0)]->getStride();
1204            m_pcRdCost->setRenModelData( pcSubBestPartCU, 0, piSrc, uiSrcStride, uiWidth, uiHeight );
1205          }
1206#endif
1207        }
1208        else if (bInSlice)
1209        {
1210          pcSubBestPartCU->copyToPic( uhNextDepth );
1211          rpcTempCU->copyPartFrom( pcSubBestPartCU, uiPartUnitIdx, uhNextDepth );
1212        }
1213      }
1214
1215      if( !bBoundary )
1216      {
1217        m_pcEntropyCoder->resetBits();
1218        m_pcEntropyCoder->encodeSplitFlag( rpcTempCU, 0, uiDepth, true );
1219
1220        rpcTempCU->getTotalBits() += m_pcEntropyCoder->getNumberOfWrittenBits(); // split bits
1221        if(m_pcEncCfg->getUseSBACRD())
1222        {
1223          rpcTempCU->getTotalBins() += ((TEncBinCABAC *)((TEncSbac*)m_pcEntropyCoder->m_pcEntropyCoderIf)->getEncBinIf())->getBinsCoded();
1224        }
1225      }
1226#if HHI_INTERVIEW_SKIP_LAMBDA_SCALE
1227      if( bFullyRenderedSec )
1228      {
1229        m_pcRdCost->setLambdaScale( m_pcEncCfg->getInterViewSkipLambdaScale() );
1230      }
1231      else
1232      {
1233        m_pcRdCost->setLambdaScale( 1 );
1234      }
1235#endif
1236
1237#if HHI_VSO
1238      if ( m_pcRdCost->getUseVSO() )
1239      {
1240        rpcTempCU->getTotalCost()  = m_pcRdCost->calcRdCostVSO( rpcTempCU->getTotalBits(), rpcTempCU->getTotalDistortion() );
1241      }
1242      else
1243#endif
1244      {           
1245      rpcTempCU->getTotalCost()  = m_pcRdCost->calcRdCost( rpcTempCU->getTotalBits(), rpcTempCU->getTotalDistortion() );
1246      }
1247
1248      if( (g_uiMaxCUWidth>>uiDepth) == rpcTempCU->getSlice()->getPPS()->getMinCuDQPSize() && rpcTempCU->getSlice()->getPPS()->getUseDQP())
1249      {
1250        Bool bHasRedisual = false;
1251        for( UInt uiBlkIdx = 0; uiBlkIdx < rpcTempCU->getTotalNumPart(); uiBlkIdx ++)
1252        {
1253          if( ( pcPic->getCU( rpcTempCU->getAddr() )->getEntropySliceStartCU(uiBlkIdx+rpcTempCU->getZorderIdxInCU()) == rpcTempCU->getSlice()->getEntropySliceCurStartCUAddr() ) && 
1254              ( rpcTempCU->getCbf( uiBlkIdx, TEXT_LUMA ) || rpcTempCU->getCbf( uiBlkIdx, TEXT_CHROMA_U ) || rpcTempCU->getCbf( uiBlkIdx, TEXT_CHROMA_V ) ) )
1255          {
1256            bHasRedisual = true;
1257            break;
1258          }
1259        }
1260
1261        UInt uiTargetPartIdx;
1262        if ( pcPic->getCU( rpcTempCU->getAddr() )->getEntropySliceStartCU(rpcTempCU->getZorderIdxInCU()) != pcSlice->getEntropySliceCurStartCUAddr() )
1263        {
1264          uiTargetPartIdx = pcSlice->getEntropySliceCurStartCUAddr() % pcPic->getNumPartInCU() - rpcTempCU->getZorderIdxInCU();
1265        }
1266        else
1267        {
1268          uiTargetPartIdx = 0;
1269        }
1270        if ( bHasRedisual )
1271        {
1272#if !RDO_WITHOUT_DQP_BITS
1273          m_pcEntropyCoder->resetBits();
1274          m_pcEntropyCoder->encodeQP( rpcTempCU, uiTargetPartIdx, false );
1275          rpcTempCU->getTotalBits() += m_pcEntropyCoder->getNumberOfWrittenBits(); // dQP bits
1276          if(m_pcEncCfg->getUseSBACRD())
1277          {
1278            rpcTempCU->getTotalBins() += ((TEncBinCABAC *)((TEncSbac*)m_pcEntropyCoder->m_pcEntropyCoderIf)->getEncBinIf())->getBinsCoded();
1279          }
1280#if HHI_VSO
1281          if ( m_pcRdCost->getUseLambdaScaleVSO())
1282          {
1283            rpcTempCU->getTotalCost()  = m_pcRdCost->calcRdCostVSO( rpcTempCU->getTotalBits(), rpcTempCU->getTotalDistortion() );
1284          }
1285          else
1286#endif
1287          {
1288          rpcTempCU->getTotalCost()  = m_pcRdCost->calcRdCost( rpcTempCU->getTotalBits(), rpcTempCU->getTotalDistortion() );
1289          }
1290#endif
1291        }
1292        else
1293        {
1294#if LOSSLESS_CODING
1295          if (((rpcTempCU->getQP(uiTargetPartIdx) != rpcTempCU->getRefQP(uiTargetPartIdx)) ) && (rpcTempCU->getSlice()->getSPS()->getUseLossless()))
1296          {
1297            rpcTempCU->getTotalCost() = MAX_DOUBLE;
1298          }
1299#endif
1300          rpcTempCU->setQPSubParts( rpcTempCU->getRefQP( uiTargetPartIdx ), 0, uiDepth ); // set QP to default QP
1301        }
1302      }
1303
1304      if( m_bUseSBACRD )
1305      {
1306        m_pppcRDSbacCoder[uhNextDepth][CI_NEXT_BEST]->store(m_pppcRDSbacCoder[uiDepth][CI_TEMP_BEST]);
1307      }
1308      Bool bEntropyLimit=false;
1309      Bool bSliceLimit=false;
1310      bSliceLimit=rpcBestCU->getSlice()->getSliceMode()==AD_HOC_SLICES_FIXED_NUMBER_OF_BYTES_IN_SLICE&&(rpcBestCU->getTotalBits()>rpcBestCU->getSlice()->getSliceArgument()<<3);
1311      if(rpcBestCU->getSlice()->getEntropySliceMode()==SHARP_MULTIPLE_CONSTRAINT_BASED_ENTROPY_SLICE&&m_pcEncCfg->getUseSBACRD())
1312      {
1313        if(rpcBestCU->getTotalBins()>rpcBestCU->getSlice()->getEntropySliceArgument())
1314        {
1315          bEntropyLimit=true;
1316        }
1317      }
1318      else if(rpcBestCU->getSlice()->getEntropySliceMode()==SHARP_MULTIPLE_CONSTRAINT_BASED_ENTROPY_SLICE)
1319      {
1320        if(rpcBestCU->getTotalBits()>rpcBestCU->getSlice()->getEntropySliceArgument())
1321        {
1322          bEntropyLimit=true;
1323        }
1324      }
1325      if(rpcBestCU->getDepth(0)>=rpcBestCU->getSlice()->getPPS()->getSliceGranularity())
1326      {
1327        bSliceLimit=false;
1328        bEntropyLimit=false;
1329      }
1330      if(bSliceLimit||bEntropyLimit)
1331      {
1332        rpcBestCU->getTotalCost()=rpcTempCU->getTotalCost()+1;
1333      }
1334      xCheckBestMode( rpcBestCU, rpcTempCU, uiDepth);                                  // RD compare current larger prediction
1335    }                                                                                  // with sub partitioned prediction.
1336#if LOSSLESS_CODING
1337      if (isAddLowestQP && (iQP == lowestQP))
1338      {
1339        iQP = iMinQP;
1340      }
1341#endif
1342  } // SPLIT- QP Loop
1343
1344#if HHI_VSO
1345  if( m_pcRdCost->getUseRenModel() )
1346  {
1347    UInt  uiWidth     = rpcBestCU->getWidth ( 0 );
1348    UInt  uiHeight    = rpcBestCU->getHeight( 0 );
1349    Pel*  piSrc       = m_ppcRecoYuvBest[uiDepth]->getLumaAddr( 0 );
1350    UInt  uiSrcStride = m_ppcRecoYuvBest[uiDepth]->getStride();
1351    m_pcRdCost->setRenModelData( rpcBestCU, 0, piSrc, uiSrcStride, uiWidth, uiHeight );
1352  }
1353#endif
1354
1355  rpcBestCU->copyToPic(uiDepth);                                                     // Copy Best data to Picture for next partition prediction.
1356
1357  xCopyYuv2Pic( rpcBestCU->getPic(), rpcBestCU->getAddr(), rpcBestCU->getZorderIdxInCU(), uiDepth, uiDepth, rpcBestCU, uiLPelX, uiTPelY );   // Copy Yuv data to picture Yuv
1358  if( bBoundary ||(bSliceEnd && bInsidePicture))
1359  {
1360    return;
1361  }
1362
1363  // Assert if Best prediction mode is NONE
1364  // Selected mode's RD-cost must be not MAX_DOUBLE.
1365  assert( rpcBestCU->getPartitionSize ( 0 ) != SIZE_NONE  );
1366  assert( rpcBestCU->getPredictionMode( 0 ) != MODE_NONE  );
1367  assert( rpcBestCU->getTotalCost     (   ) != MAX_DOUBLE );
1368}
1369
1370/** finish encoding a cu and handle end-of-slice conditions
1371 * \param pcCU
1372 * \param uiAbsPartIdx
1373 * \param uiDepth
1374 * \returns Void
1375 */
1376Void TEncCu::finishCU( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
1377{
1378  TComPic* pcPic = pcCU->getPic();
1379  TComSlice * pcSlice = pcCU->getPic()->getSlice(pcCU->getPic()->getCurrSliceIdx());
1380
1381  //Calculate end address
1382  UInt uiCUAddr = pcCU->getSCUAddr()+uiAbsPartIdx;
1383
1384  UInt uiInternalAddress = pcPic->getPicSym()->getPicSCUAddr(pcSlice->getEntropySliceCurEndCUAddr()-1) % pcPic->getNumPartInCU();
1385  UInt uiExternalAddress = pcPic->getPicSym()->getPicSCUAddr(pcSlice->getEntropySliceCurEndCUAddr()-1) / pcPic->getNumPartInCU();
1386  UInt uiPosX = ( uiExternalAddress % pcPic->getFrameWidthInCU() ) * g_uiMaxCUWidth+ g_auiRasterToPelX[ g_auiZscanToRaster[uiInternalAddress] ];
1387  UInt uiPosY = ( uiExternalAddress / pcPic->getFrameWidthInCU() ) * g_uiMaxCUHeight+ g_auiRasterToPelY[ g_auiZscanToRaster[uiInternalAddress] ];
1388  UInt uiWidth = pcSlice->getSPS()->getPicWidthInLumaSamples();
1389  UInt uiHeight = pcSlice->getSPS()->getPicHeightInLumaSamples();
1390  while(uiPosX>=uiWidth||uiPosY>=uiHeight)
1391  {
1392    uiInternalAddress--;
1393    uiPosX = ( uiExternalAddress % pcPic->getFrameWidthInCU() ) * g_uiMaxCUWidth+ g_auiRasterToPelX[ g_auiZscanToRaster[uiInternalAddress] ];
1394    uiPosY = ( uiExternalAddress / pcPic->getFrameWidthInCU() ) * g_uiMaxCUHeight+ g_auiRasterToPelY[ g_auiZscanToRaster[uiInternalAddress] ];
1395  }
1396  uiInternalAddress++;
1397  if(uiInternalAddress==pcCU->getPic()->getNumPartInCU())
1398  {
1399    uiInternalAddress = 0;
1400    uiExternalAddress = pcPic->getPicSym()->getCUOrderMap(pcPic->getPicSym()->getInverseCUOrderMap(uiExternalAddress)+1);
1401  }
1402  UInt uiRealEndAddress = pcPic->getPicSym()->getPicSCUEncOrder(uiExternalAddress*pcPic->getNumPartInCU()+uiInternalAddress);
1403
1404  // Encode slice finish
1405  Bool bTerminateSlice = false;
1406  if (uiCUAddr+(pcCU->getPic()->getNumPartInCU()>>(uiDepth<<1)) == uiRealEndAddress)
1407  {
1408    bTerminateSlice = true;
1409  }
1410  UInt uiGranularityWidth = g_uiMaxCUWidth>>(pcSlice->getPPS()->getSliceGranularity());
1411  uiPosX = pcCU->getCUPelX() + g_auiRasterToPelX[ g_auiZscanToRaster[uiAbsPartIdx] ];
1412  uiPosY = pcCU->getCUPelY() + g_auiRasterToPelY[ g_auiZscanToRaster[uiAbsPartIdx] ];
1413  Bool granularityBoundary=((uiPosX+pcCU->getWidth(uiAbsPartIdx))%uiGranularityWidth==0||(uiPosX+pcCU->getWidth(uiAbsPartIdx)==uiWidth))
1414    &&((uiPosY+pcCU->getHeight(uiAbsPartIdx))%uiGranularityWidth==0||(uiPosY+pcCU->getHeight(uiAbsPartIdx)==uiHeight));
1415 
1416#if BURST_IPCM
1417  if(granularityBoundary && (!(pcCU->getIPCMFlag(uiAbsPartIdx) && ( pcCU->getNumSucIPCM() > 1 ))))
1418#else
1419  if(granularityBoundary)
1420#endif
1421  {
1422    // The 1-terminating bit is added to all streams, so don't add it here when it's 1.
1423    if (!bTerminateSlice)
1424      m_pcEntropyCoder->encodeTerminatingBit( bTerminateSlice ? 1 : 0 );
1425  }
1426 
1427  Int numberOfWrittenBits = 0;
1428  if (m_pcBitCounter)
1429  {
1430    numberOfWrittenBits = m_pcEntropyCoder->getNumberOfWrittenBits();
1431  }
1432 
1433  // Calculate slice end IF this CU puts us over slice bit size.
1434  unsigned iGranularitySize = pcCU->getPic()->getNumPartInCU()>>(pcSlice->getPPS()->getSliceGranularity()<<1);
1435  int iGranularityEnd = ((pcCU->getSCUAddr()+uiAbsPartIdx)/iGranularitySize)*iGranularitySize;
1436  if(iGranularityEnd<=pcSlice->getEntropySliceCurStartCUAddr()) 
1437  {
1438    iGranularityEnd+=max(iGranularitySize,(pcCU->getPic()->getNumPartInCU()>>(uiDepth<<1)));
1439  }
1440  // Set slice end parameter
1441  if(pcSlice->getSliceMode()==AD_HOC_SLICES_FIXED_NUMBER_OF_BYTES_IN_SLICE&&!pcSlice->getFinalized()&&pcSlice->getSliceBits()+numberOfWrittenBits>pcSlice->getSliceArgument()<<3) 
1442  {
1443    pcSlice->setEntropySliceCurEndCUAddr(iGranularityEnd);
1444    pcSlice->setSliceCurEndCUAddr(iGranularityEnd);
1445    return;
1446  }
1447  // Set entropy slice end parameter
1448  if(m_pcEncCfg->getUseSBACRD()) 
1449  {
1450    TEncBinCABAC *pppcRDSbacCoder = (TEncBinCABAC *) m_pppcRDSbacCoder[0][CI_CURR_BEST]->getEncBinIf();
1451    UInt uiBinsCoded = pppcRDSbacCoder->getBinsCoded();
1452    if(pcSlice->getEntropySliceMode()==SHARP_MULTIPLE_CONSTRAINT_BASED_ENTROPY_SLICE&&!pcSlice->getFinalized()&&pcSlice->getEntropySliceCounter()+uiBinsCoded>pcSlice->getEntropySliceArgument())
1453    {
1454      pcSlice->setEntropySliceCurEndCUAddr(iGranularityEnd);
1455      return;
1456    }
1457  }
1458  else
1459  {
1460    if(pcSlice->getEntropySliceMode()==SHARP_MULTIPLE_CONSTRAINT_BASED_ENTROPY_SLICE&&!pcSlice->getFinalized()&&pcSlice->getEntropySliceCounter()+numberOfWrittenBits>pcSlice->getEntropySliceArgument()) 
1461    {
1462      pcSlice->setEntropySliceCurEndCUAddr(iGranularityEnd);
1463      return;
1464    }
1465  }
1466  if(granularityBoundary)
1467  {
1468    pcSlice->setSliceBits( (UInt)(pcSlice->getSliceBits() + numberOfWrittenBits) );
1469    if(m_pcEncCfg->getUseSBACRD()) 
1470    {
1471      TEncBinCABAC *pppcRDSbacCoder = (TEncBinCABAC *) m_pppcRDSbacCoder[0][CI_CURR_BEST]->getEncBinIf();
1472      pcSlice->setEntropySliceCounter(pcSlice->getEntropySliceCounter()+pppcRDSbacCoder->getBinsCoded());
1473      pppcRDSbacCoder->setBinsCoded( 0 );
1474    }
1475    else 
1476    {
1477      pcSlice->setEntropySliceCounter(pcSlice->getEntropySliceCounter()+numberOfWrittenBits);
1478    }
1479    if (m_pcBitCounter)
1480    {
1481      m_pcEntropyCoder->resetBits();     
1482    }
1483  }
1484}
1485
1486/** Compute QP for each CU
1487 * \param pcCU Target CU
1488 * \param uiDepth CU depth
1489 * \returns quantization parameter
1490 */
1491Int TEncCu::xComputeQP( TComDataCU* pcCU, UInt uiDepth )
1492{
1493  Int iBaseQp = pcCU->getSlice()->getSliceQp();
1494  Int iQpOffset = 0;
1495  if ( m_pcEncCfg->getUseAdaptiveQP() )
1496  {
1497    TEncPic* pcEPic = dynamic_cast<TEncPic*>( pcCU->getPic() );
1498    UInt uiAQDepth = min( uiDepth, pcEPic->getMaxAQDepth()-1 );
1499    TEncPicQPAdaptationLayer* pcAQLayer = pcEPic->getAQLayer( uiAQDepth );
1500    UInt uiAQUPosX = pcCU->getCUPelX() / pcAQLayer->getAQPartWidth();
1501    UInt uiAQUPosY = pcCU->getCUPelY() / pcAQLayer->getAQPartHeight();
1502    UInt uiAQUStride = pcAQLayer->getAQPartStride();
1503    TEncQPAdaptationUnit* acAQU = pcAQLayer->getQPAdaptationUnit();
1504
1505    Double dMaxQScale = pow(2.0, m_pcEncCfg->getQPAdaptationRange()/6.0);
1506    Double dAvgAct = pcAQLayer->getAvgActivity();
1507    Double dCUAct = acAQU[uiAQUPosY * uiAQUStride + uiAQUPosX].getActivity();
1508    Double dNormAct = (dMaxQScale*dCUAct + dAvgAct) / (dCUAct + dMaxQScale*dAvgAct);
1509    Double dQpOffset = log(dNormAct) / log(2.0) * 6.0;
1510    iQpOffset = Int(floor( dQpOffset + 0.49999 ));
1511  }
1512#if H0736_AVC_STYLE_QP_RANGE
1513  return Clip3(-pcCU->getSlice()->getSPS()->getQpBDOffsetY(), MAX_QP, iBaseQp+iQpOffset );
1514#else
1515  return Clip3( MIN_QP, MAX_QP, iBaseQp+iQpOffset );
1516#endif
1517}
1518
1519/** encode a CU block recursively
1520 * \param pcCU
1521 * \param uiAbsPartIdx
1522 * \param uiDepth
1523 * \returns Void
1524 */
1525Void TEncCu::xEncodeCU( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
1526{
1527  TComPic* pcPic = pcCU->getPic();
1528 
1529  Bool bBoundary = false;
1530  UInt uiLPelX   = pcCU->getCUPelX() + g_auiRasterToPelX[ g_auiZscanToRaster[uiAbsPartIdx] ];
1531  UInt uiRPelX   = uiLPelX + (g_uiMaxCUWidth>>uiDepth)  - 1;
1532  UInt uiTPelY   = pcCU->getCUPelY() + g_auiRasterToPelY[ g_auiZscanToRaster[uiAbsPartIdx] ];
1533  UInt uiBPelY   = uiTPelY + (g_uiMaxCUHeight>>uiDepth) - 1;
1534 
1535#if BURST_IPCM
1536  if( getCheckBurstIPCMFlag() )
1537  {
1538    pcCU->setLastCUSucIPCMFlag( checkLastCUSucIPCM( pcCU, uiAbsPartIdx ));
1539    pcCU->setNumSucIPCM( countNumSucIPCM ( pcCU, uiAbsPartIdx ) );
1540  }
1541#endif
1542
1543  TComSlice * pcSlice = pcCU->getPic()->getSlice(pcCU->getPic()->getCurrSliceIdx());
1544  // If slice start is within this cu...
1545  Bool bSliceStart = pcSlice->getEntropySliceCurStartCUAddr() > pcPic->getPicSym()->getInverseCUOrderMap(pcCU->getAddr())*pcCU->getPic()->getNumPartInCU()+uiAbsPartIdx && 
1546    pcSlice->getEntropySliceCurStartCUAddr() < pcPic->getPicSym()->getInverseCUOrderMap(pcCU->getAddr())*pcCU->getPic()->getNumPartInCU()+uiAbsPartIdx+( pcPic->getNumPartInCU() >> (uiDepth<<1) );
1547  // We need to split, so don't try these modes.
1548  if(!bSliceStart&&( uiRPelX < pcSlice->getSPS()->getPicWidthInLumaSamples() ) && ( uiBPelY < pcSlice->getSPS()->getPicHeightInLumaSamples() ) )
1549  {
1550#if HHI_MPI
1551    if( pcCU->getTextureModeDepth( uiAbsPartIdx ) == -1 || uiDepth < pcCU->getTextureModeDepth( uiAbsPartIdx ) )
1552#endif
1553    m_pcEntropyCoder->encodeSplitFlag( pcCU, uiAbsPartIdx, uiDepth );
1554  }
1555  else
1556  {
1557    bBoundary = true;
1558  }
1559 
1560#if HHI_MPI
1561  if( uiDepth == pcCU->getTextureModeDepth( uiAbsPartIdx ) )
1562  {
1563    xSaveDepthWidthHeight( pcCU );
1564    pcCU->setSizeSubParts( g_uiMaxCUWidth>>uiDepth, g_uiMaxCUHeight>>uiDepth, uiAbsPartIdx, uiDepth );
1565    pcCU->setDepthSubParts( uiDepth, uiAbsPartIdx );
1566
1567    if( ( uiRPelX < pcSlice->getSPS()->getPicWidthInLumaSamples() ) && ( uiBPelY < pcSlice->getSPS()->getPicHeightInLumaSamples() ) )
1568      m_pcEntropyCoder->encodeSplitFlag( pcCU, uiAbsPartIdx, uiDepth );
1569    if( !pcCU->getSlice()->isIntra() )
1570    {
1571      m_pcEntropyCoder->encodeSkipFlag( pcCU, uiAbsPartIdx );
1572    }
1573
1574    if( pcCU->isSkipped( uiAbsPartIdx ) )
1575    {
1576      m_pcEntropyCoder->encodeMergeIndex( pcCU, uiAbsPartIdx, 0 );
1577      finishCU(pcCU,uiAbsPartIdx,uiDepth);
1578      xRestoreDepthWidthHeight( pcCU );
1579      return;
1580    }
1581
1582    m_pcEntropyCoder->encodePredMode( pcCU, uiAbsPartIdx );
1583
1584    m_pcEntropyCoder->encodePartSize( pcCU, uiAbsPartIdx, uiDepth );
1585
1586    // prediction Info ( Intra : direction mode, Inter : Mv, reference idx )
1587    m_pcEntropyCoder->encodePredInfo( pcCU, uiAbsPartIdx );
1588    xRestoreDepthWidthHeight( pcCU );
1589  }
1590#endif
1591
1592  if( ( ( uiDepth < pcCU->getDepth( uiAbsPartIdx ) ) && ( uiDepth < (g_uiMaxCUDepth-g_uiAddCUDepth) ) ) || bBoundary )
1593  {
1594    UInt uiQNumParts = ( pcPic->getNumPartInCU() >> (uiDepth<<1) )>>2;
1595    if( (g_uiMaxCUWidth>>uiDepth) == pcCU->getSlice()->getPPS()->getMinCuDQPSize() && pcCU->getSlice()->getPPS()->getUseDQP())
1596    {
1597      setdQPFlag(true);
1598    }
1599#if BURST_IPCM
1600    pcCU->setNumSucIPCM(0);
1601    pcCU->setLastCUSucIPCMFlag(false);
1602#endif
1603    for ( UInt uiPartUnitIdx = 0; uiPartUnitIdx < 4; uiPartUnitIdx++, uiAbsPartIdx+=uiQNumParts )
1604    {
1605      uiLPelX   = pcCU->getCUPelX() + g_auiRasterToPelX[ g_auiZscanToRaster[uiAbsPartIdx] ];
1606      uiTPelY   = pcCU->getCUPelY() + g_auiRasterToPelY[ g_auiZscanToRaster[uiAbsPartIdx] ];
1607      Bool bInSlice = pcCU->getSCUAddr()+uiAbsPartIdx+uiQNumParts>pcSlice->getEntropySliceCurStartCUAddr()&&pcCU->getSCUAddr()+uiAbsPartIdx<pcSlice->getEntropySliceCurEndCUAddr();
1608      if(bInSlice&&( uiLPelX < pcSlice->getSPS()->getPicWidthInLumaSamples() ) && ( uiTPelY < pcSlice->getSPS()->getPicHeightInLumaSamples() ) )
1609      {
1610        xEncodeCU( pcCU, uiAbsPartIdx, uiDepth+1 );
1611      }
1612    }
1613    return;
1614  }
1615 
1616  if( (g_uiMaxCUWidth>>uiDepth) >= pcCU->getSlice()->getPPS()->getMinCuDQPSize() && pcCU->getSlice()->getPPS()->getUseDQP())
1617  {
1618    setdQPFlag(true);
1619  }
1620#if HHI_MPI
1621  if( pcCU->getTextureModeDepth( uiAbsPartIdx ) == -1 )
1622#endif
1623  if( !pcCU->getSlice()->isIntra() )
1624  {
1625    m_pcEntropyCoder->encodeSkipFlag( pcCU, uiAbsPartIdx );
1626  }
1627 
1628  if( pcCU->isSkipped( uiAbsPartIdx ) )
1629  {
1630    m_pcEntropyCoder->encodeMergeIndex( pcCU, uiAbsPartIdx, 0 );
1631#if HHI_INTER_VIEW_RESIDUAL_PRED
1632    m_pcEntropyCoder->encodeResPredFlag( pcCU, uiAbsPartIdx, 0 );
1633#endif
1634    finishCU(pcCU,uiAbsPartIdx,uiDepth);
1635    return;
1636  }
1637#if HHI_MPI
1638  if( pcCU->getTextureModeDepth( uiAbsPartIdx ) == -1 )
1639  {
1640#endif
1641  m_pcEntropyCoder->encodePredMode( pcCU, uiAbsPartIdx );
1642 
1643  m_pcEntropyCoder->encodePartSize( pcCU, uiAbsPartIdx, uiDepth );
1644 
1645  if (pcCU->isIntra( uiAbsPartIdx ) && pcCU->getPartitionSize( uiAbsPartIdx ) == SIZE_2Nx2N )
1646  {
1647    m_pcEntropyCoder->encodeIPCMInfo( pcCU, uiAbsPartIdx );
1648
1649    if(pcCU->getIPCMFlag(uiAbsPartIdx))
1650    {
1651      // Encode slice finish
1652      finishCU(pcCU,uiAbsPartIdx,uiDepth);
1653      return;
1654    }
1655  }
1656
1657  // prediction Info ( Intra : direction mode, Inter : Mv, reference idx )
1658  m_pcEntropyCoder->encodePredInfo( pcCU, uiAbsPartIdx );
1659#if HHI_INTER_VIEW_RESIDUAL_PRED
1660    if( !pcCU->isIntra( uiAbsPartIdx ) )
1661    {
1662      m_pcEntropyCoder->encodeResPredFlag( pcCU, uiAbsPartIdx, 0 );
1663    }
1664#endif
1665#if HHI_MPI
1666  }
1667#endif
1668 
1669  // Encode Coefficients
1670  Bool bCodeDQP = getdQPFlag();
1671  m_pcEntropyCoder->encodeCoeff( pcCU, uiAbsPartIdx, uiDepth, pcCU->getWidth (uiAbsPartIdx), pcCU->getHeight(uiAbsPartIdx), bCodeDQP );
1672  setdQPFlag( bCodeDQP );
1673
1674  // --- write terminating bit ---
1675  finishCU(pcCU,uiAbsPartIdx,uiDepth);
1676}
1677
1678/** check RD costs for a CU block encoded with merge
1679 * \param rpcBestCU
1680 * \param rpcTempCU
1681 * \returns Void
1682 */
1683#if HHI_INTERVIEW_SKIP
1684Void TEncCu::xCheckRDCostMerge2Nx2N( TComDataCU*& rpcBestCU, TComDataCU*& rpcTempCU, Bool bSkipRes )
1685#else
1686Void TEncCu::xCheckRDCostMerge2Nx2N( TComDataCU*& rpcBestCU, TComDataCU*& rpcTempCU )
1687#endif
1688{
1689  assert( rpcTempCU->getSlice()->getSliceType() != I_SLICE );
1690#if HHI_INTER_VIEW_MOTION_PRED
1691  TComMvField  cMvFieldNeighbours[MRG_MAX_NUM_CANDS_MEM << 1]; // double length for mv of both lists
1692  UChar uhInterDirNeighbours[MRG_MAX_NUM_CANDS_MEM];
1693#else
1694  TComMvField  cMvFieldNeighbours[MRG_MAX_NUM_CANDS << 1]; // double length for mv of both lists
1695  UChar uhInterDirNeighbours[MRG_MAX_NUM_CANDS];
1696#endif
1697  Int numValidMergeCand = 0;
1698
1699#if HHI_INTER_VIEW_RESIDUAL_PRED
1700  Bool  bResPrdAvail  = rpcTempCU->getResPredAvail( 0 );
1701  Bool  bResPrdFlag   = rpcTempCU->getResPredFlag ( 0 );
1702#endif
1703
1704#if HHI_INTER_VIEW_MOTION_PRED
1705  for( UInt ui = 0; ui < MRG_MAX_NUM_CANDS_MEM; ++ui )
1706#else
1707  for( UInt ui = 0; ui < MRG_MAX_NUM_CANDS; ++ui )
1708#endif
1709  {
1710    uhInterDirNeighbours[ui] = 0;
1711  }
1712  UChar uhDepth = rpcTempCU->getDepth( 0 );
1713
1714#if HHI_VSO
1715  if( m_pcRdCost->getUseRenModel() )
1716  {
1717    // reset
1718    UInt  uiWidth     = rpcTempCU->getWidth ( 0 );
1719    UInt  uiHeight    = rpcTempCU->getHeight( 0 );
1720    Pel*  piSrc       = m_ppcOrigYuv[uhDepth]->getLumaAddr( );
1721    UInt  uiSrcStride = m_ppcOrigYuv[uhDepth]->getStride();
1722    m_pcRdCost->setRenModelData( rpcTempCU, 0, piSrc, uiSrcStride, uiWidth, uiHeight );
1723  }
1724#endif
1725
1726  rpcTempCU->setPartSizeSubParts( SIZE_2Nx2N, 0, uhDepth ); // interprets depth relative to LCU level
1727  rpcTempCU->getInterMergeCandidates( 0, 0, uhDepth, cMvFieldNeighbours,uhInterDirNeighbours, numValidMergeCand );
1728
1729#if FAST_DECISION_FOR_MRG_RD_COST
1730  Bool bestIsSkip = false;
1731#endif
1732 
1733  for( UInt uiMergeCand = 0; uiMergeCand < numValidMergeCand; ++uiMergeCand )
1734  {
1735    {
1736      TComYuv* pcPredYuvTemp = NULL;
1737#if LOSSLESS_CODING
1738      UInt iteration;
1739      if ( rpcTempCU->isLosslessCoded(0))
1740      {
1741        iteration = 1;
1742      }
1743      else 
1744      {
1745        iteration = 2;
1746      }
1747
1748#if HHI_INTERVIEW_SKIP
1749    for( UInt uiNoResidual = (bSkipRes ? 1:0); uiNoResidual < iteration; ++uiNoResidual )
1750#else
1751      for( UInt uiNoResidual = 0; uiNoResidual < iteration; ++uiNoResidual )
1752#endif
1753#else
1754#if HHI_INTERVIEW_SKIP
1755    for( UInt uiNoResidual = (bSkipRes ? 1:0); uiNoResidual < 2; ++uiNoResidual )
1756#else
1757      for( UInt uiNoResidual = 0; uiNoResidual < 2; ++uiNoResidual )
1758#endif
1759#endif
1760      {
1761#if FAST_DECISION_FOR_MRG_RD_COST
1762        if( !(bestIsSkip && uiNoResidual == 0) )
1763        {
1764#endif
1765          // set MC parameters
1766          rpcTempCU->setPredModeSubParts( MODE_SKIP, 0, uhDepth ); // interprets depth relative to LCU level
1767          rpcTempCU->setPartSizeSubParts( SIZE_2Nx2N, 0, uhDepth ); // interprets depth relative to LCU level
1768          rpcTempCU->setMergeFlagSubParts( true, 0, 0, uhDepth ); // interprets depth relative to LCU level
1769          rpcTempCU->setMergeIndexSubParts( uiMergeCand, 0, 0, uhDepth ); // interprets depth relative to LCU level
1770          rpcTempCU->setInterDirSubParts( uhInterDirNeighbours[uiMergeCand], 0, 0, uhDepth ); // interprets depth relative to LCU level
1771          rpcTempCU->getCUMvField( REF_PIC_LIST_0 )->setAllMvField( cMvFieldNeighbours[0 + 2*uiMergeCand], SIZE_2Nx2N, 0, 0 ); // interprets depth relative to rpcTempCU level
1772          rpcTempCU->getCUMvField( REF_PIC_LIST_1 )->setAllMvField( cMvFieldNeighbours[1 + 2*uiMergeCand], SIZE_2Nx2N, 0, 0 ); // interprets depth relative to rpcTempCU level
1773
1774#if HHI_INTER_VIEW_RESIDUAL_PRED
1775          rpcTempCU->setResPredAvailSubParts( bResPrdAvail, 0, 0, uhDepth );
1776          rpcTempCU->setResPredFlagSubParts ( bResPrdFlag,  0, 0, uhDepth );
1777#endif
1778
1779          // do MC
1780#if HHI_INTERVIEW_SKIP
1781      if ( (uiNoResidual == 0) || bSkipRes ){
1782#else
1783      if ( uiNoResidual == 0 ){
1784#endif
1785            m_pcPredSearch->motionCompensation ( rpcTempCU, m_ppcPredYuvTemp[uhDepth] );
1786            // save pred adress
1787            pcPredYuvTemp = m_ppcPredYuvTemp[uhDepth];
1788
1789          }
1790          else
1791          {
1792#if FAST_DECISION_FOR_MRG_RD_COST
1793            if( bestIsSkip)
1794            {
1795              m_pcPredSearch->motionCompensation ( rpcTempCU, m_ppcPredYuvTemp[uhDepth] );
1796              // save pred adress
1797              pcPredYuvTemp = m_ppcPredYuvTemp[uhDepth];
1798            }
1799            else
1800            {
1801#endif
1802              if ( pcPredYuvTemp != m_ppcPredYuvTemp[uhDepth])
1803              {
1804                //adress changes take best (old temp)
1805                pcPredYuvTemp = m_ppcPredYuvBest[uhDepth];
1806              }
1807#if FAST_DECISION_FOR_MRG_RD_COST
1808            }
1809#endif
1810          }
1811#if HHI_VSO
1812          if( m_pcRdCost->getUseRenModel() )
1813          { //Reset
1814            UInt  uiWidth     = rpcTempCU->getWidth ( 0 );
1815            UInt  uiHeight    = rpcTempCU->getHeight( 0 );
1816            Pel*  piSrc       = m_ppcOrigYuv[uhDepth]->getLumaAddr( );
1817            UInt  uiSrcStride = m_ppcOrigYuv[uhDepth]->getStride();
1818            m_pcRdCost->setRenModelData( rpcTempCU, 0, piSrc, uiSrcStride, uiWidth, uiHeight );
1819          }
1820#endif
1821          // estimate residual and encode everything
1822          m_pcPredSearch->encodeResAndCalcRdInterCU( rpcTempCU,
1823            m_ppcOrigYuv    [uhDepth],
1824            pcPredYuvTemp,
1825            m_ppcResiYuvTemp[uhDepth],
1826            m_ppcResiYuvBest[uhDepth],
1827            m_ppcRecoYuvTemp[uhDepth],
1828#if HHI_INTER_VIEW_RESIDUAL_PRED
1829                                                     m_ppcResPredTmp [uhDepth],
1830#endif
1831            (uiNoResidual? true:false) );     
1832          Bool bQtRootCbf = rpcTempCU->getQtRootCbf(0) == 1;
1833
1834#if H0736_AVC_STYLE_QP_RANGE
1835          Int orgQP = rpcTempCU->getQP( 0 );
1836          xCheckDQP( rpcTempCU );
1837          xCheckBestMode(rpcBestCU, rpcTempCU, uhDepth);
1838          rpcTempCU->initEstData( uhDepth, orgQP );
1839#else
1840          UInt uiOrgQP = rpcTempCU->getQP( 0 );
1841          xCheckDQP( rpcTempCU );
1842          xCheckBestMode(rpcBestCU, rpcTempCU, uhDepth);
1843          rpcTempCU->initEstData( uhDepth, uiOrgQP );
1844#endif
1845
1846#if FAST_DECISION_FOR_MRG_RD_COST
1847          if( m_pcEncCfg->getUseFastDecisionForMerge() && !bestIsSkip )
1848          {
1849            bestIsSkip = rpcBestCU->getQtRootCbf(0) == 0;
1850          }
1851#endif
1852
1853          if (!bQtRootCbf)
1854            break;
1855#if FAST_DECISION_FOR_MRG_RD_COST
1856        }
1857#endif
1858      }
1859    }
1860  }
1861}
1862
1863#if AMP_MRG
1864#if HHI_INTERVIEW_SKIP
1865Void TEncCu::xCheckRDCostInter( TComDataCU*& rpcBestCU, TComDataCU*& rpcTempCU, PartSize ePartSize, Bool bSkipRes, Bool bUseMRG)
1866#else
1867Void TEncCu::xCheckRDCostInter( TComDataCU*& rpcBestCU, TComDataCU*& rpcTempCU, PartSize ePartSize, Bool bUseMRG)
1868#endif
1869#else
1870#if HHI_INTERVIEW_SKIP
1871Void TEncCu::xCheckRDCostInter( TComDataCU*& rpcBestCU, TComDataCU*& rpcTempCU, PartSize ePartSize, Bool bSkipRes)
1872#else
1873Void TEncCu::xCheckRDCostInter( TComDataCU*& rpcBestCU, TComDataCU*& rpcTempCU, PartSize ePartSize )
1874#endif
1875#endif
1876{
1877  UChar uhDepth = rpcTempCU->getDepth( 0 );
1878 
1879#if HHI_VSO
1880  if( m_pcRdCost->getUseRenModel() )
1881  {
1882    UInt  uiWidth     = rpcTempCU->getWidth ( 0 );
1883    UInt  uiHeight    = rpcTempCU->getHeight( 0 );
1884    Pel*  piSrc       = m_ppcOrigYuv[uhDepth]->getLumaAddr( );
1885    UInt  uiSrcStride = m_ppcOrigYuv[uhDepth]->getStride();
1886    m_pcRdCost->setRenModelData( rpcTempCU, 0, piSrc, uiSrcStride, uiWidth, uiHeight );
1887  }
1888#endif 
1889
1890  rpcTempCU->setDepthSubParts( uhDepth, 0 );
1891 
1892#if HHI_INTER_VIEW_RESIDUAL_PRED
1893  Bool  bResPrdAvail  = rpcTempCU->getResPredAvail( 0 );
1894  Bool  bResPrdFlag   = rpcTempCU->getResPredFlag ( 0 );
1895#endif
1896 
1897  rpcTempCU->setPartSizeSubParts  ( ePartSize,  0, uhDepth );
1898#if HHI_INTER_VIEW_RESIDUAL_PRED
1899  rpcTempCU->setResPredAvailSubParts( bResPrdAvail, 0, 0, uhDepth );
1900  rpcTempCU->setResPredFlagSubParts ( bResPrdFlag,  0, 0, uhDepth );
1901#endif
1902  rpcTempCU->setPredModeSubParts  ( MODE_INTER, 0, uhDepth );
1903 
1904#if HHI_INTER_VIEW_RESIDUAL_PRED
1905  if( rpcTempCU->getResPredFlag( 0 ) )
1906  { // subtract residual prediction from original in motion search
1907    m_ppcOrigYuv[uhDepth]->add( m_ppcResPredTmp [uhDepth], rpcTempCU->getWidth( 0 ), rpcTempCU->getHeight( 0 ), true );
1908  }
1909#endif
1910
1911#if AMP_MRG
1912  rpcTempCU->setMergeAMP (true);
1913  #if HHI_INTERVIEW_SKIP
1914  m_pcPredSearch->predInterSearch ( rpcTempCU, m_ppcOrigYuv[uhDepth], m_ppcPredYuvTemp[uhDepth], m_ppcResiYuvTemp[uhDepth], m_ppcRecoYuvTemp[uhDepth], bSkipRes, bUseMRG  );
1915#else
1916  m_pcPredSearch->predInterSearch ( rpcTempCU, m_ppcOrigYuv[uhDepth], m_ppcPredYuvTemp[uhDepth], m_ppcResiYuvTemp[uhDepth], m_ppcRecoYuvTemp[uhDepth], false, bUseMRG );
1917#endif
1918#else
1919  #if HHI_INTERVIEW_SKIP
1920  m_pcPredSearch->predInterSearch ( rpcTempCU, m_ppcOrigYuv[uhDepth], m_ppcPredYuvTemp[uhDepth], m_ppcResiYuvTemp[uhDepth], m_ppcRecoYuvTemp[uhDepth], bSkipRes );
1921#else 
1922  m_pcPredSearch->predInterSearch ( rpcTempCU, m_ppcOrigYuv[uhDepth], m_ppcPredYuvTemp[uhDepth], m_ppcResiYuvTemp[uhDepth], m_ppcRecoYuvTemp[uhDepth] );
1923#endif
1924#endif
1925
1926#if HHI_INTER_VIEW_RESIDUAL_PRED
1927  if( rpcTempCU->getResPredFlag( 0 ) )
1928  { // add residual prediction to original again
1929    m_ppcOrigYuv[uhDepth]->add( m_ppcResPredTmp [uhDepth], rpcTempCU->getWidth( 0 ), rpcTempCU->getHeight( 0 ) );
1930  }
1931#endif
1932
1933#if AMP_MRG
1934  if ( !rpcTempCU->getMergeAMP() )
1935  {
1936    return;
1937  }
1938#endif
1939
1940#if HHI_INTERVIEW_SKIP
1941  m_pcPredSearch->encodeResAndCalcRdInterCU( rpcTempCU,
1942                                             m_ppcOrigYuv[uhDepth],
1943                                             m_ppcPredYuvTemp[uhDepth],
1944                                             m_ppcResiYuvTemp[uhDepth],
1945                                             m_ppcResiYuvBest[uhDepth],
1946                                             m_ppcRecoYuvTemp[uhDepth],
1947#if HHI_INTER_VIEW_RESIDUAL_PRED
1948                                             m_ppcResPredTmp [uhDepth],
1949#endif
1950                                             bSkipRes );
1951#else
1952  m_pcPredSearch->encodeResAndCalcRdInterCU( rpcTempCU,
1953                                             m_ppcOrigYuv[uhDepth],
1954                                             m_ppcPredYuvTemp[uhDepth],
1955                                             m_ppcResiYuvTemp[uhDepth],
1956                                             m_ppcResiYuvBest[uhDepth],
1957                                             m_ppcRecoYuvTemp[uhDepth],
1958#if HHI_INTER_VIEW_RESIDUAL_PRED
1959                                             m_ppcResPredTmp [uhDepth],
1960#endif
1961                                             false );
1962#endif
1963#if HHI_VSO
1964  if( m_pcRdCost->getUseLambdaScaleVSO() )
1965  {
1966    rpcTempCU->getTotalCost()  = m_pcRdCost->calcRdCostVSO( rpcTempCU->getTotalBits(), rpcTempCU->getTotalDistortion() );
1967  }
1968  else
1969#endif
1970  {
1971  rpcTempCU->getTotalCost()  = m_pcRdCost->calcRdCost( rpcTempCU->getTotalBits(), rpcTempCU->getTotalDistortion() );
1972  }
1973
1974  xCheckDQP( rpcTempCU );
1975  xCheckBestMode(rpcBestCU, rpcTempCU, uhDepth);
1976}
1977
1978Void TEncCu::xCheckRDCostIntra( TComDataCU*& rpcBestCU, TComDataCU*& rpcTempCU, PartSize eSize )
1979{
1980  UInt uiDepth = rpcTempCU->getDepth( 0 );
1981 
1982#if HHI_VSO
1983  if( m_pcRdCost->getUseRenModel() )
1984  {
1985    UInt  uiWidth     = rpcTempCU->getWidth ( 0 );
1986    UInt  uiHeight    = rpcTempCU->getHeight( 0 );
1987    Pel*  piSrc       = m_ppcOrigYuv[uiDepth]->getLumaAddr( );
1988    UInt  uiSrcStride = m_ppcOrigYuv[uiDepth]->getStride();
1989    m_pcRdCost->setRenModelData( rpcTempCU, 0, piSrc, uiSrcStride, uiWidth, uiHeight );
1990  }
1991#endif
1992
1993  rpcTempCU->setPartSizeSubParts( eSize, 0, uiDepth );
1994  rpcTempCU->setPredModeSubParts( MODE_INTRA, 0, uiDepth );
1995 
1996  Bool bSeparateLumaChroma = true; // choose estimation mode
1997  Dist uiPreCalcDistC      = 0;
1998  if( !bSeparateLumaChroma )
1999  {
2000    m_pcPredSearch->preestChromaPredMode( rpcTempCU, m_ppcOrigYuv[uiDepth], m_ppcPredYuvTemp[uiDepth] );
2001  }
2002  m_pcPredSearch  ->estIntraPredQT      ( rpcTempCU, m_ppcOrigYuv[uiDepth], m_ppcPredYuvTemp[uiDepth], m_ppcResiYuvTemp[uiDepth], m_ppcRecoYuvTemp[uiDepth], uiPreCalcDistC, bSeparateLumaChroma );
2003
2004  m_ppcRecoYuvTemp[uiDepth]->copyToPicLuma(rpcTempCU->getPic()->getPicYuvRec(), rpcTempCU->getAddr(), rpcTempCU->getZorderIdxInCU() );
2005 
2006  m_pcPredSearch  ->estIntraPredChromaQT( rpcTempCU, m_ppcOrigYuv[uiDepth], m_ppcPredYuvTemp[uiDepth], m_ppcResiYuvTemp[uiDepth], m_ppcRecoYuvTemp[uiDepth], uiPreCalcDistC );
2007 
2008  m_pcEntropyCoder->resetBits();
2009  m_pcEntropyCoder->encodeSkipFlag ( rpcTempCU, 0,          true );
2010  m_pcEntropyCoder->encodePredMode( rpcTempCU, 0,          true );
2011  m_pcEntropyCoder->encodePartSize( rpcTempCU, 0, uiDepth, true );
2012  m_pcEntropyCoder->encodePredInfo( rpcTempCU, 0,          true );
2013  m_pcEntropyCoder->encodeIPCMInfo(rpcTempCU, 0, true );
2014
2015  // Encode Coefficients
2016  Bool bCodeDQP = getdQPFlag();
2017  m_pcEntropyCoder->encodeCoeff( rpcTempCU, 0, uiDepth, rpcTempCU->getWidth (0), rpcTempCU->getHeight(0), bCodeDQP );
2018  setdQPFlag( bCodeDQP );
2019 
2020  if( m_bUseSBACRD ) m_pcRDGoOnSbacCoder->store(m_pppcRDSbacCoder[uiDepth][CI_TEMP_BEST]);
2021 
2022  rpcTempCU->getTotalBits() = m_pcEntropyCoder->getNumberOfWrittenBits();
2023  if(m_pcEncCfg->getUseSBACRD())
2024  {
2025    rpcTempCU->getTotalBins() = ((TEncBinCABAC *)((TEncSbac*)m_pcEntropyCoder->m_pcEntropyCoderIf)->getEncBinIf())->getBinsCoded();
2026  }
2027#if HHI_VSO
2028  if( m_pcRdCost->getUseLambdaScaleVSO())
2029  {
2030    rpcTempCU->getTotalCost() = m_pcRdCost->calcRdCostVSO( rpcTempCU->getTotalBits(), rpcTempCU->getTotalDistortion() );
2031  }
2032  else
2033#endif
2034  {
2035  rpcTempCU->getTotalCost() = m_pcRdCost->calcRdCost( rpcTempCU->getTotalBits(), rpcTempCU->getTotalDistortion() );
2036  }
2037 
2038  xCheckDQP( rpcTempCU );
2039  xCheckBestMode(rpcBestCU, rpcTempCU, uiDepth);
2040}
2041
2042/** Check R-D costs for a CU with PCM mode.
2043 * \param rpcBestCU pointer to best mode CU data structure
2044 * \param rpcTempCU pointer to testing mode CU data structure
2045 * \returns Void
2046 *
2047 * \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.
2048 */
2049Void TEncCu::xCheckIntraPCM( TComDataCU*& rpcBestCU, TComDataCU*& rpcTempCU )
2050{
2051  UInt uiDepth = rpcTempCU->getDepth( 0 );
2052
2053  rpcTempCU->setIPCMFlag(0, true);
2054  rpcTempCU->setIPCMFlagSubParts (true, 0, rpcTempCU->getDepth(0));
2055  rpcTempCU->setPartSizeSubParts( SIZE_2Nx2N, 0, uiDepth );
2056  rpcTempCU->setPredModeSubParts( MODE_INTRA, 0, uiDepth );
2057
2058  m_pcPredSearch->IPCMSearch( rpcTempCU, m_ppcOrigYuv[uiDepth], m_ppcPredYuvTemp[uiDepth], m_ppcResiYuvTemp[uiDepth], m_ppcRecoYuvTemp[uiDepth]);
2059
2060  if( m_bUseSBACRD ) m_pcRDGoOnSbacCoder->load(m_pppcRDSbacCoder[uiDepth][CI_CURR_BEST]);
2061
2062  m_pcEntropyCoder->resetBits();
2063  m_pcEntropyCoder->encodeSkipFlag ( rpcTempCU, 0,          true );
2064  m_pcEntropyCoder->encodePredMode ( rpcTempCU, 0,          true );
2065  m_pcEntropyCoder->encodePartSize ( rpcTempCU, 0, uiDepth, true );
2066  m_pcEntropyCoder->encodeIPCMInfo ( rpcTempCU, 0, true );
2067
2068  if( m_bUseSBACRD ) m_pcRDGoOnSbacCoder->store(m_pppcRDSbacCoder[uiDepth][CI_TEMP_BEST]);
2069
2070  rpcTempCU->getTotalBits() = m_pcEntropyCoder->getNumberOfWrittenBits();
2071  if(m_pcEncCfg->getUseSBACRD())
2072  {
2073    rpcTempCU->getTotalBins() = ((TEncBinCABAC *)((TEncSbac*)m_pcEntropyCoder->m_pcEntropyCoderIf)->getEncBinIf())->getBinsCoded();
2074  }
2075#if HHI_VSO
2076  if ( m_pcRdCost->getUseVSO() )
2077  {
2078    rpcTempCU->getTotalCost() = m_pcRdCost->calcRdCostVSO( rpcTempCU->getTotalBits(), rpcTempCU->getTotalDistortion() );
2079  }
2080  else
2081#endif
2082  { 
2083  rpcTempCU->getTotalCost() = m_pcRdCost->calcRdCost( rpcTempCU->getTotalBits(), rpcTempCU->getTotalDistortion() );
2084  }
2085
2086  xCheckDQP( rpcTempCU );
2087  xCheckBestMode( rpcBestCU, rpcTempCU, uiDepth );
2088}
2089
2090// check whether current try is the best
2091Void TEncCu::xCheckBestMode( TComDataCU*& rpcBestCU, TComDataCU*& rpcTempCU )
2092{
2093  if( rpcTempCU->getTotalCost() < rpcBestCU->getTotalCost() )
2094  {
2095    TComYuv* pcYuv;
2096    UChar uhDepth = rpcBestCU->getDepth(0);
2097
2098    // Change Information data
2099    TComDataCU* pcCU = rpcBestCU;
2100    rpcBestCU = rpcTempCU;
2101    rpcTempCU = pcCU;
2102   
2103    // Change Prediction data
2104    pcYuv = m_ppcPredYuvBest[uhDepth];
2105    m_ppcPredYuvBest[uhDepth] = m_ppcPredYuvTemp[uhDepth];
2106    m_ppcPredYuvTemp[uhDepth] = pcYuv;
2107   
2108    // Change Reconstruction data
2109    pcYuv = m_ppcRecoYuvBest[uhDepth];
2110    m_ppcRecoYuvBest[uhDepth] = m_ppcRecoYuvTemp[uhDepth];
2111    m_ppcRecoYuvTemp[uhDepth] = pcYuv;
2112   
2113    pcYuv = NULL;
2114    pcCU  = NULL;
2115   
2116    if( m_bUseSBACRD )  // store temp best CI for next CU coding
2117      m_pppcRDSbacCoder[uhDepth][CI_TEMP_BEST]->store(m_pppcRDSbacCoder[uhDepth][CI_NEXT_BEST]);
2118  }
2119}
2120
2121/** check whether current try is the best with identifying the depth of current try
2122 * \param rpcBestCU
2123 * \param rpcTempCU
2124 * \returns Void
2125 */
2126Void TEncCu::xCheckBestMode( TComDataCU*& rpcBestCU, TComDataCU*& rpcTempCU, UInt uiDepth )
2127{
2128  if( rpcTempCU->getTotalCost() < rpcBestCU->getTotalCost() )
2129  {
2130    TComYuv* pcYuv;
2131    // Change Information data
2132    TComDataCU* pcCU = rpcBestCU;
2133    rpcBestCU = rpcTempCU;
2134    rpcTempCU = pcCU;
2135
2136    // Change Prediction data
2137    pcYuv = m_ppcPredYuvBest[uiDepth];
2138    m_ppcPredYuvBest[uiDepth] = m_ppcPredYuvTemp[uiDepth];
2139    m_ppcPredYuvTemp[uiDepth] = pcYuv;
2140
2141    // Change Reconstruction data
2142    pcYuv = m_ppcRecoYuvBest[uiDepth];
2143    m_ppcRecoYuvBest[uiDepth] = m_ppcRecoYuvTemp[uiDepth];
2144    m_ppcRecoYuvTemp[uiDepth] = pcYuv;
2145
2146    pcYuv = NULL;
2147    pcCU  = NULL;
2148
2149    if( m_bUseSBACRD )  // store temp best CI for next CU coding
2150      m_pppcRDSbacCoder[uiDepth][CI_TEMP_BEST]->store(m_pppcRDSbacCoder[uiDepth][CI_NEXT_BEST]);
2151  }
2152}
2153
2154Void TEncCu::xCheckDQP( TComDataCU* pcCU )
2155{
2156  UInt uiDepth = pcCU->getDepth( 0 );
2157
2158  if( pcCU->getSlice()->getPPS()->getUseDQP() && (g_uiMaxCUWidth>>uiDepth) >= pcCU->getSlice()->getPPS()->getMinCuDQPSize() )
2159  {
2160    if ( pcCU->getCbf( 0, TEXT_LUMA, 0 ) || pcCU->getCbf( 0, TEXT_CHROMA_U, 0 ) || pcCU->getCbf( 0, TEXT_CHROMA_V, 0 ) )
2161    {
2162#if !RDO_WITHOUT_DQP_BITS
2163      m_pcEntropyCoder->resetBits();
2164      m_pcEntropyCoder->encodeQP( pcCU, 0, false );
2165      pcCU->getTotalBits() += m_pcEntropyCoder->getNumberOfWrittenBits(); // dQP bits
2166      if(m_pcEncCfg->getUseSBACRD())
2167      {
2168        pcCU->getTotalBins() += ((TEncBinCABAC *)((TEncSbac*)m_pcEntropyCoder->m_pcEntropyCoderIf)->getEncBinIf())->getBinsCoded();
2169      }
2170
2171      // GT: Change here??
2172#if HHI_VSO
2173      if ( m_pcRdCost->getUseVSO() )
2174      {
2175        pcCU->getTotalCost() = m_pcRdCost->calcRdCostVSO( pcCU->getTotalBits(), pcCU->getTotalDistortion() );
2176      }
2177      else
2178#endif
2179      {
2180      pcCU->getTotalCost() = m_pcRdCost->calcRdCost( pcCU->getTotalBits(), pcCU->getTotalDistortion() );
2181      }   
2182#endif
2183    }
2184    else
2185    {
2186#if LOSSLESS_CODING
2187      if ((  ( pcCU->getRefQP( 0 ) != pcCU->getQP( 0 )) ) && (pcCU->getSlice()->getSPS()->getUseLossless()))
2188      {
2189        pcCU->getTotalCost() = MAX_DOUBLE;
2190      }
2191#endif
2192      pcCU->setQPSubParts( pcCU->getRefQP( 0 ), 0, uiDepth ); // set QP to default QP
2193    }
2194  }
2195}
2196
2197#if BURST_IPCM
2198/** Check whether the last CU shares the same root as the current CU and is IPCM or not. 
2199 * \param pcCU
2200 * \param uiCurAbsPartIdx
2201 * \returns Bool
2202 */
2203Bool TEncCu::checkLastCUSucIPCM( TComDataCU* pcCU, UInt uiCurAbsPartIdx )
2204{
2205  Bool lastCUSucIPCMFlag = false;
2206
2207  UInt curDepth = pcCU->getDepth(uiCurAbsPartIdx);
2208  UInt shift = ((pcCU->getPic()->getSlice(pcCU->getPic()->getCurrSliceIdx())->getSPS()->getMaxCUDepth() - curDepth)<<1);
2209  UInt startPartUnitIdx = ((uiCurAbsPartIdx&(0x03<<shift))>>shift);
2210
2211  TComSlice * pcSlice = pcCU->getPic()->getSlice(pcCU->getPic()->getCurrSliceIdx());
2212  if( pcSlice->getEntropySliceCurStartCUAddr() == ( pcCU->getSCUAddr() + uiCurAbsPartIdx ) )
2213  {
2214    return false;
2215  }
2216
2217  if(curDepth > 0 && startPartUnitIdx > 0)
2218  {
2219    Int lastValidPartIdx = pcCU->getLastValidPartIdx((Int) uiCurAbsPartIdx );
2220
2221    if( lastValidPartIdx >= 0 )
2222    {
2223      if(( pcCU->getSliceStartCU( uiCurAbsPartIdx ) == pcCU->getSliceStartCU( (UInt) lastValidPartIdx ))
2224        && 
2225        ( pcCU->getDepth( uiCurAbsPartIdx ) == pcCU->getDepth( (UInt) lastValidPartIdx )) 
2226        && 
2227        pcCU->getIPCMFlag( (UInt) lastValidPartIdx ) )
2228      {
2229        lastCUSucIPCMFlag = true;
2230      }
2231    }
2232  }
2233
2234  return  lastCUSucIPCMFlag;
2235}
2236
2237/** Count the number of successive IPCM CUs sharing the same root.
2238 * \param pcCU
2239 * \param uiCurAbsPartIdx
2240 * \returns Int
2241 */
2242Int TEncCu::countNumSucIPCM ( TComDataCU* pcCU, UInt uiCurAbsPartIdx )
2243{
2244  Int numSucIPCM = 0;
2245  UInt CurDepth = pcCU->getDepth(uiCurAbsPartIdx);
2246
2247  if( pcCU->getIPCMFlag(uiCurAbsPartIdx) )
2248  {
2249    if(CurDepth == 0)
2250    {
2251       numSucIPCM = 1;
2252    }
2253    else 
2254    {
2255      TComPic* pcPic = pcCU->getPic();
2256      TComSlice * pcSlice = pcCU->getPic()->getSlice(pcCU->getPic()->getCurrSliceIdx());
2257      UInt qNumParts = ( pcPic->getNumPartInCU() >> ((CurDepth-1)<<1) )>>2;
2258
2259      Bool continueFlag = true;
2260      UInt absPartIdx = uiCurAbsPartIdx;
2261      UInt shift = ((pcSlice->getSPS()->getMaxCUDepth() - CurDepth)<<1);
2262      UInt startPartUnitIdx = ((uiCurAbsPartIdx&(0x03<<shift))>>shift);
2263
2264      for ( UInt partUnitIdx = startPartUnitIdx; partUnitIdx < 4 && continueFlag; partUnitIdx++, absPartIdx+=qNumParts )
2265      {
2266        UInt lPelX = pcCU->getCUPelX() + g_auiRasterToPelX[ g_auiZscanToRaster[absPartIdx] ];
2267        UInt tPelY = pcCU->getCUPelY() + g_auiRasterToPelY[ g_auiZscanToRaster[absPartIdx] ];
2268        Bool inSliceFlag = ( pcCU->getSCUAddr()+absPartIdx+qNumParts>pcSlice->getEntropySliceCurStartCUAddr() ) && ( pcCU->getSCUAddr()+absPartIdx < pcSlice->getEntropySliceCurEndCUAddr());
2269
2270        if( inSliceFlag && ( lPelX < pcSlice->getSPS()->getPicWidthInLumaSamples() ) && ( tPelY < pcSlice->getSPS()->getPicHeightInLumaSamples() ) )
2271        {
2272          UInt uiDepth = pcCU->getDepth(absPartIdx);
2273
2274          if( ( CurDepth == uiDepth) && pcCU->getIPCMFlag( absPartIdx ) )
2275          {
2276            numSucIPCM++;
2277          }
2278          else
2279          {
2280            continueFlag = false;
2281          }
2282        }
2283      }
2284    }
2285  }
2286
2287  return numSucIPCM;
2288}
2289#endif
2290
2291Void TEncCu::xCopyAMVPInfo (AMVPInfo* pSrc, AMVPInfo* pDst)
2292{
2293  pDst->iN = pSrc->iN;
2294  for (Int i = 0; i < pSrc->iN; i++)
2295  {
2296    pDst->m_acMvCand[i] = pSrc->m_acMvCand[i];
2297  }
2298}
2299Void TEncCu::xCopyYuv2Pic(TComPic* rpcPic, UInt uiCUAddr, UInt uiAbsPartIdx, UInt uiDepth, UInt uiSrcDepth, TComDataCU* pcCU, UInt uiLPelX, UInt uiTPelY )
2300{
2301  UInt uiRPelX   = uiLPelX + (g_uiMaxCUWidth>>uiDepth)  - 1;
2302  UInt uiBPelY   = uiTPelY + (g_uiMaxCUHeight>>uiDepth) - 1;
2303  TComSlice * pcSlice = pcCU->getPic()->getSlice(pcCU->getPic()->getCurrSliceIdx());
2304  Bool bSliceStart = pcSlice->getEntropySliceCurStartCUAddr() > rpcPic->getPicSym()->getInverseCUOrderMap(pcCU->getAddr())*pcCU->getPic()->getNumPartInCU()+uiAbsPartIdx && 
2305    pcSlice->getEntropySliceCurStartCUAddr() < rpcPic->getPicSym()->getInverseCUOrderMap(pcCU->getAddr())*pcCU->getPic()->getNumPartInCU()+uiAbsPartIdx+( pcCU->getPic()->getNumPartInCU() >> (uiDepth<<1) );
2306  Bool bSliceEnd   = pcSlice->getEntropySliceCurEndCUAddr() > rpcPic->getPicSym()->getInverseCUOrderMap(pcCU->getAddr())*pcCU->getPic()->getNumPartInCU()+uiAbsPartIdx && 
2307    pcSlice->getEntropySliceCurEndCUAddr() < rpcPic->getPicSym()->getInverseCUOrderMap(pcCU->getAddr())*pcCU->getPic()->getNumPartInCU()+uiAbsPartIdx+( pcCU->getPic()->getNumPartInCU() >> (uiDepth<<1) );
2308  if(!bSliceEnd && !bSliceStart && ( uiRPelX < pcSlice->getSPS()->getPicWidthInLumaSamples() ) && ( uiBPelY < pcSlice->getSPS()->getPicHeightInLumaSamples() ) )
2309  {
2310    UInt uiAbsPartIdxInRaster = g_auiZscanToRaster[uiAbsPartIdx];
2311    UInt uiSrcBlkWidth = rpcPic->getNumPartInWidth() >> (uiSrcDepth);
2312    UInt uiBlkWidth    = rpcPic->getNumPartInWidth() >> (uiDepth);
2313    UInt uiPartIdxX = ( ( uiAbsPartIdxInRaster % rpcPic->getNumPartInWidth() ) % uiSrcBlkWidth) / uiBlkWidth;
2314    UInt uiPartIdxY = ( ( uiAbsPartIdxInRaster / rpcPic->getNumPartInWidth() ) % uiSrcBlkWidth) / uiBlkWidth;
2315    UInt uiPartIdx = uiPartIdxY * ( uiSrcBlkWidth / uiBlkWidth ) + uiPartIdxX;
2316    m_ppcRecoYuvBest[uiSrcDepth]->copyToPicYuv( rpcPic->getPicYuvRec (), uiCUAddr, uiAbsPartIdx, uiDepth - uiSrcDepth, uiPartIdx);
2317  }
2318  else
2319  {
2320    UInt uiQNumParts = ( pcCU->getPic()->getNumPartInCU() >> (uiDepth<<1) )>>2;
2321
2322    for ( UInt uiPartUnitIdx = 0; uiPartUnitIdx < 4; uiPartUnitIdx++, uiAbsPartIdx+=uiQNumParts )
2323    {
2324      UInt uiSubCULPelX   = uiLPelX + ( g_uiMaxCUWidth >>(uiDepth+1) )*( uiPartUnitIdx &  1 );
2325      UInt uiSubCUTPelY   = uiTPelY + ( g_uiMaxCUHeight>>(uiDepth+1) )*( uiPartUnitIdx >> 1 );
2326
2327      Bool bInSlice = rpcPic->getPicSym()->getInverseCUOrderMap(pcCU->getAddr())*pcCU->getPic()->getNumPartInCU()+uiAbsPartIdx+uiQNumParts > pcSlice->getEntropySliceCurStartCUAddr() && 
2328        rpcPic->getPicSym()->getInverseCUOrderMap(pcCU->getAddr())*pcCU->getPic()->getNumPartInCU()+uiAbsPartIdx < pcSlice->getEntropySliceCurEndCUAddr();
2329      if(bInSlice&&( uiSubCULPelX < pcSlice->getSPS()->getPicWidthInLumaSamples() ) && ( uiSubCUTPelY < pcSlice->getSPS()->getPicHeightInLumaSamples() ) )
2330      {
2331        xCopyYuv2Pic( rpcPic, uiCUAddr, uiAbsPartIdx, uiDepth+1, uiSrcDepth, pcCU, uiSubCULPelX, uiSubCUTPelY );   // Copy Yuv data to picture Yuv
2332      }
2333    }
2334  }
2335}
2336
2337Void TEncCu::xCopyYuv2Tmp( UInt uiPartUnitIdx, UInt uiNextDepth )
2338{
2339  UInt uiCurrDepth = uiNextDepth - 1;
2340  m_ppcRecoYuvBest[uiNextDepth]->copyToPartYuv( m_ppcRecoYuvTemp[uiCurrDepth], uiPartUnitIdx );
2341}
2342
2343#if LOSSLESS_CODING
2344/** Function for filling the PCM buffer of a CU using its original sample array
2345 * \param pcCU pointer to current CU
2346 * \param pcOrgYuv pointer to original sample array
2347 * \returns Void
2348 */
2349Void TEncCu::xFillPCMBuffer     ( TComDataCU*& pCU, TComYuv* pOrgYuv )
2350{
2351
2352  UInt   width        = pCU->getWidth(0);
2353  UInt   height       = pCU->getHeight(0);
2354
2355  Pel*   pSrcY = pOrgYuv->getLumaAddr(0, width); 
2356  Pel*   pDstY = pCU->getPCMSampleY();
2357  UInt   srcStride = pOrgYuv->getStride();
2358
2359  for(Int y = 0; y < height; y++ )
2360  {
2361    for(Int x = 0; x < width; x++ )
2362    {
2363      pDstY[x] = pSrcY[x];
2364    }
2365    pDstY += width;
2366    pSrcY += srcStride;
2367  }
2368
2369  Pel* pSrcCb       = pOrgYuv->getCbAddr();
2370  Pel* pSrcCr       = pOrgYuv->getCrAddr();;
2371
2372  Pel* pDstCb       = pCU->getPCMSampleCb();
2373  Pel* pDstCr       = pCU->getPCMSampleCr();;
2374
2375  UInt srcStrideC = pOrgYuv->getCStride();
2376  UInt heightC   = height >> 1;
2377  UInt widthC    = width  >> 1;
2378
2379  for(Int y = 0; y < heightC; y++ )
2380  {
2381    for(Int x = 0; x < widthC; x++ )
2382    {
2383      pDstCb[x] = pSrcCb[x];
2384      pDstCr[x] = pSrcCr[x];
2385    }
2386    pDstCb += widthC;
2387    pDstCr += widthC;
2388    pSrcCb += srcStrideC;
2389    pSrcCr += srcStrideC;
2390  }
2391}
2392#endif
2393
2394#if ADAPTIVE_QP_SELECTION
2395/** Collect ARL statistics from one block
2396  */
2397Int TEncCu::xTuCollectARLStats(TCoeff* rpcCoeff, Int* rpcArlCoeff, Int NumCoeffInCU, Double* cSum, UInt* numSamples )
2398{
2399  for( Int n = 0; n < NumCoeffInCU; n++ )
2400  {
2401    Int u = abs( rpcCoeff[ n ] );
2402    Int absc = rpcArlCoeff[ n ];
2403
2404    if( u != 0 )
2405    {
2406      if( u < LEVEL_RANGE )
2407      {
2408        cSum[ u ] += ( Double )absc;
2409        numSamples[ u ]++;
2410      }
2411      else 
2412      {
2413        cSum[ LEVEL_RANGE ] += ( Double )absc - ( Double )( u << ARL_C_PRECISION );
2414        numSamples[ LEVEL_RANGE ]++;
2415      }
2416    }
2417  }
2418
2419  return 0;
2420}
2421
2422/** Collect ARL statistics from one LCU
2423 * \param pcCU
2424 */
2425Void TEncCu::xLcuCollectARLStats(TComDataCU* rpcCU )
2426{
2427  Double cSum[ LEVEL_RANGE + 1 ];     //: the sum of DCT coefficients corresponding to datatype and quantization output
2428  UInt numSamples[ LEVEL_RANGE + 1 ]; //: the number of coefficients corresponding to datatype and quantization output
2429
2430  TCoeff* pCoeffY = rpcCU->getCoeffY();
2431  Int* pArlCoeffY = rpcCU->getArlCoeffY();
2432
2433  UInt uiMinCUWidth = g_uiMaxCUWidth >> g_uiMaxCUDepth;
2434  UInt uiMinNumCoeffInCU = 1 << uiMinCUWidth;
2435
2436  memset( cSum, 0, sizeof( Double )*(LEVEL_RANGE+1) );
2437  memset( numSamples, 0, sizeof( UInt )*(LEVEL_RANGE+1) );
2438
2439  // Collect stats to cSum[][] and numSamples[][]
2440  for(Int i = 0; i < rpcCU->getTotalNumPart(); i ++ )
2441  {
2442    UInt uiTrIdx = rpcCU->getTransformIdx(i);
2443
2444    if(rpcCU->getPredictionMode(i) == MODE_INTER)
2445    if( rpcCU->getCbf( i, TEXT_LUMA, uiTrIdx ) )
2446    {
2447      xTuCollectARLStats(pCoeffY, pArlCoeffY, uiMinNumCoeffInCU, cSum, numSamples);
2448    }//Note that only InterY is processed. QP rounding is based on InterY data only.
2449   
2450    pCoeffY  += uiMinNumCoeffInCU;
2451    pArlCoeffY  += uiMinNumCoeffInCU;
2452  }
2453
2454  for(Int u=1; u<LEVEL_RANGE;u++)
2455  {
2456    m_pcTrQuant->getSliceSumC()[u] += cSum[ u ] ;
2457    m_pcTrQuant->getSliceNSamples()[u] += numSamples[ u ] ;
2458  }
2459  m_pcTrQuant->getSliceSumC()[LEVEL_RANGE] += cSum[ LEVEL_RANGE ] ;
2460  m_pcTrQuant->getSliceNSamples()[LEVEL_RANGE] += numSamples[ LEVEL_RANGE ] ;
2461}
2462#endif
2463
2464#if HHI_MPI
2465Void TEncCu::xCheckRDCostMvInheritance( TComDataCU*& rpcBestCU, TComDataCU*& rpcTempCU, UChar uhTextureModeDepth, Bool bSkipResidual, Bool bRecursiveCall )
2466{
2467  assert( rpcTempCU->getSlice()->getIsDepth() );
2468  TComDataCU *pcTextureCU = rpcTempCU->getSlice()->getTexturePic()->getCU( rpcTempCU->getAddr() );
2469
2470  const UChar uhDepth  = rpcTempCU->getDepth( 0 );
2471  const Int   iQP      = rpcTempCU->getQP( 0 );
2472  assert( bRecursiveCall == ( uhDepth != uhTextureModeDepth ) );
2473
2474  if( uhDepth == uhTextureModeDepth )
2475  {
2476    for( UInt ui = 0; ui < rpcTempCU->getTotalNumPart(); ui++ )
2477    {
2478      if( pcTextureCU->isIntra( rpcTempCU->getZorderIdxInCU() + ui ) )
2479      {
2480        return;
2481      }
2482    }
2483  }
2484
2485#if HHI_VSO
2486  if( m_pcRdCost->getUseRenModel() && !bRecursiveCall)
2487  {
2488    UInt  uiWidth     = m_ppcTempCU [uhDepth]->getWidth ( 0 );
2489    UInt  uiHeight    = m_ppcTempCU [uhDepth]->getHeight( 0 );
2490    Pel*  piSrc       = m_ppcOrigYuv[uhDepth]->getLumaAddr( 0 );
2491    UInt  uiSrcStride = m_ppcOrigYuv[uhDepth]->getStride();
2492    m_pcRdCost->setRenModelData( m_ppcTempCU[uhDepth], 0, piSrc, uiSrcStride, uiWidth, uiHeight );
2493  }
2494#endif
2495
2496  Bool bSplit = uhDepth < pcTextureCU->getDepth( rpcTempCU->getZorderIdxInCU() );
2497  if( bSplit )
2498  {
2499    const UChar       uhNextDepth   = uhDepth+1;
2500    TComDataCU* pcSubBestPartCU     = m_ppcBestCU[uhNextDepth];
2501    TComDataCU* pcSubTempPartCU     = m_ppcTempCU[uhNextDepth];
2502
2503    for ( UInt uiPartUnitIdx = 0; uiPartUnitIdx < 4; uiPartUnitIdx++ )
2504    {
2505      pcSubBestPartCU->initSubCU( rpcTempCU, uiPartUnitIdx, uhNextDepth, iQP );           // clear sub partition datas or init.
2506      pcSubTempPartCU->initSubCU( rpcTempCU, uiPartUnitIdx, uhNextDepth, iQP );           // clear sub partition datas or init.
2507
2508      TComSlice * pcSlice = rpcTempCU->getPic()->getSlice(rpcTempCU->getPic()->getCurrSliceIdx());
2509      Bool bInSlice = pcSubBestPartCU->getSCUAddr()+pcSubBestPartCU->getTotalNumPart()>pcSlice->getEntropySliceCurStartCUAddr()&&pcSubBestPartCU->getSCUAddr()<pcSlice->getEntropySliceCurEndCUAddr();
2510      if(bInSlice && ( pcSubBestPartCU->getCUPelX() < pcSlice->getSPS()->getPicWidthInLumaSamples() ) && ( pcSubBestPartCU->getCUPelY() < pcSlice->getSPS()->getPicHeightInLumaSamples() ) )
2511      {
2512        if( m_bUseSBACRD )
2513        {
2514          if ( 0 == uiPartUnitIdx) //initialize RD with previous depth buffer
2515          {
2516            m_pppcRDSbacCoder[uhNextDepth][CI_CURR_BEST]->load(m_pppcRDSbacCoder[uhDepth][CI_CURR_BEST]);
2517          }
2518          else
2519          {
2520            m_pppcRDSbacCoder[uhNextDepth][CI_CURR_BEST]->load(m_pppcRDSbacCoder[uhNextDepth][CI_NEXT_BEST]);
2521          }
2522        }
2523
2524        xCheckRDCostMvInheritance( pcSubBestPartCU, pcSubTempPartCU, uhTextureModeDepth, bSkipResidual, true );
2525
2526        rpcTempCU->copyPartFrom( pcSubBestPartCU, uiPartUnitIdx, uhNextDepth );         // Keep best part data to current temporary data.
2527        xCopyYuv2Tmp( pcSubBestPartCU->getTotalNumPart()*uiPartUnitIdx, uhNextDepth );
2528      }
2529      else if (bInSlice)
2530      {
2531        pcSubBestPartCU->copyToPic( uhNextDepth );
2532        rpcTempCU->copyPartFrom( pcSubBestPartCU, uiPartUnitIdx, uhNextDepth );
2533      }
2534    }
2535
2536    if( uhDepth == uhTextureModeDepth )
2537    {
2538      xAddMVISignallingBits( rpcTempCU );
2539    }
2540
2541    // DQP stuff
2542    {
2543      if( (g_uiMaxCUWidth>>uhDepth) == rpcTempCU->getSlice()->getPPS()->getMinCuDQPSize() && rpcTempCU->getSlice()->getPPS()->getUseDQP())
2544      {
2545        TComPic *pcPic = rpcTempCU->getPic();
2546        TComSlice *pcSlice = rpcTempCU->getPic()->getSlice(rpcTempCU->getPic()->getCurrSliceIdx());
2547        Bool bHasRedisual = false;
2548        for( UInt uiBlkIdx = 0; uiBlkIdx < rpcTempCU->getTotalNumPart(); uiBlkIdx ++)
2549        {
2550          if( ( pcPic->getCU( rpcTempCU->getAddr() )->getEntropySliceStartCU(uiBlkIdx+rpcTempCU->getZorderIdxInCU()) == rpcTempCU->getSlice()->getEntropySliceCurStartCUAddr() ) &&
2551              ( rpcTempCU->getCbf( uiBlkIdx, TEXT_LUMA ) || rpcTempCU->getCbf( uiBlkIdx, TEXT_CHROMA_U ) || rpcTempCU->getCbf( uiBlkIdx, TEXT_CHROMA_V ) ) )
2552          {
2553            bHasRedisual = true;
2554            break;
2555          }
2556        }
2557
2558        UInt uiTargetPartIdx;
2559        if ( pcPic->getCU( rpcTempCU->getAddr() )->getEntropySliceStartCU(rpcTempCU->getZorderIdxInCU()) != pcSlice->getEntropySliceCurStartCUAddr() )
2560        {
2561          uiTargetPartIdx = pcSlice->getEntropySliceCurStartCUAddr() % pcPic->getNumPartInCU() - rpcTempCU->getZorderIdxInCU();
2562        }
2563        else
2564        {
2565          uiTargetPartIdx = 0;
2566        }
2567        if ( ! bHasRedisual )
2568        {
2569  #if LOSSLESS_CODING
2570          if (((rpcTempCU->getQP(uiTargetPartIdx) != rpcTempCU->getRefQP(uiTargetPartIdx)) ) && (rpcTempCU->getSlice()->getSPS()->getUseLossless()))
2571          {
2572            rpcTempCU->getTotalCost() = MAX_DOUBLE;
2573          }
2574  #endif
2575          rpcTempCU->setQPSubParts( rpcTempCU->getRefQP( uiTargetPartIdx ), 0, uhDepth ); // set QP to default QP
2576        }
2577      }
2578    }
2579
2580    if( m_bUseSBACRD )
2581    {
2582      m_pppcRDSbacCoder[uhNextDepth][CI_NEXT_BEST]->store(m_pppcRDSbacCoder[uhDepth][CI_TEMP_BEST]);
2583    }
2584  }
2585  else
2586  {
2587    rpcTempCU->setTextureModeDepthSubParts( uhTextureModeDepth, 0, uhDepth );
2588    rpcTempCU->copyTextureMotionDataFrom( pcTextureCU, uhDepth, rpcTempCU->getZorderIdxInCU() );
2589    rpcTempCU->setPartSizeSubParts( SIZE_NxN, 0, uhDepth );
2590    for( UInt ui = 0; ui < rpcTempCU->getTotalNumPart(); ui++ )
2591    {
2592      assert( rpcTempCU->getInterDir( ui ) != 0 );
2593      assert( rpcTempCU->getPredictionMode( ui ) != MODE_NONE );
2594    }
2595    rpcTempCU->setPredModeSubParts( bSkipResidual ? MODE_SKIP : MODE_INTER, 0, uhDepth );
2596    m_pcPredSearch->motionCompensation( rpcTempCU, m_ppcPredYuvTemp[uhDepth] );
2597
2598    // get Original YUV data from picture
2599    m_ppcOrigYuv[uhDepth]->copyFromPicYuv( rpcBestCU->getPic()->getPicYuvOrg(), rpcBestCU->getAddr(), rpcBestCU->getZorderIdxInCU() );
2600    m_pcPredSearch->encodeResAndCalcRdInterCU( rpcTempCU,
2601                                               m_ppcOrigYuv[uhDepth],
2602                                               m_ppcPredYuvTemp[uhDepth],
2603                                               m_ppcResiYuvTemp[uhDepth],
2604                                               m_ppcResiYuvBest[uhDepth],
2605                                               m_ppcRecoYuvTemp[uhDepth],
2606#if HHI_INTER_VIEW_RESIDUAL_PRED
2607                                               m_ppcResPredTmp [uhDepth],
2608#endif
2609                                               bSkipResidual );
2610
2611    if( uhDepth == uhTextureModeDepth )
2612    {
2613      xAddMVISignallingBits( rpcTempCU );
2614    }
2615    xCheckDQP( rpcTempCU );
2616  }
2617
2618#if HHI_VSO
2619  if( m_pcRdCost->getUseLambdaScaleVSO() )
2620  {
2621    rpcTempCU->getTotalCost()  = m_pcRdCost->calcRdCostVSO( rpcTempCU->getTotalBits(), rpcTempCU->getTotalDistortion() );
2622  }
2623  else
2624#endif
2625  {
2626    rpcTempCU->getTotalCost()  = m_pcRdCost->calcRdCost( rpcTempCU->getTotalBits(), rpcTempCU->getTotalDistortion() );
2627  }
2628
2629  if( rpcTempCU->getPredictionMode( 0 ) == MODE_SKIP && uhDepth == uhTextureModeDepth )
2630  {
2631    if( rpcTempCU->getSlice()->getPPS()->getUseDQP() && (g_uiMaxCUWidth>>uhDepth) >= rpcTempCU->getSlice()->getPPS()->getMinCuDQPSize() )
2632      rpcTempCU->setQPSubParts( rpcTempCU->getRefQP( 0 ), 0, uhDepth ); // set QP to default QP
2633  }
2634  xCheckBestMode( rpcBestCU, rpcTempCU, uhDepth );
2635  rpcBestCU->copyToPic(uhDepth);                                                     // Copy Best data to Picture for next partition prediction.
2636
2637#if HHI_VSO
2638  if( !bSplit && bRecursiveCall && m_pcRdCost->getUseRenModel() )
2639  {
2640    UInt  uiWidth     = rpcBestCU->getWidth ( 0 );
2641    UInt  uiHeight    = rpcBestCU->getHeight( 0 );
2642    Pel*  piSrc       = m_ppcRecoYuvBest[uhDepth]->getLumaAddr( 0 );
2643    UInt  uiSrcStride = m_ppcRecoYuvBest[uhDepth]->getStride();
2644    m_pcRdCost->setRenModelData( rpcBestCU, 0, piSrc, uiSrcStride, uiWidth, uiHeight );
2645  }
2646#endif
2647}
2648
2649Void TEncCu::xAddMVISignallingBits( TComDataCU* pcCU )
2650{
2651  const UChar uhDepth = pcCU->getTextureModeDepth( 0 );
2652  m_pcEntropyCoder->resetBits();
2653  xSaveDepthWidthHeight( pcCU );
2654  pcCU->setSizeSubParts( g_uiMaxCUWidth>>uhDepth, g_uiMaxCUHeight>>uhDepth, 0, uhDepth );
2655  pcCU->setDepthSubParts( uhDepth, 0 );
2656  pcCU->setPartSizeSubParts( SIZE_2Nx2N, 0, uhDepth );
2657  pcCU->setMergeFlagSubParts( true, 0, 0, uhDepth );
2658  pcCU->setMergeIndexSubParts( HHI_MPI_MERGE_POS, 0, 0, uhDepth );
2659
2660  // check for skip mode
2661  {
2662    Bool bAllZero = true;
2663    for( UInt ui = 0; ui < pcCU->getTotalNumPart(); ui++ )
2664    {
2665      if( pcCU->getCbf( ui, TEXT_LUMA ) || pcCU->getCbf( ui, TEXT_CHROMA_U ) || pcCU->getCbf( ui, TEXT_CHROMA_V ) )
2666      {
2667        bAllZero = false;
2668        break;
2669      }
2670    }
2671    if( bAllZero )
2672      pcCU->setPredModeSubParts( MODE_SKIP, 0, uhDepth );
2673  }
2674
2675
2676  m_pcEntropyCoder->encodeSplitFlag( pcCU, 0, uhDepth, true );
2677  m_pcEntropyCoder->encodeSkipFlag( pcCU, 0, true );
2678
2679  if( pcCU->isSkipped( 0 ) )
2680  {
2681    m_pcEntropyCoder->encodeMergeIndex( pcCU, 0, 0, true );
2682  }
2683  else
2684  {
2685    m_pcEntropyCoder->encodePredMode( pcCU, 0, true );
2686    m_pcEntropyCoder->encodePartSize( pcCU, 0, uhDepth, true );
2687    // prediction Info ( Intra : direction mode, Inter : Mv, reference idx )
2688    m_pcEntropyCoder->encodePredInfo( pcCU, 0, true );
2689  }
2690  xRestoreDepthWidthHeight( pcCU );
2691
2692  pcCU->getTotalBits() += m_pcEntropyCoder->getNumberOfWrittenBits();
2693}
2694
2695Void TEncCu::xSaveDepthWidthHeight( TComDataCU* pcCU )
2696{
2697  const Int iSizeInUchar  = sizeof( UChar ) * pcCU->getTotalNumPart();
2698  memcpy( m_puhDepthSaved, pcCU->getDepth(), iSizeInUchar );
2699  memcpy( m_puhWidthSaved, pcCU->getWidth(), iSizeInUchar );
2700  memcpy( m_puhHeightSaved, pcCU->getHeight(), iSizeInUchar );
2701}
2702
2703Void TEncCu::xRestoreDepthWidthHeight( TComDataCU* pcCU )
2704{
2705  const Int iSizeInUchar  = sizeof( UChar ) * pcCU->getTotalNumPart();
2706  memcpy( pcCU->getDepth(), m_puhDepthSaved, iSizeInUchar );
2707  memcpy( pcCU->getWidth(), m_puhWidthSaved, iSizeInUchar );
2708  memcpy( pcCU->getHeight(), m_puhHeightSaved, iSizeInUchar );
2709}
2710#endif
2711
2712//! \}
Note: See TracBrowser for help on using the repository browser.