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

Last change on this file since 251 was 251, checked in by lg, 12 years ago

Integration of JCT3V-C0044

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