source: 3DVCSoftware/branches/HTM-13.1-dev1-Samsung/source/Lib/TLibEncoder/TEncEntropy.cpp @ 1150

Last change on this file since 1150 was 1145, checked in by samsung-htm, 10 years ago

Integration of K0033: Depth intra skip (DIS) mode

  • Property svn:eol-style set to native
File size: 23.2 KB
RevLine 
[5]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
[56]4 * granted under this license. 
[5]5 *
[872]6* Copyright (c) 2010-2014, ITU/ISO/IEC
[5]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.
[56]17 *  * Neither the name of the ITU/ISO/IEC nor the names of its contributors may
[5]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 */
[2]33
34/** \file     TEncEntropy.cpp
35    \brief    entropy encoder class
36*/
37
38#include "TEncEntropy.h"
[56]39#include "TLibCommon/TypeDef.h"
40#include "TLibCommon/TComSampleAdaptiveOffset.h"
[2]41
[56]42//! \ingroup TLibEncoder
43//! \{
44
[2]45Void TEncEntropy::setEntropyCoder ( TEncEntropyIf* e, TComSlice* pcSlice )
46{
47  m_pcEntropyCoderIf = e;
48  m_pcEntropyCoderIf->setSlice ( pcSlice );
49}
50
51Void TEncEntropy::encodeSliceHeader ( TComSlice* pcSlice )
52{
53  m_pcEntropyCoderIf->codeSliceHeader( pcSlice );
54  return;
55}
56
[56]57Void  TEncEntropy::encodeTilesWPPEntryPoint( TComSlice* pSlice )
58{
59  m_pcEntropyCoderIf->codeTilesWPPEntryPoint( pSlice );
60}
61
[2]62Void TEncEntropy::encodeTerminatingBit      ( UInt uiIsLast )
63{
64  m_pcEntropyCoderIf->codeTerminatingBit( uiIsLast );
65 
66  return;
67}
68
69Void TEncEntropy::encodeSliceFinish()
70{
71  m_pcEntropyCoderIf->codeSliceFinish();
72}
73
74Void TEncEntropy::encodePPS( TComPPS* pcPPS )
75{
76  m_pcEntropyCoderIf->codePPS( pcPPS );
77  return;
78}
79
[1124]80Void TEncEntropy::encodeSPS( TComSPS* pcSPS )
81{
82  m_pcEntropyCoderIf->codeSPS( pcSPS );
83  return;
84}
[2]85
[608]86Void TEncEntropy::encodeCUTransquantBypassFlag( TComDataCU* pcCU, UInt uiAbsPartIdx, Bool bRD )
[2]87{
88  if( bRD )
[56]89  {
[2]90    uiAbsPartIdx = 0;
[56]91  }
[608]92  m_pcEntropyCoderIf->codeCUTransquantBypassFlag( pcCU, uiAbsPartIdx );
[2]93}
94
[608]95Void TEncEntropy::encodeVPS( TComVPS* pcVPS )
[189]96{
[608]97  m_pcEntropyCoderIf->codeVPS( pcVPS );
98  return;
99}
100
101Void TEncEntropy::encodeSkipFlag( TComDataCU* pcCU, UInt uiAbsPartIdx, Bool bRD )
102{
103  if ( pcCU->getSlice()->isIntra() )
[189]104  {
105    return;
106  }
107  if( bRD )
108  {
109    uiAbsPartIdx = 0;
110  }
[608]111  m_pcEntropyCoderIf->codeSkipFlag( pcCU, uiAbsPartIdx );
[189]112}
[1145]113
114#if SEC_DEPTH_INTRA_SKIP_MODE_K0033
115Void TEncEntropy::encodeDIS( TComDataCU* pcCU, UInt uiAbsPartIdx, Bool bRD )
116{
117  if ( !pcCU->getSlice()->getIsDepth() )
118  {
119    return;
120  }
121  if( bRD )
122  {
123    uiAbsPartIdx = 0;
124  }
125  m_pcEntropyCoderIf->codeDIS( pcCU, uiAbsPartIdx );
126}
127#else
[1084]128#if H_3D_SINGLE_DEPTH
[1039]129Void TEncEntropy::encodeSingleDepthMode( TComDataCU* pcCU, UInt uiAbsPartIdx, Bool bRD )
130{
[1124]131  if(!pcCU->getSlice()->getIntraSingleFlag() )
132  {
133    return;
134  }
[1039]135  if( bRD )
136  {
137    uiAbsPartIdx = 0;
138  }
139  m_pcEntropyCoderIf->codeSingleDepthMode( pcCU, uiAbsPartIdx );
140}
141#endif
[1145]142#endif
143
[2]144/** encode merge flag
145 * \param pcCU
146 * \param uiAbsPartIdx
147 * \returns Void
148 */
[608]149Void TEncEntropy::encodeMergeFlag( TComDataCU* pcCU, UInt uiAbsPartIdx )
[2]150{ 
[56]151  // at least one merge candidate exists
152  m_pcEntropyCoderIf->codeMergeFlag( pcCU, uiAbsPartIdx );
[2]153}
154
155/** encode merge index
156 * \param pcCU
157 * \param uiAbsPartIdx
158 * \param uiPUIdx
159 * \param bRD
160 * \returns Void
161 */
[608]162Void TEncEntropy::encodeMergeIndex( TComDataCU* pcCU, UInt uiAbsPartIdx, Bool bRD )
[2]163{
164  if( bRD )
165  {
166    uiAbsPartIdx = 0;
167    assert( pcCU->getPartitionSize(uiAbsPartIdx) == SIZE_2Nx2N );
168  }
[608]169  m_pcEntropyCoderIf->codeMergeIndex( pcCU, uiAbsPartIdx );
[2]170}
171
[608]172#if H_3D_IC
173Void TEncEntropy::encodeICFlag( TComDataCU* pcCU, UInt uiAbsPartIdx, Bool bRD )
[443]174{
[833]175  if ( pcCU->isIntra( uiAbsPartIdx ) || ( pcCU->getSlice()->getViewIndex() == 0 ) || pcCU->getSlice()->getIsDepth() || pcCU->getARPW( uiAbsPartIdx ) > 0 )
[443]176  {
177    return;
178  }
[608]179
180  if( !pcCU->getSlice()->getApplyIC() )
[976]181  {
[608]182    return;
[976]183  }
[608]184
[443]185  if( bRD )
186  {
187    uiAbsPartIdx = 0;
188  }
[950]189  else
190  {
[1066]191    Int ICEnableCandidate = pcCU->getSlice()->getICEnableCandidate(pcCU->getSlice()->getDepth());
192    Int ICEnableNum = pcCU->getSlice()->getICEnableNum(pcCU->getSlice()->getDepth());
193    ICEnableCandidate++;
194    if(pcCU->getICFlag(uiAbsPartIdx))
195    {
196      ICEnableNum++;
197    }
198    pcCU->getSlice()->setICEnableCandidate(pcCU->getSlice()->getDepth(), ICEnableCandidate);
199    pcCU->getSlice()->setICEnableNum(pcCU->getSlice()->getDepth(), ICEnableNum);
[950]200  }
[608]201  if( pcCU->isICFlagRequired( uiAbsPartIdx ) )
[976]202  {
[608]203    m_pcEntropyCoderIf->codeICFlag( pcCU, uiAbsPartIdx );
[976]204  }
[443]205}
206#endif
[2]207
[608]208#if H_3D_ARP
209Void TEncEntropy::encodeARPW( TComDataCU* pcCU, UInt uiAbsPartIdx )
[56]210{
[608]211  if( !pcCU->getSlice()->getARPStepNum() || pcCU->isIntra( uiAbsPartIdx ) ) 
[56]212  {
[608]213    return;
[56]214  }
215
[608]216  if ( pcCU->getPartitionSize(uiAbsPartIdx)!=SIZE_2Nx2N )
[56]217  {
[608]218    assert(pcCU->getARPW (uiAbsPartIdx) == 0);
[56]219  }
[608]220  else
[56]221  {
[608]222    m_pcEntropyCoderIf->codeARPW( pcCU, uiAbsPartIdx );
[56]223  }
224}
[608]225#endif
[56]226
[2]227/** encode prediction mode
228 * \param pcCU
229 * \param uiAbsPartIdx
230 * \param bRD
231 * \returns Void
232 */
233Void TEncEntropy::encodePredMode( TComDataCU* pcCU, UInt uiAbsPartIdx, Bool bRD )
234{
235  if( bRD )
[56]236  {
[2]237    uiAbsPartIdx = 0;
[56]238  }
[2]239  if ( pcCU->getSlice()->isIntra() )
240  {
241    return;
242  }
[56]243
[2]244  m_pcEntropyCoderIf->codePredMode( pcCU, uiAbsPartIdx );
245}
246
247// Split mode
248Void TEncEntropy::encodeSplitFlag( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, Bool bRD )
249{
250  if( bRD )
[56]251  {
[2]252    uiAbsPartIdx = 0;
[56]253  }
[2]254  m_pcEntropyCoderIf->codeSplitFlag( pcCU, uiAbsPartIdx, uiDepth );
255}
256
257/** encode partition size
258 * \param pcCU
259 * \param uiAbsPartIdx
260 * \param uiDepth
261 * \param bRD
262 * \returns Void
263 */
264Void TEncEntropy::encodePartSize( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, Bool bRD )
265{
266  if( bRD )
[56]267  {
[2]268    uiAbsPartIdx = 0;
[56]269  }
[833]270 
[2]271  m_pcEntropyCoderIf->codePartSize( pcCU, uiAbsPartIdx, uiDepth );
[833]272 
273#if H_3D_DBBP
[1124]274  if( pcCU->getSlice()->getDepthBasedBlkPartFlag() && (pcCU->getPartitionSize(uiAbsPartIdx) == SIZE_2NxN || pcCU->getPartitionSize(uiAbsPartIdx) == SIZE_Nx2N) && pcCU->getWidth(uiAbsPartIdx) > 8 && pcCU->getSlice()->getDefaultRefViewIdxAvailableFlag() )
[833]275  {
276    encodeDBBPFlag(pcCU, uiAbsPartIdx, bRD);
277  }
278#endif
[2]279}
280
[56]281/** Encode I_PCM information.
282 * \param pcCU pointer to CU
283 * \param uiAbsPartIdx CU index
284 * \param bRD flag indicating estimation or encoding
285 * \returns Void
286 */
287Void TEncEntropy::encodeIPCMInfo( TComDataCU* pcCU, UInt uiAbsPartIdx, Bool bRD )
[2]288{
[56]289  if(!pcCU->getSlice()->getSPS()->getUsePCM()
290    || pcCU->getWidth(uiAbsPartIdx) > (1<<pcCU->getSlice()->getSPS()->getPCMLog2MaxSize())
291    || pcCU->getWidth(uiAbsPartIdx) < (1<<pcCU->getSlice()->getSPS()->getPCMLog2MinSize()))
292  {
293    return;
294  }
[189]295 
[56]296  if( bRD )
297  {
298    uiAbsPartIdx = 0;
299  }
300 
[608]301  m_pcEntropyCoderIf->codeIPCMInfo ( pcCU, uiAbsPartIdx );
[56]302}
303
[608]304Void TEncEntropy::xEncodeTransform( TComDataCU* pcCU,UInt offsetLuma, UInt offsetChroma, UInt uiAbsPartIdx, UInt uiDepth, UInt width, UInt height, UInt uiTrIdx, Bool& bCodeDQP )
[56]305{
[2]306  const UInt uiSubdiv = pcCU->getTransformIdx( uiAbsPartIdx ) + pcCU->getDepth( uiAbsPartIdx ) > uiDepth;
307  const UInt uiLog2TrafoSize = g_aucConvertToBit[pcCU->getSlice()->getSPS()->getMaxCUWidth()]+2 - uiDepth;
[56]308  UInt cbfY = pcCU->getCbf( uiAbsPartIdx, TEXT_LUMA    , uiTrIdx );
309  UInt cbfU = pcCU->getCbf( uiAbsPartIdx, TEXT_CHROMA_U, uiTrIdx );
310  UInt cbfV = pcCU->getCbf( uiAbsPartIdx, TEXT_CHROMA_V, uiTrIdx );
311
312  if(uiTrIdx==0)
[2]313  {
[56]314    m_bakAbsPartIdxCU = uiAbsPartIdx;
[2]315  }
[56]316  if( uiLog2TrafoSize == 2 )
[2]317  {
[56]318    UInt partNum = pcCU->getPic()->getNumPartInCU() >> ( ( uiDepth - 1 ) << 1 );
319    if( ( uiAbsPartIdx % partNum ) == 0 )
320    {
321      m_uiBakAbsPartIdx   = uiAbsPartIdx;
322      m_uiBakChromaOffset = offsetChroma;
323    }
324    else if( ( uiAbsPartIdx % partNum ) == (partNum - 1) )
325    {
326      cbfU = pcCU->getCbf( m_uiBakAbsPartIdx, TEXT_CHROMA_U, uiTrIdx );
327      cbfV = pcCU->getCbf( m_uiBakAbsPartIdx, TEXT_CHROMA_V, uiTrIdx );
328    }
[2]329  }
[608]330 
331  if( pcCU->getPredictionMode(uiAbsPartIdx) == MODE_INTRA && pcCU->getPartitionSize(uiAbsPartIdx) == SIZE_NxN && uiDepth == pcCU->getDepth(uiAbsPartIdx) )
332  {
333    assert( uiSubdiv );
334  }
335  else if( pcCU->getPredictionMode(uiAbsPartIdx) == MODE_INTER && (pcCU->getPartitionSize(uiAbsPartIdx) != SIZE_2Nx2N) && uiDepth == pcCU->getDepth(uiAbsPartIdx) &&  (pcCU->getSlice()->getSPS()->getQuadtreeTUMaxDepthInter() == 1) )
336  {
337    if ( uiLog2TrafoSize > pcCU->getQuadtreeTULog2MinSizeInCU(uiAbsPartIdx) )
[2]338    {
339      assert( uiSubdiv );
340    }
[608]341    else
[56]342    {
[608]343      assert(!uiSubdiv );
[56]344    }
[608]345  }
346  else if( uiLog2TrafoSize > pcCU->getSlice()->getSPS()->getQuadtreeTULog2MaxSize() )
347  {
348    assert( uiSubdiv );
349  }
350  else if( uiLog2TrafoSize == pcCU->getSlice()->getSPS()->getQuadtreeTULog2MinSize() )
351  {
352    assert( !uiSubdiv );
353  }
354  else if( uiLog2TrafoSize == pcCU->getQuadtreeTULog2MinSizeInCU(uiAbsPartIdx) )
355  {
356    assert( !uiSubdiv );
357  }
358  else
359  {
360    assert( uiLog2TrafoSize > pcCU->getQuadtreeTULog2MinSizeInCU(uiAbsPartIdx) );
361    m_pcEntropyCoderIf->codeTransformSubdivFlag( uiSubdiv, 5 - uiLog2TrafoSize );
362  }
363
364  const UInt uiTrDepthCurr = uiDepth - pcCU->getDepth( uiAbsPartIdx );
365  const Bool bFirstCbfOfCU = uiTrDepthCurr == 0;
366  if( bFirstCbfOfCU || uiLog2TrafoSize > 2 )
367  {
368    if( bFirstCbfOfCU || pcCU->getCbf( uiAbsPartIdx, TEXT_CHROMA_U, uiTrDepthCurr - 1 ) )
[56]369    {
[608]370      m_pcEntropyCoderIf->codeQtCbf( pcCU, uiAbsPartIdx, TEXT_CHROMA_U, uiTrDepthCurr );
[56]371    }
[608]372    if( bFirstCbfOfCU || pcCU->getCbf( uiAbsPartIdx, TEXT_CHROMA_V, uiTrDepthCurr - 1 ) )
[2]373    {
[608]374      m_pcEntropyCoderIf->codeQtCbf( pcCU, uiAbsPartIdx, TEXT_CHROMA_V, uiTrDepthCurr );
[2]375    }
[608]376  }
377  else if( uiLog2TrafoSize == 2 )
378  {
379    assert( pcCU->getCbf( uiAbsPartIdx, TEXT_CHROMA_U, uiTrDepthCurr ) == pcCU->getCbf( uiAbsPartIdx, TEXT_CHROMA_U, uiTrDepthCurr - 1 ) );
380    assert( pcCU->getCbf( uiAbsPartIdx, TEXT_CHROMA_V, uiTrDepthCurr ) == pcCU->getCbf( uiAbsPartIdx, TEXT_CHROMA_V, uiTrDepthCurr - 1 ) );
381  }
382 
383  if( uiSubdiv )
384  {
385    UInt size;
386    width  >>= 1;
387    height >>= 1;
388    size = width*height;
389    uiTrIdx++;
390    ++uiDepth;
391    const UInt partNum = pcCU->getPic()->getNumPartInCU() >> (uiDepth << 1);
392   
393    xEncodeTransform( pcCU, offsetLuma, offsetChroma, uiAbsPartIdx, uiDepth, width, height, uiTrIdx, bCodeDQP );
394
395    uiAbsPartIdx += partNum;  offsetLuma += size;  offsetChroma += (size>>2);
396    xEncodeTransform( pcCU, offsetLuma, offsetChroma, uiAbsPartIdx, uiDepth, width, height, uiTrIdx, bCodeDQP );
397
398    uiAbsPartIdx += partNum;  offsetLuma += size;  offsetChroma += (size>>2);
399    xEncodeTransform( pcCU, offsetLuma, offsetChroma, uiAbsPartIdx, uiDepth, width, height, uiTrIdx, bCodeDQP );
400
401    uiAbsPartIdx += partNum;  offsetLuma += size;  offsetChroma += (size>>2);
402    xEncodeTransform( pcCU, offsetLuma, offsetChroma, uiAbsPartIdx, uiDepth, width, height, uiTrIdx, bCodeDQP );
403  }
404  else
405  {
406#if !H_MV_ENC_DEC_TRAC
[2]407    {
[608]408      DTRACE_CABAC_VL( g_nSymbolCounter++ );
409      DTRACE_CABAC_T( "\tTrIdx: abspart=" );
410      DTRACE_CABAC_V( uiAbsPartIdx );
411      DTRACE_CABAC_T( "\tdepth=" );
412      DTRACE_CABAC_V( uiDepth );
413      DTRACE_CABAC_T( "\ttrdepth=" );
414      DTRACE_CABAC_V( pcCU->getTransformIdx( uiAbsPartIdx ) );
415      DTRACE_CABAC_T( "\n" );
[2]416    }
[608]417#endif
418   
419    if( pcCU->getPredictionMode(uiAbsPartIdx) != MODE_INTRA && uiDepth == pcCU->getDepth( uiAbsPartIdx ) && !pcCU->getCbf( uiAbsPartIdx, TEXT_CHROMA_U, 0 ) && !pcCU->getCbf( uiAbsPartIdx, TEXT_CHROMA_V, 0 ) )
420    {
421      assert( pcCU->getCbf( uiAbsPartIdx, TEXT_LUMA, 0 ) );
422      //      printf( "saved one bin! " );
423    }
[2]424    else
425    {
[608]426      m_pcEntropyCoderIf->codeQtCbf( pcCU, uiAbsPartIdx, TEXT_LUMA, pcCU->getTransformIdx( uiAbsPartIdx ) );
[2]427    }
[56]428
[608]429
430    if ( cbfY || cbfU || cbfV )
[2]431    {
[608]432      // dQP: only for LCU once
433      if ( pcCU->getSlice()->getPPS()->getUseDQP() )
[2]434      {
[608]435        if ( bCodeDQP )
[2]436        {
[608]437          encodeQP( pcCU, m_bakAbsPartIdxCU );
438          bCodeDQP = false;
[2]439        }
440      }
441    }
[608]442    if( cbfY )
[2]443    {
[608]444      Int trWidth = width;
445      Int trHeight = height;
446      m_pcEntropyCoderIf->codeCoeffNxN( pcCU, (pcCU->getCoeffY()+offsetLuma), uiAbsPartIdx, trWidth, trHeight, uiDepth, TEXT_LUMA );
[2]447    }
[608]448    if( uiLog2TrafoSize > 2 )
[2]449    {
[608]450      Int trWidth = width >> 1;
451      Int trHeight = height >> 1;
452      if( cbfU )
[2]453      {
[608]454        m_pcEntropyCoderIf->codeCoeffNxN( pcCU, (pcCU->getCoeffCb()+offsetChroma), uiAbsPartIdx, trWidth, trHeight, uiDepth, TEXT_CHROMA_U );
[2]455      }
[608]456      if( cbfV )
[56]457      {
[608]458        m_pcEntropyCoderIf->codeCoeffNxN( pcCU, (pcCU->getCoeffCr()+offsetChroma), uiAbsPartIdx, trWidth, trHeight, uiDepth, TEXT_CHROMA_V );
[56]459      }
[608]460    }
461    else
462    {
463      UInt partNum = pcCU->getPic()->getNumPartInCU() >> ( ( uiDepth - 1 ) << 1 );
464      if( ( uiAbsPartIdx % partNum ) == (partNum - 1) )
[2]465      {
[56]466        Int trWidth = width;
467        Int trHeight = height;
468        if( cbfU )
[2]469        {
[608]470          m_pcEntropyCoderIf->codeCoeffNxN( pcCU, (pcCU->getCoeffCb()+m_uiBakChromaOffset), m_uiBakAbsPartIdx, trWidth, trHeight, uiDepth, TEXT_CHROMA_U );
[2]471        }
[56]472        if( cbfV )
473        {
[608]474          m_pcEntropyCoderIf->codeCoeffNxN( pcCU, (pcCU->getCoeffCr()+m_uiBakChromaOffset), m_uiBakAbsPartIdx, trWidth, trHeight, uiDepth, TEXT_CHROMA_V );
[56]475        }
[2]476      }
477    }
478  }
479}
480
481// Intra direction for Luma
[608]482Void TEncEntropy::encodeIntraDirModeLuma  ( TComDataCU* pcCU, UInt absPartIdx, Bool isMultiplePU )
[2]483{
[608]484  m_pcEntropyCoderIf->codeIntraDirLumaAng( pcCU, absPartIdx , isMultiplePU);
[2]485}
486
487// Intra direction for Chroma
488Void TEncEntropy::encodeIntraDirModeChroma( TComDataCU* pcCU, UInt uiAbsPartIdx, Bool bRD )
489{
490  if( bRD )
[56]491  {
[2]492    uiAbsPartIdx = 0;
[56]493  }
[2]494 
495  m_pcEntropyCoderIf->codeIntraDirChroma( pcCU, uiAbsPartIdx );
496}
497
[608]498Void TEncEntropy::encodePredInfo( TComDataCU* pcCU, UInt uiAbsPartIdx, Bool bRD )
[2]499{
500  if( bRD )
[56]501  {
[2]502    uiAbsPartIdx = 0;
[56]503  }
[2]504  if( pcCU->isIntra( uiAbsPartIdx ) )                                 // If it is Intra mode, encode intra prediction mode.
505  {
[608]506    encodeIntraDirModeLuma  ( pcCU, uiAbsPartIdx,true );
507#if H_3D_DIM_SDC
508    if(!pcCU->getSDCFlag(uiAbsPartIdx))
[443]509#endif
[608]510    encodeIntraDirModeChroma( pcCU, uiAbsPartIdx, bRD );
[2]511  }
512  else                                                                // if it is Inter mode, encode motion vector and reference index
513  {
[56]514    encodePUWise( pcCU, uiAbsPartIdx, bRD );
[2]515  }
516}
517
518/** encode motion information for every PU block
519 * \param pcCU
520 * \param uiAbsPartIdx
521 * \param bRD
522 * \returns Void
523 */
524Void TEncEntropy::encodePUWise( TComDataCU* pcCU, UInt uiAbsPartIdx, Bool bRD )
525{
526  if ( bRD )
[56]527  {
[2]528    uiAbsPartIdx = 0;
[56]529  }
530 
[2]531  PartSize ePartSize = pcCU->getPartitionSize( uiAbsPartIdx );
532  UInt uiNumPU = ( ePartSize == SIZE_2Nx2N ? 1 : ( ePartSize == SIZE_NxN ? 4 : 2 ) );
533  UInt uiDepth = pcCU->getDepth( uiAbsPartIdx );
534  UInt uiPUOffset = ( g_auiPUOffset[UInt( ePartSize )] << ( ( pcCU->getSlice()->getSPS()->getMaxCUDepth() - uiDepth ) << 1 ) ) >> 4;
535
536  for ( UInt uiPartIdx = 0, uiSubPartIdx = uiAbsPartIdx; uiPartIdx < uiNumPU; uiPartIdx++, uiSubPartIdx += uiPUOffset )
537  {
[608]538#if H_MV_ENC_DEC_TRAC
539    DTRACE_PU_S("=========== prediction_unit ===========\n")
540       //Todo:
541      //DTRACE_PU("x0", uiLPelX)
542      //DTRACE_PU("x1", uiTPelY)
543#endif
544    encodeMergeFlag( pcCU, uiSubPartIdx );
[2]545    if ( pcCU->getMergeFlag( uiSubPartIdx ) )
546    {
[608]547      encodeMergeIndex( pcCU, uiSubPartIdx );
[2]548    }
549    else
550    {
551      encodeInterDirPU( pcCU, uiSubPartIdx );
552      for ( UInt uiRefListIdx = 0; uiRefListIdx < 2; uiRefListIdx++ )
553      {
554        if ( pcCU->getSlice()->getNumRefIdx( RefPicList( uiRefListIdx ) ) > 0 )
555        {
556          encodeRefFrmIdxPU ( pcCU, uiSubPartIdx, RefPicList( uiRefListIdx ) );
557          encodeMvdPU       ( pcCU, uiSubPartIdx, RefPicList( uiRefListIdx ) );
558          encodeMVPIdxPU    ( pcCU, uiSubPartIdx, RefPicList( uiRefListIdx ) );
559        }
560      }
561    }
562  }
563
564  return;
565}
566
567Void TEncEntropy::encodeInterDirPU( TComDataCU* pcCU, UInt uiAbsPartIdx )
568{
569  if ( !pcCU->getSlice()->isInterB() )
570  {
571    return;
572  }
573
574  m_pcEntropyCoderIf->codeInterDir( pcCU, uiAbsPartIdx );
575  return;
576}
577
578/** encode reference frame index for a PU block
579 * \param pcCU
580 * \param uiAbsPartIdx
581 * \param eRefList
582 * \returns Void
583 */
584Void TEncEntropy::encodeRefFrmIdxPU( TComDataCU* pcCU, UInt uiAbsPartIdx, RefPicList eRefList )
585{
586  assert( !pcCU->isIntra( uiAbsPartIdx ) );
587  {
[56]588    if ( ( pcCU->getSlice()->getNumRefIdx( eRefList ) == 1 ) )
589    {
590      return;
591    }
[2]592
[56]593    if ( pcCU->getInterDir( uiAbsPartIdx ) & ( 1 << eRefList ) )
594    {
595      m_pcEntropyCoderIf->codeRefFrmIdx( pcCU, uiAbsPartIdx, eRefList );
596    }
[2]597  }
598
599  return;
600}
601
602/** encode motion vector difference for a PU block
603 * \param pcCU
604 * \param uiAbsPartIdx
605 * \param eRefList
606 * \returns Void
607 */
608Void TEncEntropy::encodeMvdPU( TComDataCU* pcCU, UInt uiAbsPartIdx, RefPicList eRefList )
609{
610  assert( !pcCU->isIntra( uiAbsPartIdx ) );
611
612  if ( pcCU->getInterDir( uiAbsPartIdx ) & ( 1 << eRefList ) )
613  {
614    m_pcEntropyCoderIf->codeMvd( pcCU, uiAbsPartIdx, eRefList );
615  }
616  return;
617}
618
619Void TEncEntropy::encodeMVPIdxPU( TComDataCU* pcCU, UInt uiAbsPartIdx, RefPicList eRefList )
620{
[608]621  if ( (pcCU->getInterDir( uiAbsPartIdx ) & ( 1 << eRefList )) )
[2]622  {
623    m_pcEntropyCoderIf->codeMVPIdx( pcCU, uiAbsPartIdx, eRefList );
624  }
625
626  return;
627}
628
629Void TEncEntropy::encodeQtCbf( TComDataCU* pcCU, UInt uiAbsPartIdx, TextType eType, UInt uiTrDepth )
630{
631  m_pcEntropyCoderIf->codeQtCbf( pcCU, uiAbsPartIdx, eType, uiTrDepth );
632}
633
634Void TEncEntropy::encodeTransformSubdivFlag( UInt uiSymbol, UInt uiCtx )
635{
636  m_pcEntropyCoderIf->codeTransformSubdivFlag( uiSymbol, uiCtx );
637}
638
639Void TEncEntropy::encodeQtRootCbf( TComDataCU* pcCU, UInt uiAbsPartIdx )
640{
641  m_pcEntropyCoderIf->codeQtRootCbf( pcCU, uiAbsPartIdx );
642}
643
[608]644Void TEncEntropy::encodeQtCbfZero( TComDataCU* pcCU, TextType eType, UInt uiTrDepth )
645{
646  m_pcEntropyCoderIf->codeQtCbfZero( pcCU, eType, uiTrDepth );
647}
648Void TEncEntropy::encodeQtRootCbfZero( TComDataCU* pcCU )
649{
650  m_pcEntropyCoderIf->codeQtRootCbfZero( pcCU );
651}
652
[2]653// dQP
654Void TEncEntropy::encodeQP( TComDataCU* pcCU, UInt uiAbsPartIdx, Bool bRD )
655{
656  if( bRD )
[56]657  {
[2]658    uiAbsPartIdx = 0;
[56]659  }
[2]660 
[56]661  if ( pcCU->getSlice()->getPPS()->getUseDQP() )
[2]662  {
663    m_pcEntropyCoderIf->codeDeltaQP( pcCU, uiAbsPartIdx );
664  }
665}
666
667
668// texture
669/** encode coefficients
670 * \param pcCU
671 * \param uiAbsPartIdx
672 * \param uiDepth
673 * \param uiWidth
674 * \param uiHeight
675 */
[56]676Void TEncEntropy::encodeCoeff( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, UInt uiWidth, UInt uiHeight, Bool& bCodeDQP )
[2]677{
678  UInt uiMinCoeffSize = pcCU->getPic()->getMinCUWidth()*pcCU->getPic()->getMinCUHeight();
679  UInt uiLumaOffset   = uiMinCoeffSize*uiAbsPartIdx;
680  UInt uiChromaOffset = uiLumaOffset>>2;
[833]681#if H_3D_DIM_SDC
682  if( pcCU->getSDCFlag( uiAbsPartIdx ) && pcCU->isIntra( uiAbsPartIdx ) )
683  {
684    assert( pcCU->getPartitionSize(uiAbsPartIdx) == SIZE_2Nx2N );
685    assert( pcCU->getTransformIdx(uiAbsPartIdx) == 0 );
686    assert( pcCU->getCbf(uiAbsPartIdx, TEXT_LUMA) == 1 );
687    assert( pcCU->getCbf(uiAbsPartIdx, TEXT_CHROMA_U) == 1 );
688    assert( pcCU->getCbf(uiAbsPartIdx, TEXT_CHROMA_V) == 1 );
689  }
690
691  if( pcCU->getSDCFlag( uiAbsPartIdx ) && !pcCU->isIntra( uiAbsPartIdx ) )
692  {
693    assert( !pcCU->isSkipped( uiAbsPartIdx ) );
694    assert( !pcCU->isIntra( uiAbsPartIdx) );
695    assert( pcCU->getSlice()->getIsDepth() );
696  }
[884]697
[833]698  if( pcCU->getSlice()->getIsDepth() && ( pcCU->getSDCFlag( uiAbsPartIdx ) || pcCU->isIntra( uiAbsPartIdx ) ) )
699  {
700    Int iPartNum = ( pcCU->isIntra( uiAbsPartIdx ) && pcCU->getPartitionSize( uiAbsPartIdx ) == SIZE_NxN ) ? 4 : 1;
701    UInt uiPartOffset = ( pcCU->getPic()->getNumPartInCU() >> ( pcCU->getDepth( uiAbsPartIdx ) << 1 ) ) >> 2;
[608]702   
[833]703    if( !pcCU->getSDCFlag( uiAbsPartIdx ) )
704    {
705      for( Int iPart = 0; iPart < iPartNum; iPart++ )
706      {
707        if( getDimType( pcCU->getLumaIntraDir( uiAbsPartIdx + uiPartOffset*iPart ) ) < DIM_NUM_TYPE ) 
708        {
709          m_pcEntropyCoderIf->codeDeltaDC( pcCU, uiAbsPartIdx + uiPartOffset*iPart );
710        }
711      }
712    }
713    else
714    {
715      m_pcEntropyCoderIf->codeDeltaDC( pcCU, uiAbsPartIdx );
716      return;
717    }
718  }
[443]719#endif
[608]720
[2]721  if( pcCU->isIntra(uiAbsPartIdx) )
722  {
[608]723#if !H_MV
[56]724    DTRACE_CABAC_VL( g_nSymbolCounter++ )
[2]725    DTRACE_CABAC_T( "\tdecodeTransformIdx()\tCUDepth=" )
726    DTRACE_CABAC_V( uiDepth )
727    DTRACE_CABAC_T( "\n" )
[608]728#endif
[2]729  }
730  else
731  {
[608]732    if( !(pcCU->getMergeFlag( uiAbsPartIdx ) && pcCU->getPartitionSize(uiAbsPartIdx) == SIZE_2Nx2N ) )
[2]733    {
[608]734      m_pcEntropyCoderIf->codeQtRootCbf( pcCU, uiAbsPartIdx );
[2]735    }
[608]736    if ( !pcCU->getQtRootCbf( uiAbsPartIdx ) )
[189]737    {
[608]738      return;
[189]739    }
740  }
[608]741 
742  xEncodeTransform( pcCU, uiLumaOffset, uiChromaOffset, uiAbsPartIdx, uiDepth, uiWidth, uiHeight, 0, bCodeDQP);
[2]743}
744
[56]745Void TEncEntropy::encodeCoeffNxN( TComDataCU* pcCU, TCoeff* pcCoeff, UInt uiAbsPartIdx, UInt uiTrWidth, UInt uiTrHeight, UInt uiDepth, TextType eType )
[608]746{
747  // This is for Transform unit processing. This may be used at mode selection stage for Inter.
[56]748  m_pcEntropyCoderIf->codeCoeffNxN( pcCU, pcCoeff, uiAbsPartIdx, uiTrWidth, uiTrHeight, uiDepth, eType );
[2]749}
750
[56]751Void TEncEntropy::estimateBit (estBitsSbacStruct* pcEstBitsSbac, Int width, Int height, TextType eTType)
752{ 
753  eTType = eTType == TEXT_LUMA ? TEXT_LUMA : TEXT_CHROMA;
754 
755  m_pcEntropyCoderIf->estBit ( pcEstBitsSbac, width, height, eTType );
756}
757
758Int TEncEntropy::countNonZeroCoeffs( TCoeff* pcCoef, UInt uiSize )
759{
760  Int count = 0;
761 
762  for ( Int i = 0; i < uiSize; i++ )
[2]763  {
[56]764    count += pcCoef[i] != 0;
[2]765  }
[56]766 
767  return count;
768}
[2]769
[56]770/** encode quantization matrix
771 * \param scalingList quantization matrix information
772 */
773Void TEncEntropy::encodeScalingList( TComScalingList* scalingList )
774{
775  m_pcEntropyCoderIf->codeScalingList( scalingList );
[2]776}
777
[655]778#if H_3D_INTER_SDC
[833]779Void TEncEntropy::encodeDeltaDC  ( TComDataCU* pcCU, UInt absPartIdx )
780{
781  m_pcEntropyCoderIf->codeDeltaDC( pcCU, absPartIdx );
782}
783
784Void TEncEntropy::encodeSDCFlag( TComDataCU* pcCU, UInt uiAbsPartIdx, Bool bRD )
785{
[1124]786  if( ( !pcCU->isIntra( uiAbsPartIdx ) && !pcCU->getSlice()->getInterSdcFlag() ) || 
787    ( pcCU->isIntra( uiAbsPartIdx ) && !pcCU->getSlice()->getIntraSdcWedgeFlag() ) )
[833]788  {
789    return;
790  }
791
792  if( !pcCU->getSlice()->getIsDepth() || pcCU->getPartitionSize( uiAbsPartIdx ) != SIZE_2Nx2N || pcCU->isSkipped( uiAbsPartIdx ) )
793  {
794    return;
795  }
796
797  assert( pcCU->getPartitionSize( uiAbsPartIdx ) == SIZE_2Nx2N || ( !pcCU->isIntra( uiAbsPartIdx ) && !pcCU->isSkipped( uiAbsPartIdx ) ) );
798
799  if( bRD )
800  {
801    uiAbsPartIdx = 0;
802  }
803
804  m_pcEntropyCoderIf->codeSDCFlag( pcCU, uiAbsPartIdx );
805}
[2]806
[189]807#endif
[833]808#if H_3D_DBBP
809Void TEncEntropy::encodeDBBPFlag( TComDataCU* pcCU, UInt uiAbsPartIdx, Bool bRD )
810{
811  if( bRD )
812  {
813    uiAbsPartIdx = 0;
814  }
815  m_pcEntropyCoderIf->codeDBBPFlag( pcCU, uiAbsPartIdx );
816}
817#endif
[56]818//! \}
Note: See TracBrowser for help on using the repository browser.