source: 3DVCSoftware/branches/HTM-11.2-dev3-Sharp/source/Lib/TLibCommon/TComDataCU.h @ 1001

Last change on this file since 1001 was 1001, checked in by sharpjp-htm, 10 years ago

LUT size reduction for DMM1 proposed in JCTVC-I0110 was integrated with a macro: SHARP_DMM1_I0110.

  • Property svn:eol-style set to native
File size: 47.8 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-2014, 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 H_3D_ARP
52#include "TComYuv.h"
53#endif
54
55#include <algorithm>
56#include <vector>
57
58//! \ingroup TLibCommon
59//! \{
60
61
62#if H_3D_DBBP
63typedef struct _DBBPTmpData
64{
65  TComMv      acMvd[2][2];          // for two segments and two lists
66  TComMvField acMvField[2][2];      // for two segments and two lists
67  Int         aiMvpNum[2][2];       // for two segments and two lists
68  Int         aiMvpIdx[2][2];       // for two segments and two lists
69  UChar       auhInterDir[2];       // for two segments
70  Bool        abMergeFlag[2];       // for two segments
71  UChar       auhMergeIndex[2];     // for two segments
72  PartSize    eVirtualPartSize;
73  UInt        uiVirtualPartIndex;
74} DBBPTmpData;
75#endif
76
77// ====================================================================================================================
78// Class definition
79// ====================================================================================================================
80
81/// CU data structure class
82class TComDataCU
83{
84private:
85 
86  // -------------------------------------------------------------------------------------------------------------------
87  // class pointers
88  // -------------------------------------------------------------------------------------------------------------------
89 
90  TComPic*      m_pcPic;              ///< picture class pointer
91  TComSlice*    m_pcSlice;            ///< slice header pointer
92  TComPattern*  m_pcPattern;          ///< neighbour access class pointer
93 
94  // -------------------------------------------------------------------------------------------------------------------
95  // CU description
96  // -------------------------------------------------------------------------------------------------------------------
97 
98  UInt          m_uiCUAddr;           ///< CU address in a slice
99  UInt          m_uiAbsIdxInLCU;      ///< absolute address in a CU. It's Z scan order
100  UInt          m_uiCUPelX;           ///< CU position in a pixel (X)
101  UInt          m_uiCUPelY;           ///< CU position in a pixel (Y)
102  UInt          m_uiNumPartition;     ///< total number of minimum partitions in a CU
103  UChar*        m_puhWidth;           ///< array of widths
104  UChar*        m_puhHeight;          ///< array of heights
105  UChar*        m_puhDepth;           ///< array of depths
106  Int           m_unitSize;           ///< size of a "minimum partition"
107 
108  // -------------------------------------------------------------------------------------------------------------------
109  // CU data
110  // -------------------------------------------------------------------------------------------------------------------
111  Bool*         m_skipFlag;           ///< array of skip flags
112#if MTK_SINGLE_DEPTH_MODE_I0095
113  Bool*         m_singleDepthFlag;           ///< array of single depth flags
114  Pel*          m_apSingleDepthValue;
115#endif
116  Char*         m_pePartSize;         ///< array of partition sizes
117  Char*         m_pePredMode;         ///< array of prediction modes
118  Bool*         m_CUTransquantBypass;   ///< array of cu_transquant_bypass flags
119  Char*         m_phQP;               ///< array of QP values
120  UChar*        m_puhTrIdx;           ///< array of transform indices
121  UChar*        m_puhTransformSkip[3];///< array of transform skipping flags
122  UChar*        m_puhCbf[3];          ///< array of coded block flags (CBF)
123  TComCUMvField m_acCUMvField[2];     ///< array of motion vectors
124  TCoeff*       m_pcTrCoeffY;         ///< transformed coefficient buffer (Y)
125  TCoeff*       m_pcTrCoeffCb;        ///< transformed coefficient buffer (Cb)
126  TCoeff*       m_pcTrCoeffCr;        ///< transformed coefficient buffer (Cr)
127#if ADAPTIVE_QP_SELECTION
128  Int*          m_pcArlCoeffY;        ///< ARL coefficient buffer (Y)
129  Int*          m_pcArlCoeffCb;       ///< ARL coefficient buffer (Cb)
130  Int*          m_pcArlCoeffCr;       ///< ARL coefficient buffer (Cr)
131  Bool          m_ArlCoeffIsAliasedAllocation; ///< ARL coefficient buffer is an alias of the global buffer and must not be free()'d
132
133  static Int*   m_pcGlbArlCoeffY;     ///< ARL coefficient buffer (Y)
134  static Int*   m_pcGlbArlCoeffCb;    ///< ARL coefficient buffer (Cb)
135  static Int*   m_pcGlbArlCoeffCr;    ///< ARL coefficient buffer (Cr)
136#endif
137 
138  Pel*          m_pcIPCMSampleY;      ///< PCM sample buffer (Y)
139  Pel*          m_pcIPCMSampleCb;     ///< PCM sample buffer (Cb)
140  Pel*          m_pcIPCMSampleCr;     ///< PCM sample buffer (Cr)
141
142  // -------------------------------------------------------------------------------------------------------------------
143  // neighbour access variables
144  // -------------------------------------------------------------------------------------------------------------------
145 
146  TComDataCU*   m_pcCUAboveLeft;      ///< pointer of above-left CU
147  TComDataCU*   m_pcCUAboveRight;     ///< pointer of above-right CU
148  TComDataCU*   m_pcCUAbove;          ///< pointer of above CU
149  TComDataCU*   m_pcCULeft;           ///< pointer of left CU
150  TComDataCU*   m_apcCUColocated[2];  ///< pointer of temporally colocated CU's for both directions
151  TComMvField   m_cMvFieldA;          ///< motion vector of position A
152  TComMvField   m_cMvFieldB;          ///< motion vector of position B
153  TComMvField   m_cMvFieldC;          ///< motion vector of position C
154  TComMv        m_cMvPred;            ///< motion vector predictor
155 
156  // -------------------------------------------------------------------------------------------------------------------
157  // coding tool information
158  // -------------------------------------------------------------------------------------------------------------------
159 
160  Bool*         m_pbMergeFlag;        ///< array of merge flags
161  UChar*        m_puhMergeIndex;      ///< array of merge candidate indices
162#if AMP_MRG
163  Bool          m_bIsMergeAMP;
164#endif
165  UChar*        m_puhLumaIntraDir;    ///< array of intra directions (luma)
166  UChar*        m_puhChromaIntraDir;  ///< array of intra directions (chroma)
167  UChar*        m_puhInterDir;        ///< array of inter directions
168  Char*         m_apiMVPIdx[2];       ///< array of motion vector predictor candidates
169  Char*         m_apiMVPNum[2];       ///< array of number of possible motion vectors predictors
170  Bool*         m_pbIPCMFlag;         ///< array of intra_pcm flags
171#if H_3D_NBDV
172  DisInfo*      m_pDvInfo;
173#endif
174#if H_3D_VSP
175  Char*         m_piVSPFlag;          ///< array of VSP flags to indicate whehter a block uses VSP or not
176                                      ///< 0: non-VSP; 1: VSP
177#endif
178#if H_3D_SPIVMP
179  Bool*         m_pbSPIVMPFlag;       ///< array of sub-PU IVMP flags to indicate whehter a block uses sub-PU IVMP
180                                      ///< 0: non-SPIVMP; 1: SPIVMP
181#endif
182#if H_3D_ARP
183  UChar*        m_puhARPW;
184#endif
185#if H_3D_IC
186  Bool*         m_pbICFlag;           ///< array of IC flags
187#endif
188#if H_3D_DIM
189  Pel*          m_dimDeltaDC[DIM_NUM_TYPE][2];
190#if H_3D_DIM_DMM
191  UInt*         m_dmmWedgeTabIdx[DMM_NUM_TYPE]; 
192#endif
193#if H_3D_DIM_SDC
194  Bool*         m_pbSDCFlag;
195  Pel*          m_apSegmentDCOffset[2];
196  Pel          m_apDmmPredictor[2];
197#endif
198#endif
199#if H_3D_DBBP
200  Bool*         m_pbDBBPFlag;        ///< array of DBBP flags
201  DBBPTmpData   m_sDBBPTmpData;
202#endif
203#if H_3D
204  Bool          m_bAvailableFlagA1;    ///< A1 available flag
205  Bool          m_bAvailableFlagB1;    ///< B1 available flag
206  Bool          m_bAvailableFlagB0;    ///< B0 available flag
207  Bool          m_bAvailableFlagA0;    ///< A0 available flag
208  Bool          m_bAvailableFlagB2;    ///< B2 available flag
209#endif
210  // -------------------------------------------------------------------------------------------------------------------
211  // misc. variables
212  // -------------------------------------------------------------------------------------------------------------------
213 
214  Bool          m_bDecSubCu;          ///< indicates decoder-mode
215  Double        m_dTotalCost;         ///< sum of partition RD costs
216#if H_3D_VSO
217  Dist          m_uiTotalDistortion;  ///< sum of partition distortion
218#else
219  UInt          m_uiTotalDistortion;  ///< sum of partition distortion
220#endif
221  UInt          m_uiTotalBits;        ///< sum of partition bits
222  UInt          m_uiTotalBins;       ///< sum of partition bins
223  UInt*         m_sliceStartCU;    ///< Start CU address of current slice
224  UInt*         m_sliceSegmentStartCU; ///< Start CU address of current slice
225  Char          m_codedQP;
226#if H_3D
227  DisInfo       m_cDefaultDisInfo;    ///< Default disparity information for initializing
228#endif
229
230#if H_3D_DDD
231  UChar*        m_pucDisparityDerivedDepth;
232  Bool*         m_pbUseDDD;
233  Int           m_iUseDDDCandIdx;
234  UChar         m_ucDDTmpDepth;
235#endif
236
237#if H_3D_IV_MERGE
238  TComMotionCand  m_mergCands[MRG_IVSHIFT+1];
239  Int           m_baseListidc;
240#endif
241
242protected:
243 
244  /// add possible motion vector predictor candidates
245  Bool          xAddMVPCand           ( AMVPInfo* pInfo, RefPicList eRefPicList, Int iRefIdx, UInt uiPartUnitIdx, MVP_DIR eDir );
246  Bool          xAddMVPCandOrder      ( AMVPInfo* pInfo, RefPicList eRefPicList, Int iRefIdx, UInt uiPartUnitIdx, MVP_DIR eDir );
247#if H_3D_VSP
248  Bool          xAddVspCand( Int mrgCandIdx, DisInfo* pDInfo, Int& iCount);
249#endif
250#if H_3D_IV_MERGE
251  Bool          xAddIvMRGCand( Int mrgCandIdx, Int& iCount, Int*   ivCandDir, TComMv* ivCandMv, Int* ivCandRefIdx ); 
252  Bool          xGetPosFirstAvailDmvCand( Int iCount, Int& iFirDispCand );
253#endif
254
255  Void          deriveRightBottomIdx        ( UInt uiPartIdx, UInt& ruiPartIdxRB );
256  Bool          xGetColMVP( RefPicList eRefPicList, Int uiCUAddr, Int uiPartUnitIdx, TComMv& rcMv, Int& riRefIdx
257#if H_3D_TMVP
258  ,
259  Bool bMRG = true
260#endif
261  );
262 
263  /// compute required bits to encode MVD (used in AMVP)
264  UInt          xGetMvdBits           ( TComMv cMvd );
265  UInt          xGetComponentBits     ( Int iVal );
266 
267  /// compute scaling factor from POC difference
268#if !H_3D_ARP
269  Int           xGetDistScaleFactor   ( Int iCurrPOC, Int iCurrRefPOC, Int iColPOC, Int iColRefPOC );
270#endif
271
272  Void xDeriveCenterIdx( UInt uiPartIdx, UInt& ruiPartIdxCenter );
273
274#if H_3D_VSP
275  Void xSetMvFieldForVSP  ( TComDataCU *cu, TComPicYuv *picRefDepth, TComMv *dv, UInt partAddr, Int width, Int height, Int *shiftLUT, RefPicList refPicList, Int refIdx, Bool isDepth, Int &vspSize );
276#endif
277
278public:
279  TComDataCU();
280  virtual ~TComDataCU();
281 
282  // -------------------------------------------------------------------------------------------------------------------
283  // create / destroy / initialize / copy
284  // -------------------------------------------------------------------------------------------------------------------
285#if H_3D_ARP
286  Int           xGetDistScaleFactor   ( Int iCurrPOC, Int iCurrRefPOC, Int iColPOC, Int iColRefPOC );
287#endif
288  Void          create                ( UInt uiNumPartition, UInt uiWidth, UInt uiHeight, Bool bDecSubCu, Int unitSize
289#if ADAPTIVE_QP_SELECTION
290    , Bool bGlobalRMARLBuffer = false
291#endif 
292    );
293  Void          destroy               ();
294 
295  Void          initCU                ( TComPic* pcPic, UInt uiCUAddr );
296  Void          initEstData           ( UInt uiDepth, Int qp, Bool bTransquantBypass );
297  Void          initSubCU             ( TComDataCU* pcCU, UInt uiPartUnitIdx, UInt uiDepth, Int qp );
298  Void          setOutsideCUPart      ( UInt uiAbsPartIdx, UInt uiDepth );
299#if H_3D_NBDV
300  Void          copyDVInfoFrom (TComDataCU* pcCU, UInt uiAbsPartIdx);
301#endif
302  Void          copySubCU             ( TComDataCU* pcCU, UInt uiPartUnitIdx, UInt uiDepth );
303  Void          copyInterPredInfoFrom ( TComDataCU* pcCU, UInt uiAbsPartIdx, RefPicList eRefPicList
304#if H_3D_NBDV
305  , Bool bNBDV = false
306#endif
307  );
308  Void          copyPartFrom          ( TComDataCU* pcCU, UInt uiPartUnitIdx, UInt uiDepth );
309 
310  Void          copyToPic             ( UChar uiDepth );
311  Void          copyToPic             ( UChar uiDepth, UInt uiPartIdx, UInt uiPartDepth );
312 
313  // -------------------------------------------------------------------------------------------------------------------
314  // member functions for CU description
315  // -------------------------------------------------------------------------------------------------------------------
316 
317  TComPic*      getPic                ()                        { return m_pcPic;           }
318  TComSlice*    getSlice              ()                        { return m_pcSlice;         }
319  UInt&         getAddr               ()                        { return m_uiCUAddr;        }
320  UInt&         getZorderIdxInCU      ()                        { return m_uiAbsIdxInLCU; }
321  UInt          getSCUAddr            ();
322  UInt          getCUPelX             ()                        { return m_uiCUPelX;        }
323  UInt          getCUPelY             ()                        { return m_uiCUPelY;        }
324  TComPattern*  getPattern            ()                        { return m_pcPattern;       }
325 
326  UChar*        getDepth              ()                        { return m_puhDepth;        }
327  UChar         getDepth              ( UInt uiIdx )            { return m_puhDepth[uiIdx]; }
328  Void          setDepth              ( UInt uiIdx, UChar  uh ) { m_puhDepth[uiIdx] = uh;   }
329 
330  Void          setDepthSubParts      ( UInt uiDepth, UInt uiAbsPartIdx );
331#if H_3D
332  Void          getPosInPic           ( UInt uiAbsPartIndex, Int& riPosX, Int& riPosY );
333#endif
334 
335  // -------------------------------------------------------------------------------------------------------------------
336  // member functions for CU data
337  // -------------------------------------------------------------------------------------------------------------------
338 
339  Char*         getPartitionSize      ()                        { return m_pePartSize;        }
340  PartSize      getPartitionSize      ( UInt uiIdx )            { return static_cast<PartSize>( m_pePartSize[uiIdx] ); }
341  Void          setPartitionSize      ( UInt uiIdx, PartSize uh){ m_pePartSize[uiIdx] = uh;   }
342  Void          setPartSizeSubParts   ( PartSize eMode, UInt uiAbsPartIdx, UInt uiDepth );
343  Void          setCUTransquantBypassSubParts( Bool flag, UInt uiAbsPartIdx, UInt uiDepth );
344 
345#if H_3D_DBBP
346  Pel*          getVirtualDepthBlock(UInt uiAbsPartIdx, UInt uiWidth, UInt uiHeight, UInt& uiDepthStride);
347#endif
348 
349  Bool*        getSkipFlag            ()                        { return m_skipFlag;          }
350  Bool         getSkipFlag            (UInt idx)                { return m_skipFlag[idx];     }
351  Void         setSkipFlag           ( UInt idx, Bool skip)     { m_skipFlag[idx] = skip;   }
352  Void         setSkipFlagSubParts   ( Bool skip, UInt absPartIdx, UInt depth );
353#if MTK_SINGLE_DEPTH_MODE_I0095
354  Bool*        getSingleDepthFlag            ()                        { return m_singleDepthFlag;          }
355  Bool         getSingleDepthFlag            (UInt idx)                { return m_singleDepthFlag[idx];     }
356  Void         setSingleDepthFlag           ( UInt idx, Bool singleDepth)     { m_singleDepthFlag[idx] = singleDepth;   }
357  Void         setSingleDepthFlagSubParts   ( Bool singleDepth, UInt absPartIdx, UInt depth );
358
359  Pel*         getSingleDepthValue( ) { return m_apSingleDepthValue; }
360  Pel          getSingleDepthValue            (UInt idx)                { return m_apSingleDepthValue[idx];     }
361  Void         setSingleDepthValue           ( UInt idx, Pel pDepthValue)     { m_apSingleDepthValue[idx] = pDepthValue;   }
362  Void         setSingleDepthValueSubParts   (Pel singleDepthValue, UInt uiAbsPartIdx, UInt uiPUIdx, UInt uiDepth );
363#endif 
364  Char*         getPredictionMode     ()                        { return m_pePredMode;        }
365  PredMode      getPredictionMode     ( UInt uiIdx )            { return static_cast<PredMode>( m_pePredMode[uiIdx] ); }
366  Bool*         getCUTransquantBypass ()                        { return m_CUTransquantBypass;        }
367  Bool          getCUTransquantBypass( UInt uiIdx )             { return m_CUTransquantBypass[uiIdx]; }
368  Void          setPredictionMode     ( UInt uiIdx, PredMode uh){ m_pePredMode[uiIdx] = uh;   }
369  Void          setPredModeSubParts   ( PredMode eMode, UInt uiAbsPartIdx, UInt uiDepth );
370 
371#if H_3D_DBBP
372  Bool*         getDBBPFlag           ()                        { return m_pbDBBPFlag;               }
373  Bool          getDBBPFlag           ( UInt uiIdx )            { return m_pbDBBPFlag[uiIdx];        }
374  Void          setDBBPFlag           ( UInt uiIdx, Bool b )    { m_pbDBBPFlag[uiIdx] = b;           }
375  Void          setDBBPFlagSubParts   ( Bool bDBBPFlag, UInt uiAbsPartIdx, UInt uiPartIdx, UInt uiDepth );
376  DBBPTmpData*  getDBBPTmpData        () { return &m_sDBBPTmpData; }
377#endif
378 
379  UChar*        getWidth              ()                        { return m_puhWidth;          }
380  UChar         getWidth              ( UInt uiIdx )            { return m_puhWidth[uiIdx];   }
381  Void          setWidth              ( UInt uiIdx, UChar  uh ) { m_puhWidth[uiIdx] = uh;     }
382 
383  UChar*        getHeight             ()                        { return m_puhHeight;         }
384  UChar         getHeight             ( UInt uiIdx )            { return m_puhHeight[uiIdx];  }
385  Void          setHeight             ( UInt uiIdx, UChar  uh ) { m_puhHeight[uiIdx] = uh;    }
386 
387  Void          setSizeSubParts       ( UInt uiWidth, UInt uiHeight, UInt uiAbsPartIdx, UInt uiDepth );
388 
389  Char*         getQP                 ()                        { return m_phQP;              }
390  Char          getQP                 ( UInt uiIdx )            { return m_phQP[uiIdx];       }
391  Void          setQP                 ( UInt uiIdx, Char value ){ m_phQP[uiIdx] =  value;     }
392  Void          setQPSubParts         ( Int qp,   UInt uiAbsPartIdx, UInt uiDepth );
393  Int           getLastValidPartIdx   ( Int iAbsPartIdx );
394  Char          getLastCodedQP        ( UInt uiAbsPartIdx );
395  Void          setQPSubCUs           ( Int qp, TComDataCU* pcCU, UInt absPartIdx, UInt depth, Bool &foundNonZeroCbf );
396  Void          setCodedQP            ( Char qp )               { m_codedQP = qp;             }
397  Char          getCodedQP            ()                        { return m_codedQP;           }
398
399  Bool          isLosslessCoded(UInt absPartIdx);
400 
401  UChar*        getTransformIdx       ()                        { return m_puhTrIdx;          }
402  UChar         getTransformIdx       ( UInt uiIdx )            { return m_puhTrIdx[uiIdx];   }
403  Void          setTrIdxSubParts      ( UInt uiTrIdx, UInt uiAbsPartIdx, UInt uiDepth );
404
405  UChar*        getTransformSkip      ( TextType eType)    { return m_puhTransformSkip[g_aucConvertTxtTypeToIdx[eType]];}
406  UChar         getTransformSkip      ( UInt uiIdx,TextType eType)    { return m_puhTransformSkip[g_aucConvertTxtTypeToIdx[eType]][uiIdx];}
407  Void          setTransformSkipSubParts  ( UInt useTransformSkip, TextType eType, UInt uiAbsPartIdx, UInt uiDepth); 
408  Void          setTransformSkipSubParts  ( UInt useTransformSkipY, UInt useTransformSkipU, UInt useTransformSkipV, UInt uiAbsPartIdx, UInt uiDepth );
409
410  UInt          getQuadtreeTULog2MinSizeInCU( UInt absPartIdx );
411 
412  TComCUMvField* getCUMvField         ( RefPicList e )          { return  &m_acCUMvField[e];  }
413 
414  TCoeff*&      getCoeffY             ()                        { return m_pcTrCoeffY;        }
415  TCoeff*&      getCoeffCb            ()                        { return m_pcTrCoeffCb;       }
416  TCoeff*&      getCoeffCr            ()                        { return m_pcTrCoeffCr;       }
417#if ADAPTIVE_QP_SELECTION
418  Int*&         getArlCoeffY          ()                        { return m_pcArlCoeffY;       }
419  Int*&         getArlCoeffCb         ()                        { return m_pcArlCoeffCb;      }
420  Int*&         getArlCoeffCr         ()                        { return m_pcArlCoeffCr;      }
421#endif
422 
423  Pel*&         getPCMSampleY         ()                        { return m_pcIPCMSampleY;     }
424  Pel*&         getPCMSampleCb        ()                        { return m_pcIPCMSampleCb;    }
425  Pel*&         getPCMSampleCr        ()                        { return m_pcIPCMSampleCr;    }
426
427  UChar         getCbf    ( UInt uiIdx, TextType eType )                  { return m_puhCbf[g_aucConvertTxtTypeToIdx[eType]][uiIdx];  }
428  UChar*        getCbf    ( TextType eType )                              { return m_puhCbf[g_aucConvertTxtTypeToIdx[eType]];         }
429  UChar         getCbf    ( UInt uiIdx, TextType eType, UInt uiTrDepth )  { return ( ( getCbf( uiIdx, eType ) >> uiTrDepth ) & 0x1 ); }
430  Void          setCbf    ( UInt uiIdx, TextType eType, UChar uh )        { m_puhCbf[g_aucConvertTxtTypeToIdx[eType]][uiIdx] = uh;    }
431  Void          clearCbf  ( UInt uiIdx, TextType eType, UInt uiNumParts );
432  UChar         getQtRootCbf          ( UInt uiIdx )                      { return getCbf( uiIdx, TEXT_LUMA, 0 ) || getCbf( uiIdx, TEXT_CHROMA_U, 0 ) || getCbf( uiIdx, TEXT_CHROMA_V, 0 ); }
433 
434  Void          setCbfSubParts        ( UInt uiCbfY, UInt uiCbfU, UInt uiCbfV, UInt uiAbsPartIdx, UInt uiDepth          );
435  Void          setCbfSubParts        ( UInt uiCbf, TextType eTType, UInt uiAbsPartIdx, UInt uiDepth                    );
436  Void          setCbfSubParts        ( UInt uiCbf, TextType eTType, UInt uiAbsPartIdx, UInt uiPartIdx, UInt uiDepth    );
437 
438  // -------------------------------------------------------------------------------------------------------------------
439  // member functions for coding tool information
440  // -------------------------------------------------------------------------------------------------------------------
441 
442  Bool*         getMergeFlag          ()                        { return m_pbMergeFlag;               }
443  Bool          getMergeFlag          ( UInt uiIdx )            { return m_pbMergeFlag[uiIdx];        }
444  Void          setMergeFlag          ( UInt uiIdx, Bool b )    { m_pbMergeFlag[uiIdx] = b;           }
445  Void          setMergeFlagSubParts  ( Bool bMergeFlag, UInt uiAbsPartIdx, UInt uiPartIdx, UInt uiDepth );
446
447  UChar*        getMergeIndex         ()                        { return m_puhMergeIndex;                         }
448  UChar         getMergeIndex         ( UInt uiIdx )            { return m_puhMergeIndex[uiIdx];                  }
449  Void          setMergeIndex         ( UInt uiIdx, UInt uiMergeIndex ) { m_puhMergeIndex[uiIdx] = uiMergeIndex;  }
450  Void          setMergeIndexSubParts ( UInt uiMergeIndex, UInt uiAbsPartIdx, UInt uiPartIdx, UInt uiDepth );
451  template <typename T>
452  Void          setSubPart            ( T bParameter, T* pbBaseLCU, UInt uiCUAddr, UInt uiCUDepth, UInt uiPUIdx );
453#if H_3D_VSP
454  template<typename T>
455  Void          setSubPartT           ( T uiParameter, T* puhBaseLCU, UInt uiCUAddr, UInt uiCUDepth, UInt uiPUIdx );
456#endif
457#if AMP_MRG
458  Void          setMergeAMP( Bool b )      { m_bIsMergeAMP = b; }
459  Bool          getMergeAMP( )             { return m_bIsMergeAMP; }
460#endif
461
462  UChar*        getLumaIntraDir       ()                        { return m_puhLumaIntraDir;           }
463  UChar         getLumaIntraDir       ( UInt uiIdx )            { return m_puhLumaIntraDir[uiIdx];    }
464  Void          setLumaIntraDir       ( UInt uiIdx, UChar  uh ) { m_puhLumaIntraDir[uiIdx] = uh;      }
465  Void          setLumaIntraDirSubParts( UInt uiDir,  UInt uiAbsPartIdx, UInt uiDepth );
466 
467  UChar*        getChromaIntraDir     ()                        { return m_puhChromaIntraDir;         }
468  UChar         getChromaIntraDir     ( UInt uiIdx )            { return m_puhChromaIntraDir[uiIdx];  }
469  Void          setChromaIntraDir     ( UInt uiIdx, UChar  uh ) { m_puhChromaIntraDir[uiIdx] = uh;    }
470  Void          setChromIntraDirSubParts( UInt uiDir,  UInt uiAbsPartIdx, UInt uiDepth );
471 
472  UChar*        getInterDir           ()                        { return m_puhInterDir;               }
473  UChar         getInterDir           ( UInt uiIdx )            { return m_puhInterDir[uiIdx];        }
474  Void          setInterDir           ( UInt uiIdx, UChar  uh ) { m_puhInterDir[uiIdx] = uh;          }
475  Void          setInterDirSubParts   ( UInt uiDir,  UInt uiAbsPartIdx, UInt uiPartIdx, UInt uiDepth );
476  Bool*         getIPCMFlag           ()                        { return m_pbIPCMFlag;               }
477  Bool          getIPCMFlag           (UInt uiIdx )             { return m_pbIPCMFlag[uiIdx];        }
478  Void          setIPCMFlag           (UInt uiIdx, Bool b )     { m_pbIPCMFlag[uiIdx] = b;           }
479  Void          setIPCMFlagSubParts   (Bool bIpcmFlag, UInt uiAbsPartIdx, UInt uiDepth);
480#if H_3D_NBDV
481  Void          setDvInfoSubParts     ( DisInfo cDvInfo, UInt uiAbsPartIdx, UInt uiDepth );
482  Void          setDvInfoSubParts     ( DisInfo cDvInfo, UInt uiAbsPartIdx, UInt uiPartIdx, UInt uiDepth);
483  DisInfo*      getDvInfo             ()                        { return m_pDvInfo;                 }
484  DisInfo       getDvInfo             (UInt uiIdx)              { return m_pDvInfo[uiIdx];          }
485#endif
486#if H_3D_NBDV
487  Void          xDeriveRightBottomNbIdx(Int &uiLCUIdxRBNb, Int &uiPartIdxRBNb );
488  Bool          xCheckSpatialNBDV (TComDataCU* pcTmpCU, UInt uiIdx, DisInfo* pNbDvInfo, Bool bSearchForMvpDv, IDVInfo* paMvpDvInfo,
489                                   UInt uiMvpDvPos
490#if H_3D_NBDV_REF
491  , Bool bDepthRefine = false
492#endif
493  );
494  Bool          xGetColDisMV      ( Int currCandPic, RefPicList eRefPicList, Int refidx, Int uiCUAddr, Int uiPartUnitIdx, TComMv& rcMv, Int & iTargetViewIdx, Int & iStartViewIdx );
495  Bool          getDisMvpCandNBDV ( DisInfo* pDInfo
496#if H_3D_NBDV_REF
497   , Bool bDepthRefine = false
498#endif
499   ); 
500   
501#if H_3D
502  Bool          getDispforDepth  ( UInt uiPartIdx, UInt uiPartAddr, DisInfo* cDisp);
503  Bool          getDispMvPredCan(UInt uiPartIdx, RefPicList eRefPicList, Int iRefIdx, Int* paiPdmRefIdx, TComMv* pacPdmMv, DisInfo* pDis, Int* iPdm );
504#endif
505#if MTK_SINGLE_DEPTH_MODE_I0095
506   Bool          getNeighDepth (UInt uiPartIdx, UInt uiPartAddr, Pel* pNeighDepth, Int index);
507#endif
508#if H_3D_NBDV_REF
509  Pel           getMcpFromDM(TComPicYuv* pcBaseViewDepthPicYuv, TComMv* mv, Int iBlkX, Int iBlkY, Int iWidth, Int iHeight, Int* aiShiftLUT );
510  Void          estimateDVFromDM(Int refViewIdx, UInt uiPartIdx, TComPic* picDepth, UInt uiPartAddr, TComMv* cMvPred );
511#endif //H_3D_NBDV_REF
512#endif
513#if  H_3D_FAST_TEXTURE_ENCODING
514  Void          getIVNStatus       ( UInt uiPartIdx,  DisInfo* pDInfo, Bool& bIVFMerge,  Int& iIVFMaxD);
515#endif
516#if H_3D_SPIVMP
517  Void          getSPPara(Int iPUWidth, Int iPUHeight, Int& iNumSP, Int& iNumSPInOneLine, Int& iSPWidth, Int& iSPHeight);
518  Void          getSPAbsPartIdx(UInt uiBaseAbsPartIdx, Int iWidth, Int iHeight, Int iPartIdx, Int iNumPartLine, UInt& ruiPartAddr );
519  Void          setInterDirSP( UInt uiDir, UInt uiAbsPartIdx, Int iWidth, Int iHeight );
520#endif
521#if H_3D_IV_MERGE
522  Bool          getInterViewMergeCands          ( UInt uiPartIdx, Int* paiPdmRefIdx, TComMv* pacPdmMv, DisInfo* pDInfo, Int* availableMcDc, Bool bIsDepth           
523
524#if H_3D_SPIVMP
525    , TComMvField* pcMFieldSP, UChar* puhInterDirSP
526#endif   
527    , Bool bICFlag
528    );   
529#endif
530#if H_3D_ARP
531  UChar*        getARPW            ()                        { return m_puhARPW;               }
532  UChar         getARPW            ( UInt uiIdx )            { return m_puhARPW[uiIdx];        }
533  Void          setARPW            ( UInt uiIdx, UChar w )   { m_puhARPW[uiIdx] = w;           }
534  Void          setARPWSubParts    ( UChar w, UInt uiAbsPartIdx, UInt uiDepth );
535  Double        getARPWFactor      ( UInt uiIdx );
536#endif
537#if H_3D_IC
538  Bool*         getICFlag          ()                        { return m_pbICFlag;               }
539  Bool          getICFlag          ( UInt uiIdx )            { return m_pbICFlag[uiIdx];        }
540  Void          setICFlag          ( UInt uiIdx, Bool  uh )  { m_pbICFlag[uiIdx] = uh;          }
541  Void          setICFlagSubParts  ( Bool bICFlag,  UInt uiAbsPartIdx, UInt uiPartIdx, UInt uiDepth );
542  Bool          isICFlagRequired   ( UInt uiAbsPartIdx );
543  Void          getPartIndexAndSize( UInt uiPartIdx, UInt& ruiPartAddr, Int& riWidth, Int& riHeight, UInt uiAbsPartIdx = 0, Bool bLCU = false);
544#else
545  // -------------------------------------------------------------------------------------------------------------------
546  // member functions for accessing partition information
547  // -------------------------------------------------------------------------------------------------------------------
548 
549  Void          getPartIndexAndSize   ( UInt uiPartIdx, UInt& ruiPartAddr, Int& riWidth, Int& riHeight );
550#endif
551UChar         getNumPartitions       ();
552  Bool          isFirstAbsZorderIdxInDepth (UInt uiAbsPartIdx, UInt uiDepth);
553
554#if H_3D_DIM
555  Pel*  getDimDeltaDC                 ( UInt dimType, UInt segId )                      { return m_dimDeltaDC[dimType][segId];        } 
556  Pel   getDimDeltaDC                 ( UInt dimType, UInt segId, UInt uiIdx )          { return m_dimDeltaDC[dimType][segId][uiIdx]; } 
557  Void  setDimDeltaDC                 ( UInt dimType, UInt segId, UInt uiIdx, Pel val ) { m_dimDeltaDC[dimType][segId][uiIdx] = val;  }
558#if H_3D_DIM_DMM
559  UInt* getDmmWedgeTabIdx             ( UInt dmmType )                          { return m_dmmWedgeTabIdx[dmmType];          }       
560  UInt  getDmmWedgeTabIdx             ( UInt dmmType, UInt uiIdx )              { return m_dmmWedgeTabIdx[dmmType][uiIdx];   }
561  Void  setDmmWedgeTabIdx             ( UInt dmmType, UInt uiIdx, UInt tabIdx ) { m_dmmWedgeTabIdx[dmmType][uiIdx] = tabIdx; }
562  Void  setDmmWedgeTabIdxSubParts     ( UInt tabIdx, UInt dmmType, UInt uiAbsPartIdx, UInt uiDepth );
563
564#endif
565#if H_3D_DIM_SDC
566  Bool*         getSDCFlag          ()                        { return m_pbSDCFlag;               }
567  Bool          getSDCFlag          ( UInt uiIdx )            { return m_pbSDCFlag[uiIdx];        }
568  Void          setSDCFlagSubParts  ( Bool bSDCFlag, UInt uiAbsPartIdx, UInt uiDepth );
569 
570  Bool          getSDCAvailable             ( UInt uiAbsPartIdx );
571 
572  Pel*          getSDCSegmentDCOffset( UInt uiSeg ) { return m_apSegmentDCOffset[uiSeg]; }
573  Pel           getSDCSegmentDCOffset( UInt uiSeg, UInt uiPartIdx ) { return m_apSegmentDCOffset[uiSeg][uiPartIdx]; }
574  Void          setSDCSegmentDCOffset( Pel pOffset, UInt uiSeg, UInt uiPartIdx) { m_apSegmentDCOffset[uiSeg][uiPartIdx] = pOffset; }
575  Void          setDmmPredictor ( Pel pOffset, UInt uiSeg) { m_apDmmPredictor[uiSeg] = pOffset; }
576  Pel           getDmmPredictor ( UInt uiSeg) { return m_apDmmPredictor[uiSeg]; }
577  UInt          getCtxSDCFlag          ( UInt   uiAbsPartIdx );
578#endif
579#endif
580 
581  // -------------------------------------------------------------------------------------------------------------------
582  // member functions for motion vector
583  // -------------------------------------------------------------------------------------------------------------------
584 
585  Void          getMvField            ( TComDataCU* pcCU, UInt uiAbsPartIdx, RefPicList eRefPicList, TComMvField& rcMvField );
586 
587  Void          fillMvpCand           ( UInt uiPartIdx, UInt uiPartAddr, RefPicList eRefPicList, Int iRefIdx, AMVPInfo* pInfo );
588  Bool          isDiffMER             ( Int xN, Int yN, Int xP, Int yP);
589  Void          getPartPosition       ( UInt partIdx, Int& xP, Int& yP, Int& nPSW, Int& nPSH);
590  Void          setMVPIdx             ( RefPicList eRefPicList, UInt uiIdx, Int iMVPIdx)  { m_apiMVPIdx[eRefPicList][uiIdx] = iMVPIdx;  }
591  Int           getMVPIdx             ( RefPicList eRefPicList, UInt uiIdx)               { return m_apiMVPIdx[eRefPicList][uiIdx];     }
592  Char*         getMVPIdx             ( RefPicList eRefPicList )                          { return m_apiMVPIdx[eRefPicList];            }
593
594  Void          setMVPNum             ( RefPicList eRefPicList, UInt uiIdx, Int iMVPNum ) { m_apiMVPNum[eRefPicList][uiIdx] = iMVPNum;  }
595  Int           getMVPNum             ( RefPicList eRefPicList, UInt uiIdx )              { return m_apiMVPNum[eRefPicList][uiIdx];     }
596  Char*         getMVPNum             ( RefPicList eRefPicList )                          { return m_apiMVPNum[eRefPicList];            }
597 
598  Void          setMVPIdxSubParts     ( Int iMVPIdx, RefPicList eRefPicList, UInt uiAbsPartIdx, UInt uiPartIdx, UInt uiDepth );
599  Void          setMVPNumSubParts     ( Int iMVPNum, RefPicList eRefPicList, UInt uiAbsPartIdx, UInt uiPartIdx, UInt uiDepth );
600 
601  Void          clipMv                ( TComMv&     rcMv     );
602  Void          getMvPredLeft         ( TComMv&     rcMvPred )   { rcMvPred = m_cMvFieldA.getMv(); }
603  Void          getMvPredAbove        ( TComMv&     rcMvPred )   { rcMvPred = m_cMvFieldB.getMv(); }
604  Void          getMvPredAboveRight   ( TComMv&     rcMvPred )   { rcMvPred = m_cMvFieldC.getMv(); }
605#if H_3D
606  Void          compressMV            ( Int scale );
607#else           
608  Void          compressMV            ();
609#endif 
610  // -------------------------------------------------------------------------------------------------------------------
611  // utility functions for neighbouring information
612  // -------------------------------------------------------------------------------------------------------------------
613 
614  TComDataCU*   getCULeft                   () { return m_pcCULeft;       }
615  TComDataCU*   getCUAbove                  () { return m_pcCUAbove;      }
616  TComDataCU*   getCUAboveLeft              () { return m_pcCUAboveLeft;  }
617  TComDataCU*   getCUAboveRight             () { return m_pcCUAboveRight; }
618  TComDataCU*   getCUColocated              ( RefPicList eRefPicList ) { return m_apcCUColocated[eRefPicList]; }
619
620
621  TComDataCU*   getPULeft                   ( UInt&  uiLPartUnitIdx, 
622                                              UInt uiCurrPartUnitIdx, 
623                                              Bool bEnforceSliceRestriction=true, 
624                                              Bool bEnforceTileRestriction=true );
625  TComDataCU*   getPUAbove                  ( UInt&  uiAPartUnitIdx,
626                                              UInt uiCurrPartUnitIdx, 
627                                              Bool bEnforceSliceRestriction=true, 
628                                              Bool planarAtLCUBoundary = false,
629                                              Bool bEnforceTileRestriction=true );
630  TComDataCU*   getPUAboveLeft              ( UInt&  uiALPartUnitIdx, UInt uiCurrPartUnitIdx, Bool bEnforceSliceRestriction=true );
631  TComDataCU*   getPUAboveRight             ( UInt&  uiARPartUnitIdx, UInt uiCurrPartUnitIdx, Bool bEnforceSliceRestriction=true );
632  TComDataCU*   getPUBelowLeft              ( UInt&  uiBLPartUnitIdx, UInt uiCurrPartUnitIdx, Bool bEnforceSliceRestriction=true );
633
634  TComDataCU*   getQpMinCuLeft              ( UInt&  uiLPartUnitIdx , UInt uiCurrAbsIdxInLCU );
635  TComDataCU*   getQpMinCuAbove             ( UInt&  aPartUnitIdx , UInt currAbsIdxInLCU );
636  Char          getRefQP                    ( UInt   uiCurrAbsIdxInLCU                       );
637
638  TComDataCU*   getPUAboveRightAdi          ( UInt&  uiARPartUnitIdx, UInt uiCurrPartUnitIdx, UInt uiPartUnitOffset = 1, Bool bEnforceSliceRestriction=true );
639  TComDataCU*   getPUBelowLeftAdi           ( UInt&  uiBLPartUnitIdx, UInt uiCurrPartUnitIdx, UInt uiPartUnitOffset = 1, Bool bEnforceSliceRestriction=true );
640 
641  Void          deriveLeftRightTopIdx       ( UInt uiPartIdx, UInt& ruiPartIdxLT, UInt& ruiPartIdxRT );
642  Void          deriveLeftBottomIdx         ( UInt uiPartIdx, UInt& ruiPartIdxLB );
643 
644  Void          deriveLeftRightTopIdxAdi    ( UInt& ruiPartIdxLT, UInt& ruiPartIdxRT, UInt uiPartOffset, UInt uiPartDepth );
645  Void          deriveLeftBottomIdxAdi      ( UInt& ruiPartIdxLB, UInt  uiPartOffset, UInt uiPartDepth );
646 
647  Bool          hasEqualMotion              ( UInt uiAbsPartIdx, TComDataCU* pcCandCU, UInt uiCandAbsPartIdx );
648
649#if H_3D
650  Bool          getAvailableFlagA1() { return m_bAvailableFlagA1;}
651  Bool          getAvailableFlagB1() { return m_bAvailableFlagB1;}
652  Bool          getAvailableFlagB0() { return m_bAvailableFlagB0;}
653  Bool          getAvailableFlagA0() { return m_bAvailableFlagA0;}
654  Bool          getAvailableFlagB2() { return m_bAvailableFlagB2;}
655  Void          initAvailableFlags() { m_bAvailableFlagA1 = m_bAvailableFlagB1 = m_bAvailableFlagB0 = m_bAvailableFlagA0 = m_bAvailableFlagB2 = 0;  }
656  Void          buildMCL(TComMvField* pcMFieldNeighbours, UChar* puhInterDirNeighbours
657#if H_3D_VSP
658    , Int* vspFlag
659#endif
660#if H_3D_SPIVMP
661    , Bool* pbSPIVMPFlag
662#endif
663    , Int& numValidMergeCand
664    );
665  Void          getInterMergeCandidates( UInt uiAbsPartIdx, UInt uiPUIdx, TComMvField* pcMvFieldNeighbours, UChar* puhInterDirNeighbours, Int& numValidMergeCand, Int mrgCandIdx = -1);
666  Void          xGetInterMergeCandidates ( UInt uiAbsPartIdx, UInt uiPUIdx, TComMvField* pcMFieldNeighbours, UChar* puhInterDirNeighbours
667#else
668  Void          getInterMergeCandidates ( UInt uiAbsPartIdx, UInt uiPUIdx, TComMvField* pcMFieldNeighbours, UChar* puhInterDirNeighbours
669#endif
670#if H_3D_VSP
671                                            , InheritedVSPDisInfo*  inheritedVSPDisInfo
672#endif
673#if H_3D_SPIVMP
674                                            , TComMvField* pcMvFieldSP, UChar* puhInterDirSP
675#endif
676                                            , Int& numValidMergeCand, Int mrgCandIdx = -1
677                                            );
678
679#if H_3D_VSP
680  inline Void   xInheritVSPDisInfo(TComDataCU* pcCURef, UInt uiAbsPartIdx, Int iCount,  InheritedVSPDisInfo*  inheritedVSPDisInfo);
681
682#if H_3D_SPIVMP
683  Bool*         getSPIVMPFlag        ()                        { return m_pbSPIVMPFlag;          }
684  Bool          getSPIVMPFlag        ( UInt uiIdx )            { return m_pbSPIVMPFlag[uiIdx];   }
685  Void          setSPIVMPFlag        ( UInt uiIdx, Bool n )     { m_pbSPIVMPFlag[uiIdx] = n;      }
686  Void          setSPIVMPFlagSubParts( Bool bSPIVMPFlag, UInt uiAbsPartIdx, UInt uiPartIdx, UInt uiDepth );
687#endif
688
689  Char*         getVSPFlag        ()                        { return m_piVSPFlag;          }
690  Char          getVSPFlag        ( UInt uiIdx )            { return m_piVSPFlag[uiIdx];   }
691  Void          setVSPFlag        ( UInt uiIdx, Int n )     { m_piVSPFlag[uiIdx] = n;      }
692  Void          setVSPFlagSubParts( Char iVSPFlag, UInt uiAbsPartIdx, UInt uiPartIdx, UInt uiDepth );
693  Void          setMvFieldPUForVSP    ( TComDataCU* cu, UInt partAddr, Int width, Int height, RefPicList refPicList, Int refIdx, Int &vspSize );
694#endif
695  Void          deriveLeftRightTopIdxGeneral  ( UInt uiAbsPartIdx, UInt uiPartIdx, UInt& ruiPartIdxLT, UInt& ruiPartIdxRT );
696  Void          deriveLeftBottomIdxGeneral    ( UInt uiAbsPartIdx, UInt uiPartIdx, UInt& ruiPartIdxLB );
697 
698 
699  // -------------------------------------------------------------------------------------------------------------------
700  // member functions for modes
701  // -------------------------------------------------------------------------------------------------------------------
702 
703  Bool          isIntra   ( UInt uiPartIdx )  { return m_pePredMode[ uiPartIdx ] == MODE_INTRA; }
704  Bool          isSkipped ( UInt uiPartIdx );                                                     ///< SKIP (no residual)
705  Bool          isBipredRestriction( UInt puIdx );
706
707#if H_3D_IC
708  Bool          isIC      ( UInt uiPartIdx );
709#endif
710
711  // -------------------------------------------------------------------------------------------------------------------
712  // member functions for symbol prediction (most probable / mode conversion)
713  // -------------------------------------------------------------------------------------------------------------------
714 
715  UInt          getIntraSizeIdx                 ( UInt uiAbsPartIdx                                       );
716 
717  Void          getAllowedChromaDir             ( UInt uiAbsPartIdx, UInt* uiModeList );
718  Int           getIntraDirLumaPredictor        ( UInt uiAbsPartIdx, Int* uiIntraDirPred, Int* piMode = NULL );
719 
720  // -------------------------------------------------------------------------------------------------------------------
721  // member functions for SBAC context
722  // -------------------------------------------------------------------------------------------------------------------
723 
724  UInt          getCtxSplitFlag                 ( UInt   uiAbsPartIdx, UInt uiDepth                   );
725  UInt          getCtxQtCbf                     ( TextType eType, UInt uiTrDepth );
726
727  UInt          getCtxSkipFlag                  ( UInt   uiAbsPartIdx                                 );
728  UInt          getCtxInterDir                  ( UInt   uiAbsPartIdx                                 );
729 
730#if H_3D_ARP
731  UInt          getCTXARPWFlag                  ( UInt   uiAbsPartIdx                                 );
732#endif 
733  UInt          getSliceStartCU         ( UInt pos )                  { return m_sliceStartCU[pos-m_uiAbsIdxInLCU];                                                                                          }
734  UInt          getSliceSegmentStartCU  ( UInt pos )                  { return m_sliceSegmentStartCU[pos-m_uiAbsIdxInLCU];                                                                                   }
735  UInt&         getTotalBins            ()                            { return m_uiTotalBins;                                                                                                  }
736  // -------------------------------------------------------------------------------------------------------------------
737  // member functions for RD cost storage
738  // -------------------------------------------------------------------------------------------------------------------
739 
740  Double&       getTotalCost()                  { return m_dTotalCost;        }
741#if H_3D_VSO
742  Dist&         getTotalDistortion()            { return m_uiTotalDistortion; }
743#else
744  UInt&         getTotalDistortion()            { return m_uiTotalDistortion; }
745#endif
746  UInt&         getTotalBits()                  { return m_uiTotalBits;       }
747  UInt&         getTotalNumPart()               { return m_uiNumPartition;    }
748
749  UInt          getCoefScanIdx(UInt uiAbsPartIdx, UInt uiWidth, Bool bIsLuma, Bool bIsIntra);
750
751#if H_3D_DDD
752  UChar*       getDDDepth        ()                        { return m_pucDisparityDerivedDepth;        }
753  UChar        getDDDepth        ( UInt uiIdx )            { return m_pucDisparityDerivedDepth[uiIdx]; }
754  Void         setDDDepth        ( UInt uiIdx, UChar n )   { m_pucDisparityDerivedDepth[uiIdx] = n;    }
755  Void         setDDDepthSubParts( UChar ucDDD, UInt uiAbsPartIdx, UInt uiPartIdx, UInt uiDepth );
756
757  Bool*        getUseDDD        ()                        { return m_pbUseDDD;        }
758  Bool         getUseDDD        ( UInt uiIdx )            { return m_pbUseDDD[uiIdx]; }
759  Void         setUseDDD        ( UInt uiIdx, Bool n )     { m_pbUseDDD[uiIdx] = n;    }
760  Void         setUseDDD( Bool bUseDDD, UInt uiAbsPartIdx, UInt uiDepth );
761
762  Void         setUseDDD        ( Bool bUseDDD, UInt uiAbsPartIdx, UInt uiPartIdx, UInt uiDepth );
763
764  UChar        getDDTmpDepth(){ return m_ucDDTmpDepth; }
765  Int          getUseDDDCandIdx(){ return m_iUseDDDCandIdx;}
766
767#endif
768
769#if SHARP_DMM1_I0110
770  Bool         isDMM1UpscaleMode       ( UInt uiWidth ){ Bool bDMM1UpsampleModeFlag = true; UInt uiBaseWidth = 16; if( uiBaseWidth >= uiWidth ){ bDMM1UpsampleModeFlag = false; } return bDMM1UpsampleModeFlag; };
771  UInt         getDMM1BasePatternWidth ( UInt uiWidth ){ UInt uiBaseWidth = 16; if( uiBaseWidth >= uiWidth ){ uiBaseWidth =  uiWidth; } return uiBaseWidth; }
772#endif
773
774};
775
776namespace RasterAddress
777{
778  /** Check whether 2 addresses point to the same column
779   * \param addrA          First address in raster scan order
780   * \param addrB          Second address in raters scan order
781   * \param numUnitsPerRow Number of units in a row
782   * \return Result of test
783   */
784  static inline Bool isEqualCol( Int addrA, Int addrB, Int numUnitsPerRow )
785  {
786    // addrA % numUnitsPerRow == addrB % numUnitsPerRow
787    return (( addrA ^ addrB ) &  ( numUnitsPerRow - 1 ) ) == 0;
788  }
789 
790  /** Check whether 2 addresses point to the same row
791   * \param addrA          First address in raster scan order
792   * \param addrB          Second address in raters scan order
793   * \param numUnitsPerRow Number of units in a row
794   * \return Result of test
795   */
796  static inline Bool isEqualRow( Int addrA, Int addrB, Int numUnitsPerRow )
797  {
798    // addrA / numUnitsPerRow == addrB / numUnitsPerRow
799    return (( addrA ^ addrB ) &~ ( numUnitsPerRow - 1 ) ) == 0;
800  }
801 
802  /** Check whether 2 addresses point to the same row or column
803   * \param addrA          First address in raster scan order
804   * \param addrB          Second address in raters scan order
805   * \param numUnitsPerRow Number of units in a row
806   * \return Result of test
807   */
808  static inline Bool isEqualRowOrCol( Int addrA, Int addrB, Int numUnitsPerRow )
809  {
810    return isEqualCol( addrA, addrB, numUnitsPerRow ) | isEqualRow( addrA, addrB, numUnitsPerRow );
811  }
812 
813  /** Check whether one address points to the first column
814   * \param addr           Address in raster scan order
815   * \param numUnitsPerRow Number of units in a row
816   * \return Result of test
817   */
818  static inline Bool isZeroCol( Int addr, Int numUnitsPerRow )
819  {
820    // addr % numUnitsPerRow == 0
821    return ( addr & ( numUnitsPerRow - 1 ) ) == 0;
822  }
823 
824  /** Check whether one address points to the first row
825   * \param addr           Address in raster scan order
826   * \param numUnitsPerRow Number of units in a row
827   * \return Result of test
828   */
829  static inline Bool isZeroRow( Int addr, Int numUnitsPerRow )
830  {
831    // addr / numUnitsPerRow == 0
832    return ( addr &~ ( numUnitsPerRow - 1 ) ) == 0;
833  }
834 
835  /** Check whether one address points to a column whose index is smaller than a given value
836   * \param addr           Address in raster scan order
837   * \param val            Given column index value
838   * \param numUnitsPerRow Number of units in a row
839   * \return Result of test
840   */
841  static inline Bool lessThanCol( Int addr, Int val, Int numUnitsPerRow )
842  {
843    // addr % numUnitsPerRow < val
844    return ( addr & ( numUnitsPerRow - 1 ) ) < val;
845  }
846 
847  /** Check whether one address points to a row whose index is smaller than a given value
848   * \param addr           Address in raster scan order
849   * \param val            Given row index value
850   * \param numUnitsPerRow Number of units in a row
851   * \return Result of test
852   */
853  static inline Bool lessThanRow( Int addr, Int val, Int numUnitsPerRow )
854  {
855    // addr / numUnitsPerRow < val
856    return addr < val * numUnitsPerRow;
857  }
858};
859
860//! \}
861
862#endif
Note: See TracBrowser for help on using the repository browser.