source: 3DVCSoftware/branches/HTM-9.3-dev1-MediaTek/source/Lib/TLibDecoder/TDecEntropy.cpp @ 795

Last change on this file since 795 was 795, checked in by mediatek-htm, 10 years ago

Integration of DDD (JCT3V-G0063)

  • Property svn:eol-style set to native
File size: 28.1 KB
Line 
1/* The copyright in this software is being made available under the BSD
2 * License, included below. This software may be subject to other third party
3 * and contributor rights, including patent rights, and no such rights are
4 * granted under this license. 
5 *
6 * Copyright (c) 2010-2013, ITU/ISO/IEC
7 * All rights reserved.
8 *
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are met:
11 *
12 *  * Redistributions of source code must retain the above copyright notice,
13 *    this list of conditions and the following disclaimer.
14 *  * Redistributions in binary form must reproduce the above copyright notice,
15 *    this list of conditions and the following disclaimer in the documentation
16 *    and/or other materials provided with the distribution.
17 *  * Neither the name of the ITU/ISO/IEC nor the names of its contributors may
18 *    be used to endorse or promote products derived from this software without
19 *    specific prior written permission.
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS
25 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
31 * THE POSSIBILITY OF SUCH DAMAGE.
32 */
33
34/** \file     TDecEntropy.cpp
35    \brief    entropy decoder class
36*/
37
38#include "TDecEntropy.h"
39
40//! \ingroup TLibDecoder
41//! \{
42
43Void TDecEntropy::setEntropyDecoder         ( TDecEntropyIf* p )
44{
45  m_pcEntropyDecoderIf = p;
46}
47
48#include "TLibCommon/TComSampleAdaptiveOffset.h"
49
50Void TDecEntropy::decodeSkipFlag( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
51{
52  m_pcEntropyDecoderIf->parseSkipFlag( pcCU, uiAbsPartIdx, uiDepth );
53}
54
55Void TDecEntropy::decodeCUTransquantBypassFlag(TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
56{
57  m_pcEntropyDecoderIf->parseCUTransquantBypassFlag( pcCU, uiAbsPartIdx, uiDepth );
58}
59
60/** decode merge flag
61 * \param pcSubCU
62 * \param uiAbsPartIdx
63 * \param uiDepth
64 * \param uiPUIdx
65 * \returns Void
66 */
67Void TDecEntropy::decodeMergeFlag( TComDataCU* pcSubCU, UInt uiAbsPartIdx, UInt uiDepth, UInt uiPUIdx )
68{ 
69  // at least one merge candidate exists
70  m_pcEntropyDecoderIf->parseMergeFlag( pcSubCU, uiAbsPartIdx, uiDepth, uiPUIdx );
71}
72
73/** decode merge index
74 * \param pcCU
75 * \param uiPartIdx
76 * \param uiAbsPartIdx
77 * \param puhInterDirNeighbours pointer to list of inter direction from the casual neighbours
78 * \param pcMvFieldNeighbours pointer to list of motion vector field from the casual neighbours
79 * \param uiDepth
80 * \returns Void
81 */
82Void TDecEntropy::decodeMergeIndex( TComDataCU* pcCU, UInt uiPartIdx, UInt uiAbsPartIdx, UInt uiDepth )
83{
84  UInt uiMergeIndex = 0;
85  m_pcEntropyDecoderIf->parseMergeIndex( pcCU, uiMergeIndex );
86  pcCU->setMergeIndexSubParts( uiMergeIndex, uiAbsPartIdx, uiPartIdx, uiDepth );
87}
88
89#if H_3D_ARP
90Void TDecEntropy::decodeARPW( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
91{
92  if( !pcCU->getSlice()->getARPStepNum() || pcCU->isIntra( uiAbsPartIdx ) )
93  {
94    return;
95  }
96
97  if( pcCU->getPartitionSize(uiAbsPartIdx) != SIZE_2Nx2N )
98  {
99    pcCU->setARPWSubParts( 0 , uiAbsPartIdx, uiDepth );
100  }
101  else
102  {
103    m_pcEntropyDecoderIf->parseARPW( pcCU , uiAbsPartIdx , uiDepth );
104  }
105}
106#endif
107
108#if H_3D_IC
109Void TDecEntropy::decodeICFlag( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
110{
111  pcCU->setICFlagSubParts( false , uiAbsPartIdx, 0, uiDepth );
112
113  if ( pcCU->isIntra( uiAbsPartIdx ) || ( pcCU->getSlice()->getViewIndex() == 0 ) || pcCU->getSlice()->getIsDepth() )
114  {
115    return;
116  }
117
118  if( !pcCU->getSlice()->getApplyIC() )
119    return;
120
121  if( pcCU->isICFlagRequired( uiAbsPartIdx ) )
122    m_pcEntropyDecoderIf->parseICFlag( pcCU, uiAbsPartIdx, uiDepth );
123}
124#endif
125
126Void TDecEntropy::decodeSplitFlag   ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
127{
128  m_pcEntropyDecoderIf->parseSplitFlag( pcCU, uiAbsPartIdx, uiDepth );
129}
130
131Void TDecEntropy::decodePredMode( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
132{
133  m_pcEntropyDecoderIf->parsePredMode( pcCU, uiAbsPartIdx, uiDepth );
134}
135
136Void TDecEntropy::decodePartSize( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
137{
138  m_pcEntropyDecoderIf->parsePartSize( pcCU, uiAbsPartIdx, uiDepth );
139}
140
141Void TDecEntropy::decodePredInfo    ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, TComDataCU* pcSubCU )
142{
143  if( pcCU->isIntra( uiAbsPartIdx ) )                                 // If it is Intra mode, encode intra prediction mode.
144  {
145    decodeIntraDirModeLuma  ( pcCU, uiAbsPartIdx, uiDepth );
146#if H_3D_DIM_SDC
147    if(!pcCU->getSDCFlag(uiAbsPartIdx))
148#endif
149    decodeIntraDirModeChroma( pcCU, uiAbsPartIdx, uiDepth );
150  }
151  else                                                                // if it is Inter mode, encode motion vector and reference index
152  {
153    decodePUWise( pcCU, uiAbsPartIdx, uiDepth, pcSubCU );
154  }
155}
156
157/** Parse I_PCM information.
158 * \param pcCU  pointer to CUpointer to CU
159 * \param uiAbsPartIdx CU index
160 * \param uiDepth CU depth
161 * \returns Void
162 */
163Void TDecEntropy::decodeIPCMInfo( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
164{
165  if(!pcCU->getSlice()->getSPS()->getUsePCM()
166    || pcCU->getWidth(uiAbsPartIdx) > (1<<pcCU->getSlice()->getSPS()->getPCMLog2MaxSize())
167    || pcCU->getWidth(uiAbsPartIdx) < (1<<pcCU->getSlice()->getSPS()->getPCMLog2MinSize()) )
168  {
169    return;
170  }
171#if H_3D_DIM_SDC
172  if( pcCU->getSDCFlag(uiAbsPartIdx) )
173  {
174    return;
175  }
176#endif
177 
178  m_pcEntropyDecoderIf->parseIPCMInfo( pcCU, uiAbsPartIdx, uiDepth );
179}
180
181Void TDecEntropy::decodeIntraDirModeLuma  ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
182{
183  m_pcEntropyDecoderIf->parseIntraDirLumaAng( pcCU, uiAbsPartIdx, uiDepth );
184}
185
186Void TDecEntropy::decodeIntraDirModeChroma( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
187{
188  m_pcEntropyDecoderIf->parseIntraDirChroma( pcCU, uiAbsPartIdx, uiDepth );
189}
190
191/** decode motion information for every PU block.
192 * \param pcCU
193 * \param uiAbsPartIdx
194 * \param uiDepth
195 * \param pcSubCU
196 * \returns Void
197 */
198Void TDecEntropy::decodePUWise( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, TComDataCU* pcSubCU )
199{
200  PartSize ePartSize = pcCU->getPartitionSize( uiAbsPartIdx );
201  UInt uiNumPU = ( ePartSize == SIZE_2Nx2N ? 1 : ( ePartSize == SIZE_NxN ? 4 : 2 ) );
202  UInt uiPUOffset = ( g_auiPUOffset[UInt( ePartSize )] << ( ( pcCU->getSlice()->getSPS()->getMaxCUDepth() - uiDepth ) << 1 ) ) >> 4;
203
204#if H_3D_IV_MERGE
205  TComMvField cMvFieldNeighbours[MRG_MAX_NUM_CANDS_MEM << 1]; // double length for mv of both lists
206  UChar uhInterDirNeighbours[MRG_MAX_NUM_CANDS_MEM];
207#else
208  TComMvField cMvFieldNeighbours[MRG_MAX_NUM_CANDS << 1]; // double length for mv of both lists
209  UChar uhInterDirNeighbours[MRG_MAX_NUM_CANDS];
210#endif
211#if H_3D_SPIVMP
212  Bool bSPIVMPFlag[MRG_MAX_NUM_CANDS_MEM];
213  TComMvField*  pcMvFieldSP;
214  UChar* puhInterDirSP;
215  pcMvFieldSP = new TComMvField[pcCU->getPic()->getPicSym()->getNumPartition()*2]; 
216  puhInterDirSP = new UChar[pcCU->getPic()->getPicSym()->getNumPartition()]; 
217#endif
218  for ( UInt ui = 0; ui < pcCU->getSlice()->getMaxNumMergeCand(); ui++ )
219  {
220    uhInterDirNeighbours[ui] = 0;
221  }
222  Int numValidMergeCand = 0;
223  Bool isMerged = false;
224
225  pcSubCU->copyInterPredInfoFrom( pcCU, uiAbsPartIdx, REF_PIC_LIST_0 );
226  pcSubCU->copyInterPredInfoFrom( pcCU, uiAbsPartIdx, REF_PIC_LIST_1 );
227#if H_3D_IV_MERGE
228  pcSubCU->copyDVInfoFrom( pcCU, uiAbsPartIdx);
229#endif
230  for ( UInt uiPartIdx = 0, uiSubPartIdx = uiAbsPartIdx; uiPartIdx < uiNumPU; uiPartIdx++, uiSubPartIdx += uiPUOffset )
231  {
232#if H_MV_ENC_DEC_TRAC
233    DTRACE_PU_S("=========== prediction_unit ===========\n")
234    // ToDo:
235    //DTRACE_PU("x0", uiLPelX)
236    //DTRACE_PU("x1", uiTPelY)
237#endif
238    decodeMergeFlag( pcCU, uiSubPartIdx, uiDepth, uiPartIdx );
239    if ( pcCU->getMergeFlag( uiSubPartIdx ) )
240    {
241      decodeMergeIndex( pcCU, uiPartIdx, uiSubPartIdx, uiDepth );
242      UInt uiMergeIndex = pcCU->getMergeIndex(uiSubPartIdx);
243#if H_3D_IC
244      decodeICFlag( pcCU, uiAbsPartIdx, uiDepth );
245#endif
246#if H_3D_ARP
247      decodeARPW  ( pcCU, uiAbsPartIdx, uiDepth );
248#endif
249      if ( pcCU->getSlice()->getPPS()->getLog2ParallelMergeLevelMinus2() && ePartSize != SIZE_2Nx2N && pcSubCU->getWidth( 0 ) <= 8 ) 
250      {
251        pcSubCU->setPartSizeSubParts( SIZE_2Nx2N, 0, uiDepth );
252        if ( !isMerged )
253        {
254#if H_3D_VSP
255          Int vspFlag[MRG_MAX_NUM_CANDS_MEM];
256          memset(vspFlag, 0, sizeof(Int)*MRG_MAX_NUM_CANDS_MEM);
257          InheritedVSPDisInfo inheritedVSPDisInfo[MRG_MAX_NUM_CANDS_MEM];
258#if H_3D_SPIVMP
259          memset(bSPIVMPFlag, false, sizeof(Bool)*MRG_MAX_NUM_CANDS_MEM);
260#endif
261          pcSubCU->initAvailableFlags();
262          pcSubCU->getInterMergeCandidates( 0, 0, cMvFieldNeighbours, uhInterDirNeighbours, numValidMergeCand);
263          pcSubCU->xGetInterMergeCandidates( 0, 0, cMvFieldNeighbours, uhInterDirNeighbours, vspFlag, inheritedVSPDisInfo
264#if H_3D_SPIVMP
265            , bSPIVMPFlag, pcMvFieldSP, puhInterDirSP
266#endif
267            , numValidMergeCand );
268          pcCU->setVSPFlagSubParts( vspFlag[uiMergeIndex], uiSubPartIdx, uiPartIdx, uiDepth );
269
270          if(vspFlag[uiMergeIndex])
271          {
272            pcCU->setDvInfoSubParts(inheritedVSPDisInfo[uiMergeIndex].m_acDvInfo, uiSubPartIdx, uiPartIdx, uiDepth);
273          }
274#else
275#if H_3D
276          pcSubCU->initAvailableFlags();
277          pcSubCU->getInterMergeCandidates( 0, 0, cMvFieldNeighbours, uhInterDirNeighbours, numValidMergeCand);
278          pcSubCU->xGetInterMergeCandidates( 0, 0, cMvFieldNeighbours, uhInterDirNeighbours, numValidMergeCand );
279
280#else
281          pcSubCU->getInterMergeCandidates( 0, 0, cMvFieldNeighbours, uhInterDirNeighbours, numValidMergeCand );
282#endif
283#endif
284          isMerged = true;
285        }
286        pcSubCU->setPartSizeSubParts( ePartSize, 0, uiDepth );
287      }
288      else
289      {
290        uiMergeIndex = pcCU->getMergeIndex(uiSubPartIdx);
291#if H_3D_VSP
292        Int vspFlag[MRG_MAX_NUM_CANDS_MEM];
293        memset(vspFlag, 0, sizeof(Int)*MRG_MAX_NUM_CANDS_MEM);
294        InheritedVSPDisInfo inheritedVSPDisInfo[MRG_MAX_NUM_CANDS_MEM];
295#if H_3D_SPIVMP
296        memset(bSPIVMPFlag, false, sizeof(Bool)*MRG_MAX_NUM_CANDS_MEM);
297#endif
298        pcSubCU->initAvailableFlags();
299        pcSubCU->getInterMergeCandidates( uiSubPartIdx-uiAbsPartIdx, uiPartIdx, cMvFieldNeighbours, uhInterDirNeighbours, numValidMergeCand, uiMergeIndex );
300        pcSubCU->xGetInterMergeCandidates( uiSubPartIdx-uiAbsPartIdx, uiPartIdx, cMvFieldNeighbours, uhInterDirNeighbours, vspFlag, inheritedVSPDisInfo
301#if H_3D_SPIVMP
302          , bSPIVMPFlag, pcMvFieldSP, puhInterDirSP
303#endif
304          ,numValidMergeCand, uiMergeIndex );
305        pcCU->setVSPFlagSubParts( vspFlag[uiMergeIndex], uiSubPartIdx, uiPartIdx, uiDepth );
306        if(vspFlag[uiMergeIndex])
307        {
308          pcCU->setDvInfoSubParts(inheritedVSPDisInfo[uiMergeIndex].m_acDvInfo, uiSubPartIdx, uiPartIdx, uiDepth);
309        }
310#else
311#if H_3D
312        pcSubCU->initAvailableFlags();
313        pcSubCU->getInterMergeCandidates( uiSubPartIdx-uiAbsPartIdx, uiPartIdx, cMvFieldNeighbours, uhInterDirNeighbours, numValidMergeCand, uiMergeIndex );
314        pcSubCU->xGetInterMergeCandidates( uiSubPartIdx-uiAbsPartIdx, uiPartIdx, cMvFieldNeighbours, uhInterDirNeighbours, numValidMergeCand, uiMergeIndex );
315#else
316        pcSubCU->getInterMergeCandidates( uiSubPartIdx-uiAbsPartIdx, uiPartIdx, cMvFieldNeighbours, uhInterDirNeighbours, numValidMergeCand, uiMergeIndex );
317#endif
318#endif
319      }
320      pcCU->setInterDirSubParts( uhInterDirNeighbours[uiMergeIndex], uiSubPartIdx, uiPartIdx, uiDepth );
321
322#if MTK_DDD_G0063
323      if( uiMergeIndex == pcSubCU->getUseDDDCandIdx() )
324      {
325          assert( pcCU->getSlice()->getViewIndex() != 0 );
326          pcCU->setUseDDD( true, uiSubPartIdx, uiPartIdx, uiDepth );
327          pcCU->setDDDepthSubParts( pcSubCU->getDDTmpDepth(),uiSubPartIdx, uiPartIdx, uiDepth );
328      }
329      else
330      {
331          pcCU->setUseDDD( false, uiSubPartIdx, uiPartIdx, uiDepth );
332      }
333#endif
334
335      TComMv cTmpMv( 0, 0 );
336      for ( UInt uiRefListIdx = 0; uiRefListIdx < 2; uiRefListIdx++ )
337      {       
338        if ( pcCU->getSlice()->getNumRefIdx( RefPicList( uiRefListIdx ) ) > 0 )
339        {
340          pcCU->setMVPIdxSubParts( 0, RefPicList( uiRefListIdx ), uiSubPartIdx, uiPartIdx, uiDepth);
341          pcCU->setMVPNumSubParts( 0, RefPicList( uiRefListIdx ), uiSubPartIdx, uiPartIdx, uiDepth);
342          pcCU->getCUMvField( RefPicList( uiRefListIdx ) )->setAllMvd( cTmpMv, ePartSize, uiSubPartIdx, uiDepth, uiPartIdx );
343          pcCU->getCUMvField( RefPicList( uiRefListIdx ) )->setAllMvField( cMvFieldNeighbours[ 2*uiMergeIndex + uiRefListIdx ], ePartSize, uiSubPartIdx, uiDepth, uiPartIdx );
344        }
345      }
346#if H_3D_SPIVMP
347      pcCU->setSPIVMPFlagSubParts(bSPIVMPFlag[uiMergeIndex], uiSubPartIdx, uiPartIdx, uiDepth ); 
348      if (bSPIVMPFlag[uiMergeIndex] != 0)
349      {
350        Int iWidth, iHeight;
351        UInt uiIdx;
352        pcCU->getPartIndexAndSize( uiPartIdx, uiIdx, iWidth, iHeight, uiSubPartIdx, true );
353
354        UInt uiSPAddr;
355
356        Int iNumSPInOneLine, iNumSP, iSPWidth, iSPHeight;
357
358        pcCU->getSPPara(iWidth, iHeight, iNumSP, iNumSPInOneLine, iSPWidth, iSPHeight);
359
360        for (Int iPartitionIdx = 0; iPartitionIdx < iNumSP; iPartitionIdx++)
361        {
362          pcCU->getSPAbsPartIdx(uiSubPartIdx, iSPWidth, iSPHeight, iPartitionIdx, iNumSPInOneLine, uiSPAddr);
363          pcCU->setInterDirSP(puhInterDirSP[iPartitionIdx], uiSPAddr, iSPWidth, iSPHeight);
364          pcCU->getCUMvField( REF_PIC_LIST_0 )->setMvFieldSP(pcCU, uiSPAddr, pcMvFieldSP[2*iPartitionIdx], iSPWidth, iSPHeight);
365          pcCU->getCUMvField( REF_PIC_LIST_1 )->setMvFieldSP(pcCU, uiSPAddr, pcMvFieldSP[2*iPartitionIdx + 1], iSPWidth, iSPHeight);
366        }
367      }
368#endif
369    }
370    else
371    {
372      decodeInterDirPU( pcCU, uiSubPartIdx, uiDepth, uiPartIdx );
373      for ( UInt uiRefListIdx = 0; uiRefListIdx < 2; uiRefListIdx++ )
374      {       
375        if ( pcCU->getSlice()->getNumRefIdx( RefPicList( uiRefListIdx ) ) > 0 )
376        {
377          decodeRefFrmIdxPU( pcCU,    uiSubPartIdx,              uiDepth, uiPartIdx, RefPicList( uiRefListIdx ) );
378          decodeMvdPU      ( pcCU,    uiSubPartIdx,              uiDepth, uiPartIdx, RefPicList( uiRefListIdx ) );
379          decodeMVPIdxPU   ( pcSubCU, uiSubPartIdx-uiAbsPartIdx, uiDepth, uiPartIdx, RefPicList( uiRefListIdx ) );
380        }
381      }
382#if H_3D_IC
383      decodeICFlag( pcCU, uiAbsPartIdx, uiDepth );
384#endif
385#if H_3D_ARP
386      decodeARPW  ( pcCU, uiAbsPartIdx, uiDepth );
387#endif
388    }
389#if H_3D_VSP
390    if ( (pcCU->getInterDir(uiSubPartIdx) == 3) && pcSubCU->isBipredRestriction(uiPartIdx) && (pcCU->getVSPFlag(uiSubPartIdx) == false))
391#else
392    if ( (pcCU->getInterDir(uiSubPartIdx) == 3) && pcSubCU->isBipredRestriction(uiPartIdx) )
393#endif
394    {
395      pcCU->getCUMvField( REF_PIC_LIST_1 )->setAllMv( TComMv(0,0), ePartSize, uiSubPartIdx, uiDepth, uiPartIdx);
396      pcCU->getCUMvField( REF_PIC_LIST_1 )->setAllRefIdx( -1, ePartSize, uiSubPartIdx, uiDepth, uiPartIdx);
397      pcCU->setInterDirSubParts( 1, uiSubPartIdx, uiPartIdx, uiDepth);
398    }
399  }
400#if H_3D_SPIVMP
401  delete[] pcMvFieldSP;
402  delete[] puhInterDirSP;
403#endif
404  return;
405}
406
407/** decode inter direction for a PU block
408 * \param pcCU
409 * \param uiAbsPartIdx
410 * \param uiDepth
411 * \param uiPartIdx
412 * \returns Void
413 */
414Void TDecEntropy::decodeInterDirPU( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, UInt uiPartIdx )
415{
416  UInt uiInterDir;
417
418  if ( pcCU->getSlice()->isInterP() )
419  {
420    uiInterDir = 1;
421  }
422  else
423  {
424    m_pcEntropyDecoderIf->parseInterDir( pcCU, uiInterDir, uiAbsPartIdx );
425  }
426
427  pcCU->setInterDirSubParts( uiInterDir, uiAbsPartIdx, uiPartIdx, uiDepth );
428}
429
430Void TDecEntropy::decodeRefFrmIdxPU( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, UInt uiPartIdx, RefPicList eRefList )
431{
432  Int iRefFrmIdx = 0;
433  Int iParseRefFrmIdx = pcCU->getInterDir( uiAbsPartIdx ) & ( 1 << eRefList );
434
435  if ( pcCU->getSlice()->getNumRefIdx( eRefList ) > 1 && iParseRefFrmIdx )
436  {
437    m_pcEntropyDecoderIf->parseRefFrmIdx( pcCU, iRefFrmIdx, eRefList );
438  }
439  else if ( !iParseRefFrmIdx )
440  {
441    iRefFrmIdx = NOT_VALID;
442  }
443  else
444  {
445    iRefFrmIdx = 0;
446  }
447
448  PartSize ePartSize = pcCU->getPartitionSize( uiAbsPartIdx );
449  pcCU->getCUMvField( eRefList )->setAllRefIdx( iRefFrmIdx, ePartSize, uiAbsPartIdx, uiDepth, uiPartIdx );
450}
451
452/** decode motion vector difference for a PU block
453 * \param pcCU
454 * \param uiAbsPartIdx
455 * \param uiDepth
456 * \param uiPartIdx
457 * \param eRefList
458 * \returns Void
459 */
460Void TDecEntropy::decodeMvdPU( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, UInt uiPartIdx, RefPicList eRefList )
461{
462  if ( pcCU->getInterDir( uiAbsPartIdx ) & ( 1 << eRefList ) )
463  {
464    m_pcEntropyDecoderIf->parseMvd( pcCU, uiAbsPartIdx, uiPartIdx, uiDepth, eRefList );
465  }
466}
467
468Void TDecEntropy::decodeMVPIdxPU( TComDataCU* pcSubCU, UInt uiPartAddr, UInt uiDepth, UInt uiPartIdx, RefPicList eRefList )
469{
470  Int iMVPIdx = -1;
471
472  TComMv cZeroMv( 0, 0 );
473  TComMv cMv     = cZeroMv;
474  Int    iRefIdx = -1;
475
476  TComCUMvField* pcSubCUMvField = pcSubCU->getCUMvField( eRefList );
477  AMVPInfo* pAMVPInfo = pcSubCUMvField->getAMVPInfo();
478
479  iRefIdx = pcSubCUMvField->getRefIdx(uiPartAddr);
480  cMv = cZeroMv;
481
482  if ( (pcSubCU->getInterDir(uiPartAddr) & ( 1 << eRefList )) )
483  {
484    m_pcEntropyDecoderIf->parseMVPIdx( iMVPIdx );
485#if H_MV_ENC_DEC_TRAC
486#if ENC_DEC_TRACE
487    if ( eRefList == REF_PIC_LIST_0 )
488    {
489      DTRACE_PU("mvp_l0_flag", iMVPIdx)
490    }
491    else
492    {
493      DTRACE_PU("mvp_l1_flag", iMVPIdx)
494    }
495#endif
496#endif
497  }
498  pcSubCU->fillMvpCand(uiPartIdx, uiPartAddr, eRefList, iRefIdx, pAMVPInfo);
499  pcSubCU->setMVPNumSubParts(pAMVPInfo->iN, eRefList, uiPartAddr, uiPartIdx, uiDepth);
500  pcSubCU->setMVPIdxSubParts( iMVPIdx, eRefList, uiPartAddr, uiPartIdx, uiDepth );
501  if ( iRefIdx >= 0 )
502  {
503    m_pcPrediction->getMvPredAMVP( pcSubCU, uiPartIdx, uiPartAddr, eRefList, cMv);
504    cMv += pcSubCUMvField->getMvd( uiPartAddr );
505  }
506
507  PartSize ePartSize = pcSubCU->getPartitionSize( uiPartAddr );
508  pcSubCU->getCUMvField( eRefList )->setAllMv(cMv, ePartSize, uiPartAddr, 0, uiPartIdx);
509}
510
511Void TDecEntropy::xDecodeTransform( TComDataCU* pcCU, UInt offsetLuma, UInt offsetChroma, UInt uiAbsPartIdx, UInt uiDepth, UInt width, UInt height, UInt uiTrIdx, Bool& bCodeDQP)
512{
513  UInt uiSubdiv;
514  const UInt uiLog2TrafoSize = g_aucConvertToBit[pcCU->getSlice()->getSPS()->getMaxCUWidth()]+2 - uiDepth;
515
516  if(uiTrIdx==0)
517  {
518    m_bakAbsPartIdxCU = uiAbsPartIdx;
519  }
520  if( uiLog2TrafoSize == 2 )
521  {
522    UInt partNum = pcCU->getPic()->getNumPartInCU() >> ( ( uiDepth - 1 ) << 1 );
523    if( ( uiAbsPartIdx % partNum ) == 0 )
524    {
525      m_uiBakAbsPartIdx   = uiAbsPartIdx;
526      m_uiBakChromaOffset = offsetChroma;
527    }
528  }
529  if( pcCU->getPredictionMode(uiAbsPartIdx) == MODE_INTRA && pcCU->getPartitionSize(uiAbsPartIdx) == SIZE_NxN && uiDepth == pcCU->getDepth(uiAbsPartIdx) )
530  {
531    uiSubdiv = 1;
532  }
533  else if( (pcCU->getSlice()->getSPS()->getQuadtreeTUMaxDepthInter() == 1) && (pcCU->getPredictionMode(uiAbsPartIdx) == MODE_INTER) && ( pcCU->getPartitionSize(uiAbsPartIdx) != SIZE_2Nx2N ) && (uiDepth == pcCU->getDepth(uiAbsPartIdx)) )
534  {
535    uiSubdiv = (uiLog2TrafoSize > pcCU->getQuadtreeTULog2MinSizeInCU(uiAbsPartIdx));
536  }
537  else if( uiLog2TrafoSize > pcCU->getSlice()->getSPS()->getQuadtreeTULog2MaxSize() )
538  {
539    uiSubdiv = 1;
540  }
541  else if( uiLog2TrafoSize == pcCU->getSlice()->getSPS()->getQuadtreeTULog2MinSize() )
542  {
543    uiSubdiv = 0;
544  }
545  else if( uiLog2TrafoSize == pcCU->getQuadtreeTULog2MinSizeInCU(uiAbsPartIdx) )
546  {
547    uiSubdiv = 0;
548  }
549  else
550  {
551    assert( uiLog2TrafoSize > pcCU->getQuadtreeTULog2MinSizeInCU(uiAbsPartIdx) );
552    m_pcEntropyDecoderIf->parseTransformSubdivFlag( uiSubdiv, 5 - uiLog2TrafoSize );
553  }
554 
555  const UInt uiTrDepth = uiDepth - pcCU->getDepth( uiAbsPartIdx );
556  {
557    const Bool bFirstCbfOfCU = uiTrDepth == 0;
558    if( bFirstCbfOfCU )
559    {
560      pcCU->setCbfSubParts( 0, TEXT_CHROMA_U, uiAbsPartIdx, uiDepth );
561      pcCU->setCbfSubParts( 0, TEXT_CHROMA_V, uiAbsPartIdx, uiDepth );
562    }
563    if( bFirstCbfOfCU || uiLog2TrafoSize > 2 )
564    {
565      if( bFirstCbfOfCU || pcCU->getCbf( uiAbsPartIdx, TEXT_CHROMA_U, uiTrDepth - 1 ) )
566      {
567        m_pcEntropyDecoderIf->parseQtCbf( pcCU, uiAbsPartIdx, TEXT_CHROMA_U, uiTrDepth, uiDepth );
568      }
569      if( bFirstCbfOfCU || pcCU->getCbf( uiAbsPartIdx, TEXT_CHROMA_V, uiTrDepth - 1 ) )
570      {
571        m_pcEntropyDecoderIf->parseQtCbf( pcCU, uiAbsPartIdx, TEXT_CHROMA_V, uiTrDepth, uiDepth );
572      }
573    }
574    else
575    {
576      pcCU->setCbfSubParts( pcCU->getCbf( uiAbsPartIdx, TEXT_CHROMA_U, uiTrDepth - 1 ) << uiTrDepth, TEXT_CHROMA_U, uiAbsPartIdx, uiDepth );
577      pcCU->setCbfSubParts( pcCU->getCbf( uiAbsPartIdx, TEXT_CHROMA_V, uiTrDepth - 1 ) << uiTrDepth, TEXT_CHROMA_V, uiAbsPartIdx, uiDepth );
578    }
579  }
580 
581  if( uiSubdiv )
582  {
583    UInt size;
584    width  >>= 1;
585    height >>= 1;
586    size = width*height;
587    uiTrIdx++;
588    ++uiDepth;
589    const UInt uiQPartNum = pcCU->getPic()->getNumPartInCU() >> (uiDepth << 1);
590    const UInt uiStartAbsPartIdx = uiAbsPartIdx;
591    UInt uiYCbf = 0;
592    UInt uiUCbf = 0;
593    UInt uiVCbf = 0;
594   
595    for( Int i = 0; i < 4; i++ )
596    {
597      xDecodeTransform( pcCU, offsetLuma, offsetChroma, uiAbsPartIdx, uiDepth, width, height, uiTrIdx, bCodeDQP );
598      uiYCbf |= pcCU->getCbf( uiAbsPartIdx, TEXT_LUMA, uiTrDepth+1 );
599      uiUCbf |= pcCU->getCbf( uiAbsPartIdx, TEXT_CHROMA_U, uiTrDepth+1 );
600      uiVCbf |= pcCU->getCbf( uiAbsPartIdx, TEXT_CHROMA_V, uiTrDepth+1 );
601      uiAbsPartIdx += uiQPartNum;
602      offsetLuma += size;  offsetChroma += (size>>2);
603    }
604   
605    for( UInt ui = 0; ui < 4 * uiQPartNum; ++ui )
606    {
607      pcCU->getCbf( TEXT_LUMA     )[uiStartAbsPartIdx + ui] |= uiYCbf << uiTrDepth;
608      pcCU->getCbf( TEXT_CHROMA_U )[uiStartAbsPartIdx + ui] |= uiUCbf << uiTrDepth;
609      pcCU->getCbf( TEXT_CHROMA_V )[uiStartAbsPartIdx + ui] |= uiVCbf << uiTrDepth;
610    }
611  }
612  else
613  {
614    assert( uiDepth >= pcCU->getDepth( uiAbsPartIdx ) );
615    pcCU->setTrIdxSubParts( uiTrDepth, uiAbsPartIdx, uiDepth );
616   
617#if !H_MV_ENC_DEC_TRAC
618    {
619      DTRACE_CABAC_VL( g_nSymbolCounter++ );
620      DTRACE_CABAC_T( "\tTrIdx: abspart=" );
621      DTRACE_CABAC_V( uiAbsPartIdx );
622      DTRACE_CABAC_T( "\tdepth=" );
623      DTRACE_CABAC_V( uiDepth );
624      DTRACE_CABAC_T( "\ttrdepth=" );
625      DTRACE_CABAC_V( uiTrDepth );
626      DTRACE_CABAC_T( "\n" );
627    }
628#endif
629   
630    pcCU->setCbfSubParts ( 0, TEXT_LUMA, uiAbsPartIdx, uiDepth );
631    if( pcCU->getPredictionMode(uiAbsPartIdx) != MODE_INTRA && uiDepth == pcCU->getDepth( uiAbsPartIdx ) && !pcCU->getCbf( uiAbsPartIdx, TEXT_CHROMA_U, 0 ) && !pcCU->getCbf( uiAbsPartIdx, TEXT_CHROMA_V, 0 ) )
632    {
633      pcCU->setCbfSubParts( 1 << uiTrDepth, TEXT_LUMA, uiAbsPartIdx, uiDepth );
634    }
635    else
636    {
637      m_pcEntropyDecoderIf->parseQtCbf( pcCU, uiAbsPartIdx, TEXT_LUMA, uiTrDepth, uiDepth );
638    }
639
640
641    // transform_unit begin
642    UInt cbfY = pcCU->getCbf( uiAbsPartIdx, TEXT_LUMA    , uiTrIdx );
643    UInt cbfU = pcCU->getCbf( uiAbsPartIdx, TEXT_CHROMA_U, uiTrIdx );
644    UInt cbfV = pcCU->getCbf( uiAbsPartIdx, TEXT_CHROMA_V, uiTrIdx );
645    if( uiLog2TrafoSize == 2 )
646    {
647      UInt partNum = pcCU->getPic()->getNumPartInCU() >> ( ( uiDepth - 1 ) << 1 );
648      if( ( uiAbsPartIdx % partNum ) == (partNum - 1) )
649      {
650        cbfU = pcCU->getCbf( m_uiBakAbsPartIdx, TEXT_CHROMA_U, uiTrIdx );
651        cbfV = pcCU->getCbf( m_uiBakAbsPartIdx, TEXT_CHROMA_V, uiTrIdx );
652      }
653    }
654    if ( cbfY || cbfU || cbfV )
655    {
656      // dQP: only for LCU
657      if ( pcCU->getSlice()->getPPS()->getUseDQP() )
658      {
659        if ( bCodeDQP )
660        {
661          decodeQP( pcCU, m_bakAbsPartIdxCU);
662          bCodeDQP = false;
663        }
664      }
665    }
666    if( cbfY )
667    {
668      Int trWidth = width;
669      Int trHeight = height;
670      m_pcEntropyDecoderIf->parseCoeffNxN( pcCU, (pcCU->getCoeffY()+offsetLuma), uiAbsPartIdx, trWidth, trHeight, uiDepth, TEXT_LUMA );
671    }
672    if( uiLog2TrafoSize > 2 )
673    {
674      Int trWidth = width >> 1;
675      Int trHeight = height >> 1;
676      if( cbfU )
677      {
678        m_pcEntropyDecoderIf->parseCoeffNxN( pcCU, (pcCU->getCoeffCb()+offsetChroma), uiAbsPartIdx, trWidth, trHeight, uiDepth, TEXT_CHROMA_U );
679      }
680      if( cbfV )
681      {
682        m_pcEntropyDecoderIf->parseCoeffNxN( pcCU, (pcCU->getCoeffCr()+offsetChroma), uiAbsPartIdx, trWidth, trHeight, uiDepth, TEXT_CHROMA_V );
683      }
684    }
685    else
686    {
687      UInt partNum = pcCU->getPic()->getNumPartInCU() >> ( ( uiDepth - 1 ) << 1 );
688      if( ( uiAbsPartIdx % partNum ) == (partNum - 1) )
689      {
690        Int trWidth = width;
691        Int trHeight = height;
692        if( cbfU )
693        {
694          m_pcEntropyDecoderIf->parseCoeffNxN( pcCU, (pcCU->getCoeffCb()+m_uiBakChromaOffset), m_uiBakAbsPartIdx, trWidth, trHeight, uiDepth, TEXT_CHROMA_U );
695        }
696        if( cbfV )
697        {
698          m_pcEntropyDecoderIf->parseCoeffNxN( pcCU, (pcCU->getCoeffCr()+m_uiBakChromaOffset), m_uiBakAbsPartIdx, trWidth, trHeight, uiDepth, TEXT_CHROMA_V );
699        }
700      }
701    }
702    // transform_unit end
703  }
704}
705
706Void TDecEntropy::decodeQP          ( TComDataCU* pcCU, UInt uiAbsPartIdx )
707{
708  if ( pcCU->getSlice()->getPPS()->getUseDQP() )
709  {
710    m_pcEntropyDecoderIf->parseDeltaQP( pcCU, uiAbsPartIdx, pcCU->getDepth( uiAbsPartIdx ) );
711  }
712}
713
714
715/** decode coefficients
716 * \param pcCU
717 * \param uiAbsPartIdx
718 * \param uiDepth
719 * \param uiWidth
720 * \param uiHeight
721 * \returns Void
722 */
723Void TDecEntropy::decodeCoeff( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, UInt uiWidth, UInt uiHeight, Bool& bCodeDQP )
724{
725  UInt uiMinCoeffSize = pcCU->getPic()->getMinCUWidth()*pcCU->getPic()->getMinCUHeight();
726  UInt uiLumaOffset   = uiMinCoeffSize*uiAbsPartIdx;
727  UInt uiChromaOffset = uiLumaOffset>>2;
728 
729#if H_3D_DIM_SDC
730  if( pcCU->getSDCFlag( uiAbsPartIdx ) )
731  {
732    assert( pcCU->getPartitionSize(uiAbsPartIdx) == SIZE_2Nx2N );
733    assert( pcCU->getTransformIdx(uiAbsPartIdx) == 0 );
734    assert( pcCU->getCbf(uiAbsPartIdx, TEXT_LUMA) == 1 );
735    assert( pcCU->getCbf(uiAbsPartIdx, TEXT_CHROMA_U) == 1 );
736    assert( pcCU->getCbf(uiAbsPartIdx, TEXT_CHROMA_V) == 1 );
737    return;
738  }
739#endif
740 
741#if H_3D_INTER_SDC
742  if( pcCU->getInterSDCFlag( uiAbsPartIdx ) )
743  {
744    assert( !pcCU->isSkipped( uiAbsPartIdx ) );
745    assert( !pcCU->isIntra( uiAbsPartIdx) );
746    assert( pcCU->getSlice()->getIsDepth() );
747
748    decodeInterSDCResidualData( pcCU, uiAbsPartIdx, uiDepth );
749    return;
750  }
751#endif
752
753  if( pcCU->isIntra(uiAbsPartIdx) )
754  {
755  }
756  else
757  {
758    UInt uiQtRootCbf = 1;
759    if( !( pcCU->getPartitionSize( uiAbsPartIdx) == SIZE_2Nx2N && pcCU->getMergeFlag( uiAbsPartIdx ) ) )
760    {
761      m_pcEntropyDecoderIf->parseQtRootCbf( uiAbsPartIdx, uiQtRootCbf );
762    }
763    if ( !uiQtRootCbf )
764    {
765      pcCU->setCbfSubParts( 0, 0, 0, uiAbsPartIdx, uiDepth );
766      pcCU->setTrIdxSubParts( 0 , uiAbsPartIdx, uiDepth );
767      return;
768    }
769   
770  }
771  xDecodeTransform( pcCU, uiLumaOffset, uiChromaOffset, uiAbsPartIdx, uiDepth, uiWidth, uiHeight, 0, bCodeDQP );
772}
773
774#if H_3D_INTER_SDC
775Void TDecEntropy::decodeInterSDCFlag( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
776{
777  pcCU->setInterSDCFlagSubParts( false, uiAbsPartIdx, 0, uiDepth);
778
779  if( !pcCU->getSlice()->getVPS()->getInterSDCFlag( pcCU->getSlice()->getLayerIdInVps() ) )
780  {
781    return;
782  }
783
784  if( !pcCU->getSlice()->getIsDepth() || pcCU->isIntra( uiAbsPartIdx ) || pcCU->isSkipped( uiAbsPartIdx ) )
785  {
786    return;
787  }
788
789  m_pcEntropyDecoderIf->parseInterSDCFlag( pcCU, uiAbsPartIdx, uiDepth );
790}
791
792Void TDecEntropy::decodeInterSDCResidualData( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
793{
794  if( !pcCU->getSlice()->getVPS()->getInterSDCFlag( pcCU->getSlice()->getLayerIdInVps() ) )
795  {
796    return;
797  }
798
799  if( !pcCU->getSlice()->getIsDepth() || pcCU->isIntra( uiAbsPartIdx ) || !pcCU->getInterSDCFlag( uiAbsPartIdx ) )
800  {
801    return;
802  }
803
804  UInt uiNumSegments = ( pcCU->getPartitionSize( uiAbsPartIdx ) == SIZE_2Nx2N ) ? 1 : ( pcCU->getPartitionSize( uiAbsPartIdx ) == SIZE_NxN ? 4 : 2 );
805
806  // decode residual data for each segment
807  for( UInt uiSeg = 0; uiSeg < uiNumSegments; uiSeg++ )
808  {
809    m_pcEntropyDecoderIf->parseInterSDCResidualData( pcCU, uiAbsPartIdx, uiDepth, uiSeg );
810  }
811}
812#endif
813
814//! \}
Note: See TracBrowser for help on using the repository browser.