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

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