source: 3DVCSoftware/branches/HTM-13.1-dev0/source/Lib/TLibCommon/TComDataCU.h @ 1164

Last change on this file since 1164 was 1164, checked in by tech, 9 years ago

Merged 13.1-dev2-Sony

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