source: 3DVCSoftware/branches/HTM-4.1-dev2-LG/source/Lib/TLibCommon/TComDataCU.h @ 157

Last change on this file since 157 was 152, checked in by lg, 12 years ago
  1. integration of JCT3V-B0045.
  2. cleanup of defined, valued but not used variable "uiPrevTexPartIndex" in function xCompressCU. This cleanup is made to pass the compiling in Linux.
  • Property svn:eol-style set to native
File size: 53.1 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 *
[56]6 * Copyright (c) 2010-2012, 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     TComDataCU.h
35    \brief    CU data structure (header)
36    \todo     not all entities are documented
37*/
38
39#ifndef _TCOMDATACU_
40#define _TCOMDATACU_
41
42#include <assert.h>
43
44// Include files
45#include "CommonDef.h"
46#include "TComMotionInfo.h"
47#include "TComSlice.h"
48#include "TComRdCost.h"
49#include "TComPattern.h"
[56]50
51#if HHI_INTER_VIEW_RESIDUAL_PRED
[2]52#include "TComYuv.h"
[56]53#endif
[2]54
55#include <algorithm>
56#include <vector>
57
[56]58//! \ingroup TLibCommon
59//! \{
60
[2]61// ====================================================================================================================
[56]62// Non-deblocking in-loop filter processing block data structure
63// ====================================================================================================================
64
65/// Non-deblocking filter processing block border tag
66enum NDBFBlockBorderTag
67{
68  SGU_L = 0,
69  SGU_R,
70  SGU_T,
71  SGU_B,
72  SGU_TL,
73  SGU_TR,
74  SGU_BL,
75  SGU_BR,
76  NUM_SGU_BORDER
77};
78
79/// Non-deblocking filter processing block information
80struct NDBFBlockInfo
81{
82  Int   tileID;   //!< tile ID
83  Int   sliceID;  //!< slice ID
84  UInt  startSU;  //!< starting SU z-scan address in LCU
85  UInt  endSU;    //!< ending SU z-scan address in LCU
86  UInt  widthSU;  //!< number of SUs in width
87  UInt  heightSU; //!< number of SUs in height
88  UInt  posX;     //!< top-left X coordinate in picture
89  UInt  posY;     //!< top-left Y coordinate in picture
90  UInt  width;    //!< number of pixels in width
91  UInt  height;   //!< number of pixels in height
92  Bool  isBorderAvailable[NUM_SGU_BORDER];  //!< the border availabilities
93#if LCU_SYNTAX_ALF
94  Bool  allBordersAvailable;
95#endif
96
97  NDBFBlockInfo():tileID(0), sliceID(0), startSU(0), endSU(0) {} //!< constructor
98  const NDBFBlockInfo& operator= (const NDBFBlockInfo& src);  //!< "=" operator
99};
100
101
102// ====================================================================================================================
[2]103// Class definition
104// ====================================================================================================================
105
106/// CU data structure class
107class TComDataCU
108{
109private:
110 
111  // -------------------------------------------------------------------------------------------------------------------
112  // class pointers
113  // -------------------------------------------------------------------------------------------------------------------
114 
115  TComPic*      m_pcPic;              ///< picture class pointer
116  TComSlice*    m_pcSlice;            ///< slice header pointer
117  TComPattern*  m_pcPattern;          ///< neighbour access class pointer
118 
119  // -------------------------------------------------------------------------------------------------------------------
120  // CU description
121  // -------------------------------------------------------------------------------------------------------------------
122 
123  UInt          m_uiCUAddr;           ///< CU address in a slice
124  UInt          m_uiAbsIdxInLCU;      ///< absolute address in a CU. It's Z scan order
125  UInt          m_uiCUPelX;           ///< CU position in a pixel (X)
126  UInt          m_uiCUPelY;           ///< CU position in a pixel (Y)
127  UInt          m_uiNumPartition;     ///< total number of minimum partitions in a CU
128  UChar*        m_puhWidth;           ///< array of widths
129  UChar*        m_puhHeight;          ///< array of heights
130  UChar*        m_puhDepth;           ///< array of depths
[56]131  Int           m_unitSize;           ///< size of a "minimum partition"
[5]132#if HHI_MPI
[56]133  Int*          m_piTextureModeDepth; ///< at which depth are prediction data inherited from texture picture ( -1 : none )
[5]134#endif
[2]135 
136  // -------------------------------------------------------------------------------------------------------------------
137  // CU data
138  // -------------------------------------------------------------------------------------------------------------------
139 
[56]140  Char*         m_pePartSize;         ///< array of partition sizes
141#if HHI_INTERVIEW_SKIP
142  Bool*         m_pbRenderable;        ///< array of merge flags
143#endif
144  Char*         m_pePredMode;         ///< array of prediction modes
145#if H0736_AVC_STYLE_QP_RANGE
146  Char*         m_phQP;               ///< array of QP values
147#else
[2]148  UChar*        m_phQP;               ///< array of QP values
[56]149#endif
[2]150  UChar*        m_puhTrIdx;           ///< array of transform indices
[56]151  UChar*        m_nsqtPartIdx;        ///< array of absPartIdx mapping table, map zigzag to NSQT
[2]152  UChar*        m_puhCbf[3];          ///< array of coded block flags (CBF)
153  TComCUMvField m_acCUMvField[2];     ///< array of motion vectors
154  TCoeff*       m_pcTrCoeffY;         ///< transformed coefficient buffer (Y)
155  TCoeff*       m_pcTrCoeffCb;        ///< transformed coefficient buffer (Cb)
156  TCoeff*       m_pcTrCoeffCr;        ///< transformed coefficient buffer (Cr)
[56]157#if ADAPTIVE_QP_SELECTION
158  Int*          m_pcArlCoeffY;        ///< ARL coefficient buffer (Y)
159  Int*          m_pcArlCoeffCb;       ///< ARL coefficient buffer (Cb)
160  Int*          m_pcArlCoeffCr;       ///< ARL coefficient buffer (Cr)
[121]161#if FIX_MEM_LEAKS
162  Bool          m_ArlCoeffIsAliasedAllocation; ///< ARL coefficient buffer is an alias of the global buffer and must not be free()'d
163#endif
[56]164
165  static Int*   m_pcGlbArlCoeffY;     ///< ARL coefficient buffer (Y)
166  static Int*   m_pcGlbArlCoeffCb;    ///< ARL coefficient buffer (Cb)
167  static Int*   m_pcGlbArlCoeffCr;    ///< ARL coefficient buffer (Cr)
[121]168
[56]169#endif
[2]170 
[56]171  Pel*          m_pcIPCMSampleY;      ///< PCM sample buffer (Y)
172  Pel*          m_pcIPCMSampleCb;     ///< PCM sample buffer (Cb)
173  Pel*          m_pcIPCMSampleCr;     ///< PCM sample buffer (Cr)
174
175  Int*          m_piSliceSUMap;       ///< pointer of slice ID map
176  std::vector<NDBFBlockInfo> m_vNDFBlock;
177
[2]178  // -------------------------------------------------------------------------------------------------------------------
179  // neighbour access variables
180  // -------------------------------------------------------------------------------------------------------------------
181 
182  TComDataCU*   m_pcCUAboveLeft;      ///< pointer of above-left CU
183  TComDataCU*   m_pcCUAboveRight;     ///< pointer of above-right CU
184  TComDataCU*   m_pcCUAbove;          ///< pointer of above CU
185  TComDataCU*   m_pcCULeft;           ///< pointer of left CU
186  TComDataCU*   m_apcCUColocated[2];  ///< pointer of temporally colocated CU's for both directions
187  TComMvField   m_cMvFieldA;          ///< motion vector of position A
188  TComMvField   m_cMvFieldB;          ///< motion vector of position B
189  TComMvField   m_cMvFieldC;          ///< motion vector of position C
190  TComMv        m_cMvPred;            ///< motion vector predictor
191 
192  // -------------------------------------------------------------------------------------------------------------------
193  // coding tool information
194  // -------------------------------------------------------------------------------------------------------------------
195 
196  Bool*         m_pbMergeFlag;        ///< array of merge flags
[152]197#if LGE_ILLUCOMP_B0045
198  Bool*         m_pbICFlag;           ///< array of IC flags
199#endif
[2]200  UChar*        m_puhMergeIndex;      ///< array of merge candidate indices
[56]201#if AMP_MRG
202  Bool          m_bIsMergeAMP;
203#endif
204  UChar*        m_puhLumaIntraDir;    ///< array of intra directions (luma)
205  UChar*        m_puhChromaIntraDir;  ///< array of intra directions (chroma)
206  UChar*        m_puhInterDir;        ///< array of inter directions
207  Char*         m_apiMVPIdx[2];       ///< array of motion vector predictor candidates
208  Char*         m_apiMVPNum[2];       ///< array of number of possible motion vectors predictors
209  Bool*         m_puiAlfCtrlFlag;     ///< array of ALF flags
210  Bool*         m_puiTmpAlfCtrlFlag;  ///< temporal array of ALF flags
211 
212  Bool*         m_pbIPCMFlag;         ///< array of intra_pcm flags
213
214#if BURST_IPCM
215  Int           m_numSucIPCM;         ///< the number of succesive IPCM blocks associated with the current log2CUSize
216  Bool          m_lastCUSucIPCMFlag;  ///< True indicates that the last CU is IPCM and shares the same root as the current CU. 
217#endif
[5]218#if HHI_INTER_VIEW_RESIDUAL_PRED
[2]219  Bool*         m_pbResPredAvailable; ///< array of residual prediction available flags
220  Bool*         m_pbResPredFlag;      ///< array of residual prediction flags
[5]221#endif
[56]222
[100]223#if LGE_EDGE_INTRA
224  UChar*        m_pucEdgeCode;          ///< array of edge code
225  UChar*        m_pucEdgeNumber;        ///< total number of edge
226  UChar*        m_pucEdgeStartPos;      ///< starting point position
227  Bool*         m_pbEdgeLeftFirst;      ///< true if edge should be checked in left boundary first
228  Bool*         m_pbEdgePartition;      ///< true if it belongs to region 1, otherwise, region 0
229#if LGE_EDGE_INTRA_DELTA_DC
230  Int*          m_piEdgeDeltaDC0;
231  Int*          m_piEdgeDeltaDC1;
232#endif
233#endif
234
[56]235  // -------------------------------------------------------------------------------------------------------------------
236  // misc. variables
237  // -------------------------------------------------------------------------------------------------------------------
238 
239  Bool          m_bDecSubCu;          ///< indicates decoder-mode
240  Double        m_dTotalCost;         ///< sum of partition RD costs
241  UInt          m_uiTotalDistortion;  ///< sum of partition distortion
242  UInt          m_uiTotalBits;        ///< sum of partition bits
243  UInt          m_uiTotalBins;       ///< sum of partition bins
244  UInt*         m_uiSliceStartCU;    ///< Start CU address of current slice
245  UInt*         m_uiEntropySliceStartCU; ///< Start CU address of current slice
[115]246
[116]247#if OL_DEPTHLIMIT_A0044
[115]248  //add a variable to store the partition information
[116]249  //a 2D array in uidepth, part_symbol format
[115]250  UInt          m_uiPartInfo[OL_PART_BUF_SIZE][2];
251  UInt          m_uiPartNum;
[118]252  Bool          m_dumpPartInfo;
[115]253#endif
[56]254 
255  // -------------------------------------------------------------------------------------------------------------------
256  // depth model mode data
257  // -------------------------------------------------------------------------------------------------------------------
[5]258#if HHI_DMM_WEDGE_INTRA
[2]259  UInt*         m_puiWedgeFullTabIdx;
260  Int*          m_piWedgeFullDeltaDC1;
261  Int*          m_piWedgeFullDeltaDC2;
262
263  UInt*         m_puiWedgePredDirTabIdx;
264  Int*          m_piWedgePredDirDeltaDC1;
265  Int*          m_piWedgePredDirDeltaDC2;
266  Int*          m_piWedgePredDirDeltaEnd;
[5]267#endif
268#if HHI_DMM_PRED_TEX
[2]269  UInt*         m_puiWedgePredTexTabIdx;
270  Int*          m_piWedgePredTexDeltaDC1;
271  Int*          m_piWedgePredTexDeltaDC2;
272
273  Int*          m_piContourPredTexDeltaDC1;
274  Int*          m_piContourPredTexDeltaDC2;
275#endif
[56]276
[2]277protected:
278 
279  /// add possible motion vector predictor candidates
280  Bool          xAddMVPCand           ( AMVPInfo* pInfo, RefPicList eRefPicList, Int iRefIdx, UInt uiPartUnitIdx, MVP_DIR eDir );
281  Bool          xAddMVPCandOrder      ( AMVPInfo* pInfo, RefPicList eRefPicList, Int iRefIdx, UInt uiPartUnitIdx, MVP_DIR eDir );
282
283  Void          deriveRightBottomIdx        ( PartSize eCUMode, UInt uiPartIdx, UInt& ruiPartIdxRB );
284  Bool          xGetColMVP( RefPicList eRefPicList, Int uiCUAddr, Int uiPartUnitIdx, TComMv& rcMv, Int& riRefIdx );
[100]285#if QC_MULTI_DIS_CAN
286  Bool          xGetColDisMV( RefPicList eRefPicList, Int refidx, Int uiCUAddr, Int uiPartUnitIdx, TComMv& rcMv, Int & iTargetViewIdx, Int & iStartViewIdx );
287#endif
[2]288 
[56]289#if !AMVP_PRUNING_SIMPLIFICATION
[2]290  /// remove redundant candidates
291  Void          xUniqueMVPCand        ( AMVPInfo* pInfo );
[56]292#endif
[2]293
294  Void xCheckCornerCand( TComDataCU* pcCorner, UInt uiCornerIdx, UInt uiIter, Bool& rbValidCand );
295  /// compute required bits to encode MVD (used in AMVP)
296  UInt          xGetMvdBits           ( TComMv cMvd );
297  UInt          xGetComponentBits     ( Int iVal );
298 
299  /// compute scaling factor from POC difference
300  Int           xGetDistScaleFactor   ( Int iCurrPOC, Int iCurrRefPOC, Int iColPOC, Int iColRefPOC );
301 
302  Void xDeriveCenterIdx( PartSize eCUMode, UInt uiPartIdx, UInt& ruiPartIdxCenter );
303  Bool xGetCenterCol( UInt uiPartIdx, RefPicList eRefPicList, int iRefIdx, TComMv *pcMv );
[56]304 
305  Void xCheckDuplicateCand(TComMvField* pcMvFieldNeighbours, UChar* puhInterDirNeighbours, bool* pbCandIsInter, UInt& ruiArrayAddr);
306
307#if !BURST_IPCM
308  Int           getLastValidPartIdx   ( Int iAbsPartIdx );
[2]309#endif
[56]310
[2]311public:
312  TComDataCU();
313  virtual ~TComDataCU();
314 
315  // -------------------------------------------------------------------------------------------------------------------
316  // create / destroy / initialize / copy
317  // -------------------------------------------------------------------------------------------------------------------
318 
[56]319  Void          create                ( UInt uiNumPartition, UInt uiWidth, UInt uiHeight, Bool bDecSubCu, Int unitSize
320#if ADAPTIVE_QP_SELECTION
321    , Bool bGlobalRMARLBuffer = false
322#endif 
323    );
[2]324  Void          destroy               ();
325 
326  Void          initCU                ( TComPic* pcPic, UInt uiCUAddr );
[56]327#if H0736_AVC_STYLE_QP_RANGE
328  Void          initEstData           ( UInt uiDepth, Int qp );
329  Void          initSubCU             ( TComDataCU* pcCU, UInt uiPartUnitIdx, UInt uiDepth, Int qp );
330#else
331  Void          initEstData           ( UInt uiDepth, UInt uiQP );
332  Void          initSubCU             ( TComDataCU* pcCU, UInt uiPartUnitIdx, UInt uiDepth, UInt uiQP );
333#endif
334  Void          setOutsideCUPart      ( UInt uiAbsPartIdx, UInt uiDepth );
335
[2]336  Void          copySubCU             ( TComDataCU* pcCU, UInt uiPartUnitIdx, UInt uiDepth );
337  Void          copyInterPredInfoFrom ( TComDataCU* pcCU, UInt uiAbsPartIdx, RefPicList eRefPicList );
338  Void          copyPartFrom          ( TComDataCU* pcCU, UInt uiPartUnitIdx, UInt uiDepth );
339 
340  Void          copyToPic             ( UChar uiDepth );
341  Void          copyToPic             ( UChar uiDepth, UInt uiPartIdx, UInt uiPartDepth );
342 
343  // -------------------------------------------------------------------------------------------------------------------
344  // member functions for CU description
345  // -------------------------------------------------------------------------------------------------------------------
346 
347  TComPic*      getPic                ()                        { return m_pcPic;           }
348  TComSlice*    getSlice              ()                        { return m_pcSlice;         }
349  UInt&         getAddr               ()                        { return m_uiCUAddr;        }
350  UInt&         getZorderIdxInCU      ()                        { return m_uiAbsIdxInLCU; }
[56]351  UInt          getSCUAddr            ();
[2]352  UInt          getCUPelX             ()                        { return m_uiCUPelX;        }
353  UInt          getCUPelY             ()                        { return m_uiCUPelY;        }
354  TComPattern*  getPattern            ()                        { return m_pcPattern;       }
355 
356  UChar*        getDepth              ()                        { return m_puhDepth;        }
357  UChar         getDepth              ( UInt uiIdx )            { return m_puhDepth[uiIdx]; }
358  Void          setDepth              ( UInt uiIdx, UChar  uh ) { m_puhDepth[uiIdx] = uh;   }
359 
[56]360  Void          setDepthSubParts      ( UInt uiDepth, UInt uiAbsPartIdx );
361  Void          getPosInPic           ( UInt uiAbsPartIndex, Int& riPosX, Int& riPosY );
[5]362#if HHI_MPI
[2]363  Int*          getTextureModeDepth   ()                        { return m_piTextureModeDepth; }
364  Int           getTextureModeDepth   ( UInt uiIdx )            { return m_piTextureModeDepth[uiIdx]; }
365  Void          setTextureModeDepth   ( UInt uiIdx, Int iTextureModeDepth ){ m_piTextureModeDepth[uiIdx] = iTextureModeDepth; }
366  Void          setTextureModeDepthSubParts( Int iTextureModeDepth, UInt uiAbsPartIdx, UInt uiDepth );
367  Void          copyTextureMotionDataFrom( TComDataCU* pcCU, UInt uiDepth, UInt uiAbsPartIdxSrc, UInt uiAbsPartIdxDst = 0 );
[5]368#endif
[2]369 
370  // -------------------------------------------------------------------------------------------------------------------
371  // member functions for CU data
372  // -------------------------------------------------------------------------------------------------------------------
373 
[56]374  Char*         getPartitionSize      ()                        { return m_pePartSize;        }
375  PartSize      getPartitionSize      ( UInt uiIdx )            { return static_cast<PartSize>( m_pePartSize[uiIdx] ); }
[2]376  Void          setPartitionSize      ( UInt uiIdx, PartSize uh){ m_pePartSize[uiIdx] = uh;   }
377  Void          setPartSizeSubParts   ( PartSize eMode, UInt uiAbsPartIdx, UInt uiDepth );
378 
[56]379#if HHI_INTERVIEW_SKIP
380  Bool*         getRenderable          ()                        { return m_pbRenderable;               }
381    Bool          getRenderable          ( UInt uiIdx )            { return m_pbRenderable[uiIdx];        }
382    Void          setRenderable          ( UInt uiIdx, Bool b )    { m_pbRenderable[uiIdx] = b;           }
383    Void          setRenderableSubParts  ( Bool bRenderable, UInt uiAbsPartIdx, UInt uiDepth );
384#endif
385 
386  Char*         getPredictionMode     ()                        { return m_pePredMode;        }
387  PredMode      getPredictionMode     ( UInt uiIdx )            { return static_cast<PredMode>( m_pePredMode[uiIdx] ); }
[2]388  Void          setPredictionMode     ( UInt uiIdx, PredMode uh){ m_pePredMode[uiIdx] = uh;   }
389  Void          setPredModeSubParts   ( PredMode eMode, UInt uiAbsPartIdx, UInt uiDepth );
390 
391  UChar*        getWidth              ()                        { return m_puhWidth;          }
392  UChar         getWidth              ( UInt uiIdx )            { return m_puhWidth[uiIdx];   }
393  Void          setWidth              ( UInt uiIdx, UChar  uh ) { m_puhWidth[uiIdx] = uh;     }
394 
395  UChar*        getHeight             ()                        { return m_puhHeight;         }
396  UChar         getHeight             ( UInt uiIdx )            { return m_puhHeight[uiIdx];  }
397  Void          setHeight             ( UInt uiIdx, UChar  uh ) { m_puhHeight[uiIdx] = uh;    }
398 
399  Void          setSizeSubParts       ( UInt uiWidth, UInt uiHeight, UInt uiAbsPartIdx, UInt uiDepth );
400 
[56]401#if H0736_AVC_STYLE_QP_RANGE
402  Char*         getQP                 ()                        { return m_phQP;              }
403  Char          getQP                 ( UInt uiIdx )            { return m_phQP[uiIdx];       }
404  Void          setQP                 ( UInt uiIdx, Char value ){ m_phQP[uiIdx] =  value;     }
405  Void          setQPSubParts         ( Int qp,   UInt uiAbsPartIdx, UInt uiDepth );
406#if BURST_IPCM
407  Int           getLastValidPartIdx   ( Int iAbsPartIdx );
408#endif
409  Char          getLastCodedQP        ( UInt uiAbsPartIdx );
410#else
[2]411  UChar*        getQP                 ()                        { return m_phQP;              }
412  UChar         getQP                 ( UInt uiIdx )            { return m_phQP[uiIdx];       }
413  Void          setQP                 ( UInt uiIdx, UChar  uh ) { m_phQP[uiIdx] = uh;         }
414  Void          setQPSubParts         ( UInt uiQP,   UInt uiAbsPartIdx, UInt uiDepth );
[56]415#if BURST_IPCM
416  Int           getLastValidPartIdx   ( Int iAbsPartIdx );
417#endif
418  UChar         getLastCodedQP        ( UInt uiAbsPartIdx );
419#endif
420
421#if LOSSLESS_CODING
422  Bool          isLosslessCoded(UInt absPartIdx);
423#endif
424  UChar*        getNSQTPartIdx        ()                        { return m_nsqtPartIdx;        }
425  UChar         getNSQTPartIdx        ( UInt idx )              { return m_nsqtPartIdx[idx];   }
426  Void          setNSQTIdxSubParts    ( UInt absPartIdx, UInt depth );
427  Void          setNSQTIdxSubParts    ( UInt log2TrafoSize, UInt absPartIdx, UInt absTUPartIdx, UInt trMode );
[2]428 
429  UChar*        getTransformIdx       ()                        { return m_puhTrIdx;          }
430  UChar         getTransformIdx       ( UInt uiIdx )            { return m_puhTrIdx[uiIdx];   }
431  Void          setTrIdxSubParts      ( UInt uiTrIdx, UInt uiAbsPartIdx, UInt uiDepth );
432 
[56]433  UInt          getQuadtreeTULog2MinSizeInCU( UInt absPartIdx );
[2]434 
435  TComCUMvField* getCUMvField         ( RefPicList e )          { return  &m_acCUMvField[e];  }
436 
437  TCoeff*&      getCoeffY             ()                        { return m_pcTrCoeffY;        }
438  TCoeff*&      getCoeffCb            ()                        { return m_pcTrCoeffCb;       }
439  TCoeff*&      getCoeffCr            ()                        { return m_pcTrCoeffCr;       }
[56]440#if ADAPTIVE_QP_SELECTION
441  Int*&         getArlCoeffY          ()                        { return m_pcArlCoeffY;       }
442  Int*&         getArlCoeffCb         ()                        { return m_pcArlCoeffCb;      }
443  Int*&         getArlCoeffCr         ()                        { return m_pcArlCoeffCr;      }
444#endif
[2]445 
[56]446  Pel*&         getPCMSampleY         ()                        { return m_pcIPCMSampleY;     }
447  Pel*&         getPCMSampleCb        ()                        { return m_pcIPCMSampleCb;    }
448  Pel*&         getPCMSampleCr        ()                        { return m_pcIPCMSampleCr;    }
449
[2]450  UChar         getCbf    ( UInt uiIdx, TextType eType )                  { return m_puhCbf[g_aucConvertTxtTypeToIdx[eType]][uiIdx];  }
451  UChar*        getCbf    ( TextType eType )                              { return m_puhCbf[g_aucConvertTxtTypeToIdx[eType]];         }
452  UChar         getCbf    ( UInt uiIdx, TextType eType, UInt uiTrDepth )  { return ( ( getCbf( uiIdx, eType ) >> uiTrDepth ) & 0x1 ); }
453  Void          setCbf    ( UInt uiIdx, TextType eType, UChar uh )        { m_puhCbf[g_aucConvertTxtTypeToIdx[eType]][uiIdx] = uh;    }
454  Void          clearCbf  ( UInt uiIdx, TextType eType, UInt uiNumParts );
455  UChar         getQtRootCbf          ( UInt uiIdx )                      { return getCbf( uiIdx, TEXT_LUMA, 0 ) || getCbf( uiIdx, TEXT_CHROMA_U, 0 ) || getCbf( uiIdx, TEXT_CHROMA_V, 0 ); }
456 
457  Void          setCbfSubParts        ( UInt uiCbfY, UInt uiCbfU, UInt uiCbfV, UInt uiAbsPartIdx, UInt uiDepth          );
458  Void          setCbfSubParts        ( UInt uiCbf, TextType eTType, UInt uiAbsPartIdx, UInt uiDepth                    );
459  Void          setCbfSubParts        ( UInt uiCbf, TextType eTType, UInt uiAbsPartIdx, UInt uiPartIdx, UInt uiDepth    );
460 
461  // -------------------------------------------------------------------------------------------------------------------
462  // member functions for coding tool information
463  // -------------------------------------------------------------------------------------------------------------------
464 
465  Bool*         getMergeFlag          ()                        { return m_pbMergeFlag;               }
466  Bool          getMergeFlag          ( UInt uiIdx )            { return m_pbMergeFlag[uiIdx];        }
467  Void          setMergeFlag          ( UInt uiIdx, Bool b )    { m_pbMergeFlag[uiIdx] = b;           }
468  Void          setMergeFlagSubParts  ( Bool bMergeFlag, UInt uiAbsPartIdx, UInt uiPartIdx, UInt uiDepth );
469
470  UChar*        getMergeIndex         ()                        { return m_puhMergeIndex;                         }
471  UChar         getMergeIndex         ( UInt uiIdx )            { return m_puhMergeIndex[uiIdx];                  }
472  Void          setMergeIndex         ( UInt uiIdx, UInt uiMergeIndex ) { m_puhMergeIndex[uiIdx] = uiMergeIndex;  }
473  Void          setMergeIndexSubParts ( UInt uiMergeIndex, UInt uiAbsPartIdx, UInt uiPartIdx, UInt uiDepth );
[56]474  template <typename T>
475  Void          setSubPart            ( T bParameter, T* pbBaseLCU, UInt uiCUAddr, UInt uiCUDepth, UInt uiPUIdx );
[2]476
[152]477#if LGE_ILLUCOMP_B0045
478  Bool*         getICFlag             ()                        { return m_pbICFlag;               }
479  Bool          getICFlag             ( UInt uiIdx )            { return m_pbICFlag[uiIdx];        }
480  Void          setICFlag             ( UInt uiIdx, Bool  uh )  { m_pbICFlag[uiIdx] = uh;          }
481  Void          setICFlagSubParts     ( Bool bICFlag,  UInt uiAbsPartIdx, UInt uiPartIdx, UInt uiDepth );
482  Bool          isICFlagRequired      (UInt uiAbsPartIdx);
483#endif
484
[56]485#if AMP_MRG
486  Void          setMergeAMP( Bool b )      { m_bIsMergeAMP = b; }
487  Bool          getMergeAMP( )             { return m_bIsMergeAMP; }
[5]488#endif
[2]489
490  UChar*        getLumaIntraDir       ()                        { return m_puhLumaIntraDir;           }
491  UChar         getLumaIntraDir       ( UInt uiIdx )            { return m_puhLumaIntraDir[uiIdx];    }
492  Void          setLumaIntraDir       ( UInt uiIdx, UChar  uh ) { m_puhLumaIntraDir[uiIdx] = uh;      }
493  Void          setLumaIntraDirSubParts( UInt uiDir,  UInt uiAbsPartIdx, UInt uiDepth );
494 
495  UChar*        getChromaIntraDir     ()                        { return m_puhChromaIntraDir;         }
496  UChar         getChromaIntraDir     ( UInt uiIdx )            { return m_puhChromaIntraDir[uiIdx];  }
497  Void          setChromaIntraDir     ( UInt uiIdx, UChar  uh ) { m_puhChromaIntraDir[uiIdx] = uh;    }
498  Void          setChromIntraDirSubParts( UInt uiDir,  UInt uiAbsPartIdx, UInt uiDepth );
499 
500  UChar*        getInterDir           ()                        { return m_puhInterDir;               }
501  UChar         getInterDir           ( UInt uiIdx )            { return m_puhInterDir[uiIdx];        }
502  Void          setInterDir           ( UInt uiIdx, UChar  uh ) { m_puhInterDir[uiIdx] = uh;          }
503  Void          setInterDirSubParts   ( UInt uiDir,  UInt uiAbsPartIdx, UInt uiPartIdx, UInt uiDepth );
504 
[56]505  Bool*         getAlfCtrlFlag        ()                        { return m_puiAlfCtrlFlag;            }
506  Bool          getAlfCtrlFlag        ( UInt uiIdx )            { return m_puiAlfCtrlFlag[uiIdx];     }
507  Void          setAlfCtrlFlag        ( UInt uiIdx, Bool uiFlag){ m_puiAlfCtrlFlag[uiIdx] = uiFlag;   }
508  Void          setAlfCtrlFlagSubParts( Bool uiFlag, UInt uiAbsPartIdx, UInt uiDepth );
[2]509 
510  Void          createTmpAlfCtrlFlag  ();
511  Void          destroyTmpAlfCtrlFlag ();
512  Void          copyAlfCtrlFlagToTmp  ();
513  Void          copyAlfCtrlFlagFromTmp();
514 
[56]515  Bool*         getIPCMFlag           ()                        { return m_pbIPCMFlag;               }
516  Bool          getIPCMFlag           (UInt uiIdx )             { return m_pbIPCMFlag[uiIdx];        }
517  Void          setIPCMFlag           (UInt uiIdx, Bool b )     { m_pbIPCMFlag[uiIdx] = b;           }
518  Void          setIPCMFlagSubParts   (Bool bIpcmFlag, UInt uiAbsPartIdx, UInt uiDepth);
[2]519
[56]520#if BURST_IPCM
521  Int           getNumSucIPCM         ()                        { return m_numSucIPCM;             }
522  Void          setNumSucIPCM         ( Int num )               { m_numSucIPCM = num;              }
523  Bool          getLastCUSucIPCMFlag  ()                        { return m_lastCUSucIPCMFlag;        }
524  Void          setLastCUSucIPCMFlag  ( Bool flg )              { m_lastCUSucIPCMFlag = flg;         }
[5]525#endif
[2]526
[56]527  /// get slice ID for SU
528  Int           getSUSliceID          (UInt uiIdx)              {return m_piSliceSUMap[uiIdx];      } 
[2]529
[56]530  /// get the pointer of slice ID map
531  Int*          getSliceSUMap         ()                        {return m_piSliceSUMap;             }
[2]532
[56]533  /// set the pointer of slice ID map
534  Void          setSliceSUMap         (Int *pi)                 {m_piSliceSUMap = pi;               }
[2]535
[56]536  std::vector<NDBFBlockInfo>* getNDBFilterBlocks()      {return &m_vNDFBlock;}
537  Void setNDBFilterBlockBorderAvailability(UInt numLCUInPicWidth, UInt numLCUInPicHeight, UInt numSUInLCUWidth, UInt numSUInLCUHeight, UInt picWidth, UInt picHeight
538                                          ,Bool bIndependentSliceBoundaryEnabled
539                                          ,Bool bTopTileBoundary, Bool bDownTileBoundary, Bool bLeftTileBoundary, Bool bRightTileBoundary
540                                          ,Bool bIndependentTileBoundaryEnabled );
[2]541
[5]542#if HHI_INTER_VIEW_MOTION_PRED
[100]543#if !QC_MULTI_DIS_CAN
[2]544  Int           getPdmMergeCandidate( UInt uiPartIdx, Int* paiPdmRefIdx, TComMv* pacPdmMv );
545  Bool          getPdmMvPred( UInt uiPartIdx, RefPicList eRefPicList, Int iRefIdx, TComMv& rcMv, Bool bMerge = false );
[100]546#else
547  Bool          getPdmMvPredDisCan( UInt uiPartIdx, RefPicList eRefPicList, Int iRefIdx, TComMv& rcMv, DisInfo* pDInfo, Bool bMerge = false );
548  Int           getPdmMergeCandidateDisCan( UInt uiPartIdx, Int* paiPdmRefIdx, TComMv* pacPdmMv, DisInfo* pDInfo );
549  Void          getDisMvpCand        ( UInt uiPartIdx, UInt uiPartAddr, DisInfo* pDInfo );
550#if LGE_DVMCP
551  Void          getDisMvpCand2( UInt uiPartIdx, UInt uiPartAddr, DisInfo* pDInfo, Bool bMerge=false, RefPicList eRefPicList=REF_PIC_LIST_X, Int iRefIdx=-1 );
552#endif
553
554#endif
[2]555  Bool          getIViewOrgDepthMvPred( UInt uiPartIdx, RefPicList eRefPicList, Int iRefIdx, TComMv& rcMv );
[5]556#endif
557#if HHI_INTER_VIEW_RESIDUAL_PRED
[56]558  Bool*         getResPredAvail         ()                        { return m_pbResPredAvailable;        }
559  Bool          getResPredAvail         ( UInt uiIdx )            { return m_pbResPredAvailable[uiIdx]; }
560  Void          setResPredAvail         ( UInt uiIdx, Bool b )    { m_pbResPredAvailable[uiIdx] = b;    }
561  Void          setResPredAvailSubParts ( Bool b, UInt uiAbsPartIdx, UInt uiPartIdx, UInt uiDepth );
562
563  Bool*         getResPredFlag          ()                        { return m_pbResPredFlag;        }
564  Bool          getResPredFlag          ( UInt uiIdx )            { return m_pbResPredFlag[uiIdx]; }
565  Void          setResPredFlag          ( UInt uiIdx, Bool b )    { m_pbResPredFlag[uiIdx] = b;    }
566  Void          setResPredFlagSubParts  ( Bool b, UInt uiAbsPartIdx, UInt uiPartIdx, UInt uiDepth );
567
568  Void          setResPredIndicator     ( Bool bAv, Bool bRP )    { m_pbResPredAvailable[0] = bAv; m_pbResPredFlag[0] = bRP; }
569#endif
570#if HHI_INTER_VIEW_RESIDUAL_PRED
[77]571  Bool          getResidualSamples( UInt uiPartIdx, 
572#if QC_SIMPLIFIEDIVRP_M24938
573    Bool bRecon ,
[5]574#endif
[77]575    TComYuv* pcYuv = 0 );
576#endif
[2]577  // -------------------------------------------------------------------------------------------------------------------
578  // member functions for accessing partition information
579  // -------------------------------------------------------------------------------------------------------------------
[77]580#if LG_RESTRICTEDRESPRED_M24766
581  Void          getPartIndexAndSize( UInt uiPartIdx, UInt& ruiPartAddr, Int& riWidth, Int& riHeight, UInt uiAbsPartIdx = 0, Bool bLCU = false);
582#else
[2]583  Void          getPartIndexAndSize   ( UInt uiPartIdx, UInt& ruiPartAddr, Int& riWidth, Int& riHeight );
[77]584#endif
585#if LG_RESTRICTEDRESPRED_M24766
586  Int           getResiPredMode(UInt uiPartAddr);
587  Void          getPUResiPredShift (Int *iPUPredResiShift, UInt uiAbsPartIndex);
588#endif
[2]589  UChar         getNumPartInter       ();
590  Bool          isFirstAbsZorderIdxInDepth (UInt uiAbsPartIdx, UInt uiDepth);
591 
592  // -------------------------------------------------------------------------------------------------------------------
593  // member functions for motion vector
594  // -------------------------------------------------------------------------------------------------------------------
595 
596  Void          getMvField            ( TComDataCU* pcCU, UInt uiAbsPartIdx, RefPicList eRefPicList, TComMvField& rcMvField );
597 
598  AMVP_MODE     getAMVPMode           ( UInt uiIdx );
599  Void          fillMvpCand           ( UInt uiPartIdx, UInt uiPartAddr, RefPicList eRefPicList, Int iRefIdx, AMVPInfo* pInfo );
[56]600#if PARALLEL_MERGE
601  Bool          isDiffMER             ( Int xN, Int yN, Int xP, Int yP);
602  Void          getPartPosition       ( UInt partIdx, Int& xP, Int& yP, Int& nPSW, Int& nPSH);
603#endif
[2]604  Void          setMVPIdx             ( RefPicList eRefPicList, UInt uiIdx, Int iMVPIdx)  { m_apiMVPIdx[eRefPicList][uiIdx] = iMVPIdx;  }
605  Int           getMVPIdx             ( RefPicList eRefPicList, UInt uiIdx)               { return m_apiMVPIdx[eRefPicList][uiIdx];     }
[56]606  Char*         getMVPIdx             ( RefPicList eRefPicList )                          { return m_apiMVPIdx[eRefPicList];            }
607
[2]608  Void          setMVPNum             ( RefPicList eRefPicList, UInt uiIdx, Int iMVPNum ) { m_apiMVPNum[eRefPicList][uiIdx] = iMVPNum;  }
609  Int           getMVPNum             ( RefPicList eRefPicList, UInt uiIdx )              { return m_apiMVPNum[eRefPicList][uiIdx];     }
[56]610  Char*         getMVPNum             ( RefPicList eRefPicList )                          { return m_apiMVPNum[eRefPicList];            }
[2]611 
612  Void          setMVPIdxSubParts     ( Int iMVPIdx, RefPicList eRefPicList, UInt uiAbsPartIdx, UInt uiPartIdx, UInt uiDepth );
613  Void          setMVPNumSubParts     ( Int iMVPNum, RefPicList eRefPicList, UInt uiAbsPartIdx, UInt uiPartIdx, UInt uiDepth );
614 
615  Void          clipMv                ( TComMv&     rcMv     );
616  Void          getMvPredLeft         ( TComMv&     rcMvPred )   { rcMvPred = m_cMvFieldA.getMv(); }
617  Void          getMvPredAbove        ( TComMv&     rcMvPred )   { rcMvPred = m_cMvFieldB.getMv(); }
618  Void          getMvPredAboveRight   ( TComMv&     rcMvPred )   { rcMvPred = m_cMvFieldC.getMv(); }
619 
620  Void          compressMV            ();
[115]621
[116]622#if OL_DEPTHLIMIT_A0044
623  Void        resetPartInfo     () {m_uiPartNum = 0;};
624  Void        incrementPartInfo () {m_uiPartNum ++;};
625  Void        updatePartInfo(UInt uiSymbol, UInt uiDepth) { m_uiPartInfo[m_uiPartNum][0] = uiSymbol; m_uiPartInfo[m_uiPartNum][1] = uiDepth;};
626  UInt*       readPartInfo()                              { return (UInt*)m_uiPartInfo;};
[118]627  Void        setPartDumpFlag(Bool flag)                  { m_dumpPartInfo = flag; };
628  Bool        getPartDumpFlag()                           { return m_dumpPartInfo; };
[115]629#endif
[2]630 
631  // -------------------------------------------------------------------------------------------------------------------
632  // utility functions for neighbouring information
633  // -------------------------------------------------------------------------------------------------------------------
634 
635  TComDataCU*   getCULeft                   () { return m_pcCULeft;       }
636  TComDataCU*   getCUAbove                  () { return m_pcCUAbove;      }
637  TComDataCU*   getCUAboveLeft              () { return m_pcCUAboveLeft;  }
638  TComDataCU*   getCUAboveRight             () { return m_pcCUAboveRight; }
639  TComDataCU*   getCUColocated              ( RefPicList eRefPicList ) { return m_apcCUColocated[eRefPicList]; }
[56]640
641
642  TComDataCU*   getPULeft                   ( UInt&  uiLPartUnitIdx , UInt uiCurrPartUnitIdx, Bool bEnforceSliceRestriction=true, Bool bEnforceEntropySliceRestriction=true
643                                            , Bool bEnforceTileRestriction=true 
644                                            );
645
646  TComDataCU*   getPUAbove                  ( UInt&  uiAPartUnitIdx , UInt uiCurrPartUnitIdx, Bool bEnforceSliceRestriction=true, Bool bEnforceEntropySliceRestriction=true, Bool MotionDataCompresssion = false
647                                            , Bool planarAtLCUBoundary = false 
648                                            , Bool bEnforceTileRestriction=true 
649                                            );
650
651  TComDataCU*   getPUAboveLeft              ( UInt&  uiALPartUnitIdx, UInt uiCurrPartUnitIdx, Bool bEnforceSliceRestriction=true, Bool bEnforceEntropySliceRestriction=true, Bool MotionDataCompresssion = false );
652  TComDataCU*   getPUAboveRight             ( UInt&  uiARPartUnitIdx, UInt uiCurrPartUnitIdx, Bool bEnforceSliceRestriction=true, Bool bEnforceEntropySliceRestriction=true, Bool MotionDataCompresssion = false );
[2]653  TComDataCU*   getPUBelowLeft              ( UInt& uiBLPartUnitIdx, UInt uiCurrPartUnitIdx, Bool bEnforceSliceRestriction=true, Bool bEnforceEntropySliceRestriction=true );
654
[56]655  TComDataCU*   getQpMinCuLeft              ( UInt&  uiLPartUnitIdx , UInt uiCurrAbsIdxInLCU, Bool bEnforceSliceRestriction=true, Bool bEnforceEntropySliceRestriction=true );
656#if H0204_QP_PREDICTION
657  TComDataCU*   getQpMinCuAbove             ( UInt&  aPartUnitIdx , UInt currAbsIdxInLCU, Bool enforceSliceRestriction=true, Bool enforceEntropySliceRestriction=true );
658#endif
659#if H0736_AVC_STYLE_QP_RANGE
660  Char          getRefQP                    ( UInt   uiCurrAbsIdxInLCU                       );
661#else
662  UChar         getRefQP                    ( UInt   uiCurrAbsIdxInLCU                       );
663#endif
664
[2]665  TComDataCU*   getPUAboveRightAdi          ( UInt&  uiARPartUnitIdx, UInt uiPuWidth, UInt uiCurrPartUnitIdx, UInt uiPartUnitOffset = 1, Bool bEnforceSliceRestriction=true, Bool bEnforceEntropySliceRestriction=true );
666  TComDataCU*   getPUBelowLeftAdi           ( UInt& uiBLPartUnitIdx, UInt uiPuHeight, UInt uiCurrPartUnitIdx, UInt uiPartUnitOffset = 1, Bool bEnforceSliceRestriction=true, Bool bEnforceEntropySliceRestriction=true );
667 
668  Void          deriveLeftRightTopIdx       ( PartSize eCUMode, UInt uiPartIdx, UInt& ruiPartIdxLT, UInt& ruiPartIdxRT );
669  Void          deriveLeftBottomIdx         ( PartSize eCUMode, UInt uiPartIdx, UInt& ruiPartIdxLB );
670 
671  Void          deriveLeftRightTopIdxAdi    ( UInt& ruiPartIdxLT, UInt& ruiPartIdxRT, UInt uiPartOffset, UInt uiPartDepth );
672  Void          deriveLeftBottomIdxAdi      ( UInt& ruiPartIdxLB, UInt  uiPartOffset, UInt uiPartDepth );
673 
674  Bool          hasEqualMotion              ( UInt uiAbsPartIdx, TComDataCU* pcCandCU, UInt uiCandAbsPartIdx );
[56]675#if SIMP_MRG_PRUN
676  Void          getInterMergeCandidates       ( UInt uiAbsPartIdx, UInt uiPUIdx, UInt uiDepth, TComMvField* pcMFieldNeighbours, UChar* puhInterDirNeighbours, Int& numValidMergeCand, Int mrgCandIdx = -1 );
677#else
678  Void          getInterMergeCandidates       ( UInt uiAbsPartIdx, UInt uiPUIdx, UInt uiDepth, TComMvField* pcMFieldNeighbours, UChar* puhInterDirNeighbours, Int& numValidMergeCand );
679#endif
[2]680  Void          deriveLeftRightTopIdxGeneral  ( PartSize eCUMode, UInt uiAbsPartIdx, UInt uiPartIdx, UInt& ruiPartIdxLT, UInt& ruiPartIdxRT );
681  Void          deriveLeftBottomIdxGeneral    ( PartSize eCUMode, UInt uiAbsPartIdx, UInt uiPartIdx, UInt& ruiPartIdxLB );
682 
683 
684  // -------------------------------------------------------------------------------------------------------------------
685  // member functions for modes
686  // -------------------------------------------------------------------------------------------------------------------
687 
688  Bool          isIntra   ( UInt uiPartIdx )  { return m_pePredMode[ uiPartIdx ] == MODE_INTRA; }
689  Bool          isSkipped ( UInt uiPartIdx );                                                     ///< SKIP (no residual)
690 
691  // -------------------------------------------------------------------------------------------------------------------
692  // member functions for symbol prediction (most probable / mode conversion)
693  // -------------------------------------------------------------------------------------------------------------------
694 
695  UInt          getIntraSizeIdx                 ( UInt uiAbsPartIdx                                       );
696  Void          convertTransIdx                 ( UInt uiAbsPartIdx, UInt uiTrIdx, UInt& ruiLumaTrMode, UInt& ruiChromaTrMode );
697 
[56]698  Void          getAllowedChromaDir             ( UInt uiAbsPartIdx, UInt* uiModeList );
699  Int           getIntraDirLumaPredictor        ( UInt uiAbsPartIdx, Int* uiIntraDirPred, Int* piMode = NULL );
[2]700 
701  // -------------------------------------------------------------------------------------------------------------------
702  // member functions for SBAC context
703  // -------------------------------------------------------------------------------------------------------------------
704 
705  UInt          getCtxSplitFlag                 ( UInt   uiAbsPartIdx, UInt uiDepth                   );
706  UInt          getCtxQtCbf                     ( UInt   uiAbsPartIdx, TextType eType, UInt uiTrDepth );
[56]707
[2]708  UInt          getCtxSkipFlag                  ( UInt   uiAbsPartIdx                                 );
[152]709#if LGE_ILLUCOMP_B0045
710  UInt          getCtxICFlag                    ( UInt   uiAbsPartIdx                                 );
711#endif
[2]712  UInt          getCtxInterDir                  ( UInt   uiAbsPartIdx                                 );
[56]713
714#if HHI_INTER_VIEW_RESIDUAL_PRED
715  UInt          getCtxResPredFlag               ( UInt   uiAbsPartIdx                                 );
716#endif
[2]717 
[56]718  UInt          getSliceStartCU         ( UInt pos )                  { return m_uiSliceStartCU[pos-m_uiAbsIdxInLCU];                                                                                          }
719  UInt          getEntropySliceStartCU  ( UInt pos )                  { return m_uiEntropySliceStartCU[pos-m_uiAbsIdxInLCU];                                                                                   }
720  UInt&         getTotalBins            ()                            { return m_uiTotalBins;                                                                                                  }
[100]721
722#if LGE_EDGE_INTRA
723  UInt          getCtxEdgeIntra ( UInt uiAbsPartIdx );
724#endif
725
[2]726  // -------------------------------------------------------------------------------------------------------------------
727  // member functions for RD cost storage
728  // -------------------------------------------------------------------------------------------------------------------
729 
730  Double&       getTotalCost()                  { return m_dTotalCost;        }
[56]731  UInt&         getTotalDistortion()            { return m_uiTotalDistortion; }
[2]732  UInt&         getTotalBits()                  { return m_uiTotalBits;       }
733  UInt&         getTotalNumPart()               { return m_uiNumPartition;    }
734
735  UInt          getCoefScanIdx(UInt uiAbsPartIdx, UInt uiWidth, Bool bIsLuma, Bool bIsIntra);
736
[56]737  Bool          useNonSquareTrans( UInt uiTrMode, Int absPartIdx );
738  Void          getNSQTSize(Int trMode, Int absPartIdx, Int &trWidth, Int &trHeight);
739  Bool          useNonSquarePU   ( UInt absPartIdx);
740  UInt          getInterTUSplitDirection ( Int width, Int height, Int trLastWidth, Int trLastHeight );
741  UInt          getNSAbsPartIdx  ( UInt log2TrafoSize, UInt absPartIdx, UInt absTUPartIdx, UInt innerQuadIdx, UInt trMode );
742  UInt          getNSAddrChroma   ( UInt uiLog2TrSizeC, UInt uiTrModeC, UInt uiQuadrant, UInt absTUPartIdx );
743 
744// -------------------------------------------------------------------------------------------------------------------
745  // member functions for depth model modes
746  // -------------------------------------------------------------------------------------------------------------------
747#if HHI_DMM_WEDGE_INTRA
748  UInt* getWedgeFullTabIdx                ()                      { return m_puiWedgeFullTabIdx;              }
749  UInt  getWedgeFullTabIdx                ( UInt uiIdx )          { return m_puiWedgeFullTabIdx[uiIdx];       }
750  Void  setWedgeFullTabIdx                ( UInt uiIdx, UInt uh ) { m_puiWedgeFullTabIdx[uiIdx] = uh;         }
751  Void  setWedgeFullTabIdxSubParts        ( UInt uiTIdx, UInt uiAbsPartIdx, UInt uiDepth );
752  Int*  getWedgeFullDeltaDC1              ()                      { return m_piWedgeFullDeltaDC1;             }
753  Int   getWedgeFullDeltaDC1              ( UInt uiIdx )          { return m_piWedgeFullDeltaDC1[uiIdx];      }
754  Void  setWedgeFullDeltaDC1              ( UInt uiIdx, Int i )   { m_piWedgeFullDeltaDC1[uiIdx] = i;         }
755  Void  setWedgeFullDeltaDC1SubParts      ( Int iDC1, UInt uiAbsPartIdx, UInt uiDepth );
756  Int*  getWedgeFullDeltaDC2              ()                      { return m_piWedgeFullDeltaDC2;             }
757  Int   getWedgeFullDeltaDC2              ( UInt uiIdx )          { return m_piWedgeFullDeltaDC2[uiIdx];      }
758  Void  setWedgeFullDeltaDC2              ( UInt uiIdx, Int i )   { m_piWedgeFullDeltaDC2[uiIdx] = i;         }
759  Void  setWedgeFullDeltaDC2SubParts      ( Int iDC2, UInt uiAbsPartIdx, UInt uiDepth );
760
761  UInt* getWedgePredDirTabIdx             ()                      { return m_puiWedgePredDirTabIdx;           }
762  UInt  getWedgePredDirTabIdx             ( UInt uiIdx )          { return m_puiWedgePredDirTabIdx[uiIdx];    }
763  Void  setWedgePredDirTabIdx             ( UInt uiIdx, UInt uh ) { m_puiWedgePredDirTabIdx[uiIdx] = uh;      }
764  Void  setWedgePredDirTabIdxSubParts     ( UInt uiTIdx, UInt uiAbsPartIdx, UInt uiDepth );
765  Int*  getWedgePredDirDeltaDC1           ()                      { return m_piWedgePredDirDeltaDC1;          }
766  Int   getWedgePredDirDeltaDC1           ( UInt uiIdx )          { return m_piWedgePredDirDeltaDC1[uiIdx];   }
767  Void  setWedgePredDirDeltaDC1           ( UInt uiIdx, Int i )   { m_piWedgePredDirDeltaDC1[uiIdx] = i;      }
768  Void  setWedgePredDirDeltaDC1SubParts   ( Int iDC1, UInt uiAbsPartIdx, UInt uiDepth );
769  Int*  getWedgePredDirDeltaDC2           ()                      { return m_piWedgePredDirDeltaDC2;          }
770  Int   getWedgePredDirDeltaDC2           ( UInt uiIdx )          { return m_piWedgePredDirDeltaDC2[uiIdx];   }
771  Void  setWedgePredDirDeltaDC2           ( UInt uiIdx, Int i )   { m_piWedgePredDirDeltaDC2[uiIdx] = i;      }
772  Void  setWedgePredDirDeltaDC2SubParts   ( Int iDC2, UInt uiAbsPartIdx, UInt uiDepth );
773  Int*  getWedgePredDirDeltaEnd           ()                      { return m_piWedgePredDirDeltaEnd;          }
774  Int   getWedgePredDirDeltaEnd           ( UInt uiIdx )          { return m_piWedgePredDirDeltaEnd[uiIdx];   }
775  Void  setWedgePredDirDeltaEnd           ( UInt uiIdx, Int iD )  { m_piWedgePredDirDeltaEnd[uiIdx] = iD;     }
776  Void  setWedgePredDirDeltaEndSubParts   ( Int iDelta, UInt uiAbsPartIdx, UInt uiDepth );
777#endif
778#if HHI_DMM_PRED_TEX
779  UInt* getWedgePredTexTabIdx             ()                      { return m_puiWedgePredTexTabIdx;           }
780  UInt  getWedgePredTexTabIdx             ( UInt uiIdx )          { return m_puiWedgePredTexTabIdx[uiIdx];    }
781  Void  setWedgePredTexTabIdx             ( UInt uiIdx, UInt uh ) { m_puiWedgePredTexTabIdx[uiIdx] = uh;      }
782  Void  setWedgePredTexTabIdxSubParts     ( UInt uiTIdx, UInt uiAbsPartIdx, UInt uiDepth );
783  Int*  getWedgePredTexDeltaDC1           ()                      { return m_piWedgePredTexDeltaDC1;          }
784  Int   getWedgePredTexDeltaDC1           ( UInt uiIdx )          { return m_piWedgePredTexDeltaDC1[uiIdx];   }
785  Void  setWedgePredTexDeltaDC1           ( UInt uiIdx, Int i )   { m_piWedgePredTexDeltaDC1[uiIdx] = i;      }
786  Void  setWedgePredTexDeltaDC1SubParts   ( Int iDC1, UInt uiAbsPartIdx, UInt uiDepth );
787  Int*  getWedgePredTexDeltaDC2           ()                      { return m_piWedgePredTexDeltaDC2;          }
788  Int   getWedgePredTexDeltaDC2           ( UInt uiIdx )          { return m_piWedgePredTexDeltaDC2[uiIdx];   }
789  Void  setWedgePredTexDeltaDC2           ( UInt uiIdx, Int i )   { m_piWedgePredTexDeltaDC2[uiIdx] = i;      }
790  Void  setWedgePredTexDeltaDC2SubParts   ( Int iDC2, UInt uiAbsPartIdx, UInt uiDepth );
791
792  Int*  getContourPredTexDeltaDC1         ()                      { return m_piContourPredTexDeltaDC1;        }
793  Int   getContourPredTexDeltaDC1         ( UInt uiIdx )          { return m_piContourPredTexDeltaDC1[uiIdx]; }
794  Void  setContourPredTexDeltaDC1         ( UInt uiIdx, Int i )   { m_piContourPredTexDeltaDC1[uiIdx] = i;    }
795  Void  setContourPredTexDeltaDC1SubParts ( Int iDC1, UInt uiAbsPartIdx, UInt uiDepth );
796  Int*  getContourPredTexDeltaDC2         ()                      { return m_piContourPredTexDeltaDC2;        }
797  Int   getContourPredTexDeltaDC2         ( UInt uiIdx )          { return m_piContourPredTexDeltaDC2[uiIdx]; }
798  Void  setContourPredTexDeltaDC2         ( UInt uiIdx, Int i )   { m_piContourPredTexDeltaDC2[uiIdx] = i;    }
799  Void  setContourPredTexDeltaDC2SubParts ( Int iDC2, UInt uiAbsPartIdx, UInt uiDepth );
800#endif
[100]801
802#if LGE_EDGE_INTRA
803  UChar*        getEdgeCode( UInt uiIdx )                 { return &m_pucEdgeCode[uiIdx * LGE_EDGE_INTRA_MAX_EDGE_NUM_PER_4x4]; }
804  UChar*        getEdgeNumber( )                          { return m_pucEdgeNumber;           }
805  UChar         getEdgeNumber( UInt uiIdx )               { return m_pucEdgeNumber[uiIdx];    }
806  Void          setEdgeNumber( UInt uiIdx, UChar val )    { m_pucEdgeNumber[uiIdx] = val;     }
807  UChar*        getEdgeStartPos( )                        { return m_pucEdgeStartPos;         }
808  UChar         getEdgeStartPos( UInt uiIdx )             { return m_pucEdgeStartPos[uiIdx];  }
809  Void          setEdgeStartPos( UInt uiIdx, UChar val )  { m_pucEdgeStartPos[uiIdx] = val;   }
810  Bool*         getEdgeLeftFirst( )                       { return m_pbEdgeLeftFirst;         }
811  Bool          getEdgeLeftFirst( UInt uiIdx )            { return m_pbEdgeLeftFirst[uiIdx];  }
812  Void          setEdgeLeftFirst( UInt uiIdx, Bool val )  { m_pbEdgeLeftFirst[uiIdx] = val;   }
813  Bool*         getEdgePartition( UInt uiIdx )              { return &m_pbEdgePartition[uiIdx * 16]; }
814  Void          reconPartition( UInt uiAbsPartIdx, UInt uiDepth, Bool bLeft, UChar ucStartPos, UChar ucNumEdge, UChar* pucEdgeCode, Bool* pbRegion );
815
816#if LGE_EDGE_INTRA_DELTA_DC
817  Int*          getEdgeDeltaDC0( )                          { return m_piEdgeDeltaDC0; }
818  Int*          getEdgeDeltaDC1( )                          { return m_piEdgeDeltaDC1; }
819  Int           getEdgeDeltaDC0( UInt uiIdx )               { return m_piEdgeDeltaDC0[uiIdx]; }
820  Int           getEdgeDeltaDC1( UInt uiIdx )               { return m_piEdgeDeltaDC1[uiIdx]; }
821  Void          setEdgeDeltaDC0( UInt uiIdx, Int val )      { m_piEdgeDeltaDC0[uiIdx] = val;  }
822  Void          setEdgeDeltaDC1( UInt uiIdx, Int val )      { m_piEdgeDeltaDC1[uiIdx] = val;  }
823#endif
824#endif
[2]825};
826
[56]827namespace RasterAddress
828{
829  /** Check whether 2 addresses point to the same column
830   * \param addrA          First address in raster scan order
831   * \param addrB          Second address in raters scan order
832   * \param numUnitsPerRow Number of units in a row
833   * \return Result of test
834   */
835  static inline Bool isEqualCol( Int addrA, Int addrB, Int numUnitsPerRow )
836  {
837    // addrA % numUnitsPerRow == addrB % numUnitsPerRow
838    return (( addrA ^ addrB ) &  ( numUnitsPerRow - 1 ) ) == 0;
839  }
840 
841  /** Check whether 2 addresses point to the same row
842   * \param addrA          First address in raster scan order
843   * \param addrB          Second address in raters scan order
844   * \param numUnitsPerRow Number of units in a row
845   * \return Result of test
846   */
847  static inline Bool isEqualRow( Int addrA, Int addrB, Int numUnitsPerRow )
848  {
849    // addrA / numUnitsPerRow == addrB / numUnitsPerRow
850    return (( addrA ^ addrB ) &~ ( numUnitsPerRow - 1 ) ) == 0;
851  }
852 
853  /** Check whether 2 addresses point to the same row or column
854   * \param addrA          First address in raster scan order
855   * \param addrB          Second address in raters scan order
856   * \param numUnitsPerRow Number of units in a row
857   * \return Result of test
858   */
859  static inline Bool isEqualRowOrCol( Int addrA, Int addrB, Int numUnitsPerRow )
860  {
861    return isEqualCol( addrA, addrB, numUnitsPerRow ) | isEqualRow( addrA, addrB, numUnitsPerRow );
862  }
863 
864  /** Check whether one address points to the first column
865   * \param addr           Address in raster scan order
866   * \param numUnitsPerRow Number of units in a row
867   * \return Result of test
868   */
869  static inline Bool isZeroCol( Int addr, Int numUnitsPerRow )
870  {
871    // addr % numUnitsPerRow == 0
872    return ( addr & ( numUnitsPerRow - 1 ) ) == 0;
873  }
874 
875  /** Check whether one address points to the first row
876   * \param addr           Address in raster scan order
877   * \param numUnitsPerRow Number of units in a row
878   * \return Result of test
879   */
880  static inline Bool isZeroRow( Int addr, Int numUnitsPerRow )
881  {
882    // addr / numUnitsPerRow == 0
883    return ( addr &~ ( numUnitsPerRow - 1 ) ) == 0;
884  }
885 
886  /** Check whether one address points to a column whose index is smaller than a given value
887   * \param addr           Address in raster scan order
888   * \param val            Given column index value
889   * \param numUnitsPerRow Number of units in a row
890   * \return Result of test
891   */
892  static inline Bool lessThanCol( Int addr, Int val, Int numUnitsPerRow )
893  {
894    // addr % numUnitsPerRow < val
895    return ( addr & ( numUnitsPerRow - 1 ) ) < val;
896  }
897 
898  /** Check whether one address points to a row whose index is smaller than a given value
899   * \param addr           Address in raster scan order
900   * \param val            Given row index value
901   * \param numUnitsPerRow Number of units in a row
902   * \return Result of test
903   */
904  static inline Bool lessThanRow( Int addr, Int val, Int numUnitsPerRow )
905  {
906    // addr / numUnitsPerRow < val
907    return addr < val * numUnitsPerRow;
908  }
909};
910
911//! \}
912
[2]913#endif
Note: See TracBrowser for help on using the repository browser.