source: 3DVCSoftware/branches/HTM-6.2-dev2-MERL/source/Lib/TLibCommon/TComDataCU.h @ 412

Last change on this file since 412 was 412, checked in by mitsubishi-htm, 11 years ago

-D0166 part 1, set refView selection for NBDV.

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