source: 3DVCSoftware/branches/HTM-6.2-dev1-LG/source/Lib/TLibCommon/TComDataCU.h @ 388

Last change on this file since 388 was 355, checked in by zhang, 12 years ago

JCT3V-D0191 (BVSP clean-ups)

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