source: 3DVCSoftware/branches/HTM-5.0-Sony/source/Lib/TLibCommon/TComSlice.h @ 196

Last change on this file since 196 was 195, checked in by tech, 12 years ago

Changed macro switch names to match conventions.

  • Property svn:eol-style set to native
File size: 80.0 KB
Line 
1/* The copyright in this software is being made available under the BSD
2 * License, included below. This software may be subject to other third party
3 * and contributor rights, including patent rights, and no such rights are
4 * granted under this license. 
5 *
6 * Copyright (c) 2010-2012, ITU/ISO/IEC
7 * All rights reserved.
8 *
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are met:
11 *
12 *  * Redistributions of source code must retain the above copyright notice,
13 *    this list of conditions and the following disclaimer.
14 *  * Redistributions in binary form must reproduce the above copyright notice,
15 *    this list of conditions and the following disclaimer in the documentation
16 *    and/or other materials provided with the distribution.
17 *  * Neither the name of the ITU/ISO/IEC nor the names of its contributors may
18 *    be used to endorse or promote products derived from this software without
19 *    specific prior written permission.
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS
25 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
31 * THE POSSIBILITY OF SUCH DAMAGE.
32 */
33
34/** \file     TComSlice.h
35    \brief    slice header and SPS class (header)
36*/
37
38#ifndef __TCOMSLICE__
39#define __TCOMSLICE__
40
41#include <cstring>
42#include <map>
43#include <vector>
44#include "CommonDef.h"
45#include "TComRom.h"
46#include "TComList.h"
47
48//! \ingroup TLibCommon
49//! \{
50
51class TComPic;
52class TComTrQuant;
53#if DEPTH_MAP_GENERATION
54class TComDepthMapGenerator;
55#endif
56#if HHI_INTER_VIEW_RESIDUAL_PRED
57class TComResidualGenerator;
58#endif
59// ====================================================================================================================
60// Constants
61// ====================================================================================================================
62
63/// max number of supported APS in software
64#define MAX_NUM_SUPPORTED_APS 1
65
66// ====================================================================================================================
67// Class definition
68// ====================================================================================================================
69
70#if RPS_IN_SPS
71/// Reference Picture Set class
72class TComReferencePictureSet
73{
74private:
75  Int  m_numberOfPictures;
76  Int  m_numberOfNegativePictures;
77  Int  m_numberOfPositivePictures;
78  Int  m_numberOfLongtermPictures;
79  Int  m_deltaPOC[MAX_NUM_REF_PICS];
80  Int  m_POC[MAX_NUM_REF_PICS];
81  Bool m_used[MAX_NUM_REF_PICS];
82  Bool m_interRPSPrediction;
83  Int  m_deltaRIdxMinus1;   
84  Int  m_deltaRPS; 
85  Int  m_numRefIdc; 
86  Int  m_refIdc[MAX_NUM_REF_PICS+1];
87
88public:
89  TComReferencePictureSet();
90  virtual ~TComReferencePictureSet();
91
92  Void setNumberOfPictures(Int numberOfPictures);
93  Int  getNumberOfPictures();
94  Void setNumberOfNegativePictures(Int number)  { m_numberOfNegativePictures = number; }
95  Int  getNumberOfNegativePictures()            { return m_numberOfNegativePictures; }
96  Void setNumberOfPositivePictures(Int number)  { m_numberOfPositivePictures = number; }
97  Int  getNumberOfPositivePictures()            { return m_numberOfPositivePictures; }
98  Void setNumberOfLongtermPictures(Int number)  { m_numberOfLongtermPictures = number; }
99  Int  getNumberOfLongtermPictures()            { return m_numberOfLongtermPictures; }
100
101  Void setDeltaPOC(Int bufferNum, Int deltaPOC);
102  Int  getDeltaPOC(Int bufferNum);
103  Void setPOC(Int bufferNum, Int deltaPOC);
104  Int  getPOC(Int bufferNum);
105
106  Void setUsed(Int bufferNum, Bool used);
107  Int  getUsed(Int bufferNum);
108
109  Void setInterRPSPrediction(Bool flag)         { m_interRPSPrediction = flag; }
110  Bool getInterRPSPrediction()                  { return m_interRPSPrediction; }
111  Void setDeltaRIdxMinus1(Int x)                { m_deltaRIdxMinus1 = x; }
112  Int  getDeltaRIdxMinus1()                     { return m_deltaRIdxMinus1; }
113  Void setDeltaRPS(Int x)                       { m_deltaRPS = x; }
114  Int  getDeltaRPS()                            { return m_deltaRPS; }
115  Void setNumRefIdc(Int x)                      { m_numRefIdc = x; }
116  Int  getNumRefIdc()                           { return m_numRefIdc; }
117
118  Void setRefIdc(Int bufferNum, Int refIdc);
119  Int  getRefIdc(Int bufferNum);
120
121  Void sortDeltaPOC();
122  Void printDeltaPOC();
123};
124
125/// Reference Picture Set set class
126class TComRPSList
127{
128private:
129  Int  m_numberOfReferencePictureSets;
130  TComReferencePictureSet* m_referencePictureSets;
131 
132public:
133  TComRPSList();
134  virtual ~TComRPSList();
135 
136  Void  create  (Int numberOfEntries);
137  Void  destroy ();
138
139
140  TComReferencePictureSet* getReferencePictureSet(Int referencePictureSetNum);
141  Int getNumberOfReferencePictureSets();
142  Void setNumberOfReferencePictureSets(Int numberOfReferencePictureSets);
143};
144#endif
145
146#if VIDYO_VPS_INTEGRATION|QC_MVHEVC_B0046
147/// VPS class
148
149class TComVPS
150{
151private:
152  Int         m_VPSId;
153  UInt        m_uiMaxTLayers;
154  UInt        m_uiMaxLayers;
155  Bool        m_bTemporalIdNestingFlag;
156
157  UInt        m_uiExtensionType;
158#if !QC_MVHEVC_B0046 
159  Bool        m_bDependentFlag[MAX_LAYER_NUM];
160#else
161  UInt        m_uiNumHRDParameter;
162  UInt        m_numAddiLayerOperationPoints;
163  UInt        m_numAddiProLevelSets;
164  UInt        m_numDirectRefLayer[MAX_LAYER_NUM];
165  UInt        m_numDirectRefID[MAX_LAYER_NUM][MAX_LAYER_NUM];
166  UInt        m_numOpLayerIdMinus1[MAX_LAYER_NUM];
167  UInt        m_numOpLayerId[MAX_LAYER_NUM][MAX_LAYER_NUM];
168#endif
169  UInt        m_uiViewId[MAX_LAYER_NUM];
170#if !QC_MVHEVC_B0046 
171  Bool        m_bDepthFlag[MAX_LAYER_NUM];
172#endif
173  Int         m_iViewOrderIdx[MAX_LAYER_NUM];
174#if !QC_MVHEVC_B0046 
175  UInt        m_uiDependentLayer[MAX_LAYER_NUM];
176#endif
177
178  UInt        m_numReorderPics[MAX_TLAYER];
179  UInt        m_uiMaxDecPicBuffering[MAX_TLAYER]; 
180  UInt        m_uiMaxLatencyIncrease[MAX_TLAYER];
181 
182public:
183  TComVPS();
184  virtual ~TComVPS();
185 
186  Int     getVPSId       ()                   { return m_VPSId;          }
187  Void    setVPSId       (Int i)              { m_VPSId = i;             }
188 
189  UInt    getMaxTLayers  ()                   { return m_uiMaxTLayers;   }
190  Void    setMaxTLayers  (UInt t)             { m_uiMaxTLayers = t; }
191   
192  UInt    getMaxLayers   ()                   { return m_uiMaxLayers;   }
193  Void    setMaxLayers   (UInt l)             { m_uiMaxLayers = l; }
194 
195  Bool    getTemporalNestingFlag   ()         { return m_uiMaxLayers;   }
196  Void    setTemporalNestingFlag   (UInt t)   { m_bTemporalIdNestingFlag = t; }
197#if !QC_MVHEVC_B0046
198  Void    setExtensionType(UInt v)                     { m_uiExtensionType = v;    }
199  UInt    getExtensionType()                             { return m_uiExtensionType; }
200 
201  Void    setDependentFlag(Bool d, UInt layer)              { m_bDependentFlag[layer] = d;    }
202  Bool    getDependentFlag(UInt layer)                      { return m_bDependentFlag[layer]; }
203#endif
204  Void    setViewId(UInt v, UInt layer)                     { m_uiViewId[layer] = v;    }
205  UInt    getViewId(UInt layer)                             { return m_uiViewId[layer]; }
206#if !QC_MVHEVC_B0046
207  Void    setDepthFlag(Bool d, UInt layer)                  { m_bDepthFlag[layer] = d;    }
208  Bool    getDepthFlag(UInt layer)                          { return m_bDepthFlag[layer]; }
209#endif
210  Void    setViewOrderIdx(Int v, UInt layer)                { m_iViewOrderIdx[layer] = v;    }
211  Int     getViewOrderIdx(UInt layer)                       { return m_iViewOrderIdx[layer]; }
212#if !QC_MVHEVC_B0046   
213  Void    setDependentLayer(UInt v, UInt layer)                     { m_uiDependentLayer[layer] = v;    }
214  UInt    getDependentLayer(UInt layer)                             { return m_uiDependentLayer[layer]; }
215#endif
216  Void    setNumReorderPics(UInt v, UInt tLayer)                { m_numReorderPics[tLayer] = v;    }
217  UInt    getNumReorderPics(UInt tLayer)                        { return m_numReorderPics[tLayer]; }
218 
219  Void    setMaxDecPicBuffering(UInt v, UInt tLayer)          { m_uiMaxDecPicBuffering[tLayer] = v;    }
220  UInt    getMaxDecPicBuffering(UInt tLayer)                  { return m_uiMaxDecPicBuffering[tLayer]; }
221 
222  Void    setMaxLatencyIncrease(UInt v, UInt tLayer)                { m_uiMaxLatencyIncrease[tLayer] = v;    }
223  UInt    getMaxLatencyIncrease(UInt tLayer)                        { return m_uiMaxLatencyIncrease[tLayer]; }
224#if QC_MVHEVC_B0046
225  Void    setNumHRDParameters(UInt n)                                { m_uiNumHRDParameter = n;    }
226  UInt    getNumHRDParameters()                                      { return m_uiNumHRDParameter; }
227  Void    setNumDirectRefLayer(UInt n, UInt layer)                   { m_numDirectRefLayer[layer] = n;        };
228  UInt    getNumDirectRefLayer(UInt layer)                           { return m_numDirectRefLayer[layer];     };
229  Void    setDirectRefLayerId (UInt n, UInt layer, UInt refId)       { m_numDirectRefID[layer][refId] = n;   assert(refId < MAX_NUM_REF ); };
230  UInt    getDirectRefLayerId (        UInt layer, UInt refId)       { return m_numDirectRefID[layer][refId]; };
231  UInt    getNumAddiLayerOperationPoints(      )               { return m_numAddiLayerOperationPoints;  };
232  Void    setNumAddiLayerOperationPoints(UInt n)                {  m_numAddiLayerOperationPoints = n;  };
233  Void    setNumAddiProLevelSets        (UInt n)                     {  m_numAddiProLevelSets = n;}
234  UInt    getNumAddiProLevelSets        (      )                     { return m_numAddiProLevelSets;}
235
236  Void    setNumOpLayerIdMinus1         (UInt n, UInt layer)                     {  m_numOpLayerIdMinus1[layer] = n;}
237  UInt    getNumOpLayerIdMinus1         (UInt layer      )                       { return m_numOpLayerIdMinus1[layer];}
238
239  Void    setNumOpLayerId               (UInt n, UInt layer, UInt OpId)                     {  m_numOpLayerId[layer][OpId] = n;}
240  UInt    getNumOpLayerId               (UInt layer, UInt OpId        )                     { return m_numOpLayerId[layer][OpId];}
241
242#endif
243};
244
245#endif
246
247/// SPS class
248class TComSPS
249{
250private:
251#if VIDYO_VPS_INTEGRATION|QC_MVHEVC_B0046
252  Int          m_VPSId;
253#endif
254  Int         m_SPSId;
255  Int         m_ProfileIdc;
256  Int         m_LevelIdc;
257  Int         m_chromaFormatIdc;
258
259  UInt        m_uiMaxTLayers;           // maximum number of temporal layers
260
261  UInt        m_uiViewId;
262  Int         m_iViewOrderIdx;
263  Bool        m_bDepth;
264  UInt        m_uiCamParPrecision;
265  Bool        m_bCamParInSliceHeader;
266  Int         m_aaiCodedScale [2][MAX_VIEW_NUM];
267  Int         m_aaiCodedOffset[2][MAX_VIEW_NUM];
268
269  // Structure
270  UInt        m_picWidthInLumaSamples;
271  UInt        m_picHeightInLumaSamples;
272#if PIC_CROPPING
273  Bool        m_picCroppingFlag;
274  Int         m_picCropLeftOffset;
275  Int         m_picCropRightOffset;
276  Int         m_picCropTopOffset;
277  Int         m_picCropBottomOffset;
278#else
279  Int         m_aiPad[2];
280#endif
281  UInt        m_uiMaxCUWidth;
282  UInt        m_uiMaxCUHeight;
283  UInt        m_uiMaxCUDepth;
284  UInt        m_uiMinTrDepth;
285  UInt        m_uiMaxTrDepth;
286#if RPS_IN_SPS
287  TComRPSList* m_RPSList;
288  Bool        m_bLongTermRefsPresent;
289#endif
290#if H0567_DPB_PARAMETERS_PER_TEMPORAL_LAYER
291  Int         m_numReorderPics[MAX_TLAYER];
292#else
293  Int         m_maxNumberOfReferencePictures;
294  Int         m_numReorderFrames;
295#endif
296 
297  Int         m_iNumberOfUsableInterViewRefs;
298  Int         m_aiUsableInterViewRefs[MAX_VIEW_NUM];
299
300  // Tool list
301  UInt        m_uiQuadtreeTULog2MaxSize;
302  UInt        m_uiQuadtreeTULog2MinSize;
303  UInt        m_uiQuadtreeTUMaxDepthInter;
304  UInt        m_uiQuadtreeTUMaxDepthIntra;
305  Bool        m_usePCM;
306  UInt        m_pcmLog2MaxSize;
307  UInt        m_uiPCMLog2MinSize;
308  Bool        m_bDisInter4x4;
309  Bool        m_useAMP;
310  Bool        m_bUseALF;
311#if LCU_SYNTAX_ALF
312  Bool        m_bALFCoefInSlice;
313#endif
314#if !PIC_CROPPING
315  Bool        m_bUsePAD;
316#endif
317  Bool        m_bUseLMChroma; // JL:
318
319  Bool        m_bUseLComb;
320  Bool        m_bLCMod;
321  Bool        m_useNSQT;
322 
323#if H0412_REF_PIC_LIST_RESTRICTION
324  Bool        m_restrictedRefPicListsFlag;
325  Bool        m_listsModificationPresentFlag;
326#endif
327
328  // Parameter
329  AMVP_MODE   m_aeAMVPMode[MAX_CU_DEPTH];
330  UInt        m_uiBitDepth;
331  UInt        m_uiBitIncrement;
332#if H0736_AVC_STYLE_QP_RANGE
333  Int         m_qpBDOffsetY;
334  Int         m_qpBDOffsetC;
335#endif
336
337#if LOSSLESS_CODING
338  Bool        m_useLossless;
339#endif
340
341  UInt        m_uiPCMBitDepthLuma;
342  UInt        m_uiPCMBitDepthChroma;
343  Bool        m_bPCMFilterDisableFlag;
344
345  UInt        m_uiBitsForPOC;
346  // Max physical transform size
347  UInt        m_uiMaxTrSize;
348 
349  Int m_iAMPAcc[MAX_CU_DEPTH];
350
351  Bool        m_bLFCrossSliceBoundaryFlag;
352  Bool        m_bUseSAO; 
353#if HHI_MPI
354  Bool        m_bUseMVI;
355#endif
356 
357#if RWTH_SDC_DLT_B0036
358  Bool        m_bUseDLT;
359 
360  UInt        m_uiBitsPerDepthValue;
361  UInt        m_uiNumDepthmapValues;
362  UInt*       m_uiDepthValue2Idx;
363  UInt*       m_uiIdx2DepthValue;
364#endif
365
366  Bool     m_bLFCrossTileBoundaryFlag;
367  Int      m_iUniformSpacingIdr;
368  Int      m_iTileBoundaryIndependenceIdr;
369  Int      m_iNumColumnsMinus1;
370  UInt*    m_puiColumnWidth;
371  Int      m_iNumRowsMinus1;
372  UInt*    m_puiRowHeight;
373 
374  Bool        m_bTemporalIdNestingFlag; // temporal_id_nesting_flag
375
376  Bool        m_scalingListEnabledFlag;
377#if H0567_DPB_PARAMETERS_PER_TEMPORAL_LAYER
378  UInt        m_uiMaxDecPicBuffering[MAX_TLAYER]; 
379  UInt        m_uiMaxLatencyIncrease[MAX_TLAYER];
380#else
381  UInt        m_uiMaxDecFrameBuffering; 
382  UInt        m_uiMaxLatencyIncrease;
383#endif
384
385  Bool        m_useDF;
386
387#if TILES_WPP_ENTRY_POINT_SIGNALLING
388  UInt        m_tilesOrEntropyCodingSyncIdc;
389  Int         m_numSubstreams;
390#endif
391
392#if HHI_DMM_WEDGE_INTRA || HHI_DMM_PRED_TEX
393  Bool  m_bUseDMM;
394#endif
395
396#if OL_QTLIMIT_PREDCODING_B0068
397  Bool m_bUseQTLPC;
398#endif
399
400#if DEPTH_MAP_GENERATION
401  UInt  m_uiPredDepthMapGeneration;
402  UInt  m_uiPdmPrecision;
403  Int   m_aiPdmScaleNomDelta[MAX_VIEW_NUM];
404  Int   m_aiPdmOffset       [MAX_VIEW_NUM];
405#endif
406
407#if HHI_INTER_VIEW_MOTION_PRED
408  UInt  m_uiMultiviewMvPredMode;
409#endif
410#if HHI_INTER_VIEW_RESIDUAL_PRED
411  UInt  m_uiMultiviewResPredMode;
412#endif
413
414#if DEPTH_MAP_GENERATION
415  TComDepthMapGenerator* m_pcDepthMapGenerator;
416#endif
417#if HHI_INTER_VIEW_RESIDUAL_PRED
418  TComResidualGenerator* m_pcResidualGenerator;
419#endif
420
421public:
422  TComSPS();
423  virtual ~TComSPS();
424#if VIDYO_VPS_INTEGRATION|QC_MVHEVC_B0046
425  Int  getVPSId       ()         { return m_VPSId;          }
426  Void setVPSId       (Int i)    { m_VPSId = i;             }
427#endif
428  Int  getSPSId       ()         { return m_SPSId;          }
429  Void setSPSId       (Int i)    { m_SPSId = i;             }
430  Int  getProfileIdc  ()         { return m_ProfileIdc;     }
431  Void setProfileIdc  (Int i)    { m_ProfileIdc = i;        }
432  Int  getLevelIdc    ()         { return m_LevelIdc;       }
433  Void setLevelIdc    (Int i)    { m_LevelIdc = i;          }
434
435  Int  getChromaFormatIdc ()         { return m_chromaFormatIdc;       }
436  Void setChromaFormatIdc (Int i)    { m_chromaFormatIdc = i;          }
437 
438  // structure
439  Void setPicWidthInLumaSamples       ( UInt u ) { m_picWidthInLumaSamples = u;        }
440  UInt getPicWidthInLumaSamples       ()         { return  m_picWidthInLumaSamples;    }
441  Void setPicHeightInLumaSamples      ( UInt u ) { m_picHeightInLumaSamples = u;       }
442  UInt getPicHeightInLumaSamples      ()         { return  m_picHeightInLumaSamples;   }
443
444#if PIC_CROPPING
445  Bool getPicCroppingFlag() const          { return m_picCroppingFlag; }
446  Void setPicCroppingFlag(Bool val)        { m_picCroppingFlag = val; }
447  Int  getPicCropLeftOffset() const        { return m_picCropLeftOffset; }
448  Void setPicCropLeftOffset(Int val)       { m_picCropLeftOffset = val; }
449  Int  getPicCropRightOffset() const       { return m_picCropRightOffset; }
450  Void setPicCropRightOffset(Int val)      { m_picCropRightOffset = val; }
451  Int  getPicCropTopOffset() const         { return m_picCropTopOffset; }
452  Void setPicCropTopOffset(Int val)        { m_picCropTopOffset = val; }
453  Int  getPicCropBottomOffset() const      { return m_picCropBottomOffset; }
454  Void setPicCropBottomOffset(Int val)     { m_picCropBottomOffset = val; }
455#endif
456
457  Void setMaxCUWidth  ( UInt u ) { m_uiMaxCUWidth = u;      }
458  UInt getMaxCUWidth  ()         { return  m_uiMaxCUWidth;  }
459  Void setMaxCUHeight ( UInt u ) { m_uiMaxCUHeight = u;     }
460  UInt getMaxCUHeight ()         { return  m_uiMaxCUHeight; }
461  Void setMaxCUDepth  ( UInt u ) { m_uiMaxCUDepth = u;      }
462  UInt getMaxCUDepth  ()         { return  m_uiMaxCUDepth;  }
463  Void setUsePCM      ( Bool b ) { m_usePCM = b;           }
464  Bool getUsePCM      ()         { return m_usePCM;        }
465  Void setPCMLog2MaxSize  ( UInt u ) { m_pcmLog2MaxSize = u;      }
466  UInt getPCMLog2MaxSize  ()         { return  m_pcmLog2MaxSize;  }
467  Void setPCMLog2MinSize  ( UInt u ) { m_uiPCMLog2MinSize = u;      }
468  UInt getPCMLog2MinSize  ()         { return  m_uiPCMLog2MinSize;  }
469  Void setBitsForPOC  ( UInt u ) { m_uiBitsForPOC = u;      }
470  UInt getBitsForPOC  ()         { return m_uiBitsForPOC;   }
471  Bool getDisInter4x4()         { return m_bDisInter4x4;        }
472  Void setDisInter4x4      ( Bool b ) { m_bDisInter4x4  = b;          }
473  Bool getUseAMP() { return m_useAMP; }
474  Void setUseAMP( Bool b ) { m_useAMP = b; }
475  Void setMinTrDepth  ( UInt u ) { m_uiMinTrDepth = u;      }
476  UInt getMinTrDepth  ()         { return  m_uiMinTrDepth;  }
477  Void setMaxTrDepth  ( UInt u ) { m_uiMaxTrDepth = u;      }
478  UInt getMaxTrDepth  ()         { return  m_uiMaxTrDepth;  }
479  Void setQuadtreeTULog2MaxSize( UInt u ) { m_uiQuadtreeTULog2MaxSize = u;    }
480  UInt getQuadtreeTULog2MaxSize()         { return m_uiQuadtreeTULog2MaxSize; }
481  Void setQuadtreeTULog2MinSize( UInt u ) { m_uiQuadtreeTULog2MinSize = u;    }
482  UInt getQuadtreeTULog2MinSize()         { return m_uiQuadtreeTULog2MinSize; }
483  Void setQuadtreeTUMaxDepthInter( UInt u ) { m_uiQuadtreeTUMaxDepthInter = u;    }
484  Void setQuadtreeTUMaxDepthIntra( UInt u ) { m_uiQuadtreeTUMaxDepthIntra = u;    }
485  UInt getQuadtreeTUMaxDepthInter()         { return m_uiQuadtreeTUMaxDepthInter; }
486  UInt getQuadtreeTUMaxDepthIntra()         { return m_uiQuadtreeTUMaxDepthIntra; }
487#if !PIC_CROPPING
488  Void setPad         (Int iPad[2]) { m_aiPad[0] = iPad[0]; m_aiPad[1] = iPad[1]; }
489#endif
490#if H0567_DPB_PARAMETERS_PER_TEMPORAL_LAYER
491  Void setNumReorderPics(Int i, UInt tlayer)              { m_numReorderPics[tlayer] = i;    }
492  Int  getNumReorderPics(UInt tlayer)                     { return m_numReorderPics[tlayer]; }
493#else
494  Void setMaxNumberOfReferencePictures( Int u )  { m_maxNumberOfReferencePictures = u;    }
495  Int  getMaxNumberOfReferencePictures()         { return m_maxNumberOfReferencePictures; }
496  Void setNumReorderFrames( Int i )              { m_numReorderFrames = i;    }
497  Int  getNumReorderFrames()                     { return m_numReorderFrames; }
498#endif
499#if RPS_IN_SPS
500  Void      setRPSList( TComRPSList* RPSList )   { m_RPSList = RPSList;       }
501  TComRPSList* getRPSList()                      { return m_RPSList;          }
502  Bool      getLongTermRefsPresent()         { return m_bLongTermRefsPresent; }
503  Void      setLongTermRefsPresent(Bool b)   { m_bLongTermRefsPresent=b;      }
504#endif
505
506  Void setNumberOfUsableInterViewRefs( Int number )      { m_iNumberOfUsableInterViewRefs = number;    }
507  Int  getNumberOfUsableInterViewRefs()                  { return m_iNumberOfUsableInterViewRefs;      }
508  Void setUsableInterViewRef( Int pos, Int deltaViewId ) { m_aiUsableInterViewRefs[pos] = deltaViewId; }
509  Int  getUsableInterViewRef( Int pos )                  { return m_aiUsableInterViewRefs[pos];        }
510
511#if !PIC_CROPPING
512  Void setPadX        ( Int  u ) { m_aiPad[0] = u; }
513  Void setPadY        ( Int  u ) { m_aiPad[1] = u; }
514  Int  getPad         ( Int  u ) { assert(u < 2); return m_aiPad[u];}
515  Int* getPad         ( )        { return m_aiPad; }
516#endif
517 
518  // physical transform
519  Void setMaxTrSize   ( UInt u ) { m_uiMaxTrSize = u;       }
520  UInt getMaxTrSize   ()         { return  m_uiMaxTrSize;   }
521 
522  // Tool list
523  Bool getUseALF      ()         { return m_bUseALF;        }
524#if LCU_SYNTAX_ALF
525  Void setUseALFCoefInSlice(Bool b) {m_bALFCoefInSlice = b;}
526  Bool getUseALFCoefInSlice()    {return m_bALFCoefInSlice;}
527#endif
528
529#if !PIC_CROPPING
530  Bool getUsePAD      ()         { return m_bUsePAD;        }
531  Void setUsePAD      ( Bool b ) { m_bUsePAD   = b;         }
532#endif
533  Void setUseALF      ( Bool b ) { m_bUseALF  = b;          }
534  Void setUseLComb    (Bool b)   { m_bUseLComb = b;         }
535  Bool getUseLComb    ()         { return m_bUseLComb;      }
536  Void setLCMod       (Bool b)   { m_bLCMod = b;     }
537  Bool getLCMod       ()         { return m_bLCMod;  }
538
539  Bool getUseLMChroma ()         { return m_bUseLMChroma;        }
540  Void setUseLMChroma ( Bool b ) { m_bUseLMChroma  = b;          }
541
542#if LOSSLESS_CODING
543  Bool getUseLossless ()         { return m_useLossless; }
544  Void setUseLossless ( Bool b ) { m_useLossless  = b; }
545#endif
546  Bool getUseNSQT() { return m_useNSQT; }
547  Void setUseNSQT( Bool b ) { m_useNSQT = b; }
548 
549#if H0412_REF_PIC_LIST_RESTRICTION
550  Bool getRestrictedRefPicListsFlag    ()          { return m_restrictedRefPicListsFlag;   }
551  Void setRestrictedRefPicListsFlag    ( Bool b )  { m_restrictedRefPicListsFlag = b;      }
552  Bool getListsModificationPresentFlag ()          { return m_listsModificationPresentFlag; }
553  Void setListsModificationPresentFlag ( Bool b )  { m_listsModificationPresentFlag = b;    }
554#endif
555
556  // AMVP mode (for each depth)
557  AMVP_MODE getAMVPMode ( UInt uiDepth ) { assert(uiDepth < g_uiMaxCUDepth);  return m_aeAMVPMode[uiDepth]; }
558  Void      setAMVPMode ( UInt uiDepth, AMVP_MODE eMode) { assert(uiDepth < g_uiMaxCUDepth);  m_aeAMVPMode[uiDepth] = eMode; }
559 
560  // AMP accuracy
561  Int       getAMPAcc   ( UInt uiDepth ) { return m_iAMPAcc[uiDepth]; }
562  Void      setAMPAcc   ( UInt uiDepth, Int iAccu ) { assert( uiDepth < g_uiMaxCUDepth);  m_iAMPAcc[uiDepth] = iAccu; }
563
564  // Bit-depth
565  UInt      getBitDepth     ()         { return m_uiBitDepth;     }
566  Void      setBitDepth     ( UInt u ) { m_uiBitDepth = u;        }
567  UInt      getBitIncrement ()         { return m_uiBitIncrement; }
568  Void      setBitIncrement ( UInt u ) { m_uiBitIncrement = u;    }
569#if H0736_AVC_STYLE_QP_RANGE
570  Int       getQpBDOffsetY  ()             { return m_qpBDOffsetY;   }
571  Void      setQpBDOffsetY  ( Int value  ) { m_qpBDOffsetY = value;  }
572  Int       getQpBDOffsetC  ()             { return m_qpBDOffsetC;   }
573  Void      setQpBDOffsetC  ( Int value  ) { m_qpBDOffsetC = value;  }
574#endif
575
576  Void      setLFCrossSliceBoundaryFlag     ( Bool   bValue  )    { m_bLFCrossSliceBoundaryFlag = bValue; }
577  Bool      getLFCrossSliceBoundaryFlag     ()                    { return m_bLFCrossSliceBoundaryFlag;   } 
578
579  Void setUseDF                   ( Bool b ) { m_useDF = b; }
580  Bool getUseDF                   ()         { return m_useDF; }
581
582  Void setUseSAO                  (Bool bVal)  {m_bUseSAO = bVal;}
583  Bool getUseSAO                  ()           {return m_bUseSAO;}
584
585#if HHI_MPI
586  Void setUseMVI                  (Bool bVal)  {m_bUseMVI = bVal;}
587  Bool getUseMVI                  ()           {return m_bUseMVI;}
588#endif
589 
590#if RWTH_SDC_DLT_B0036
591  Bool getUseDLT      ()          { return m_bUseDLT; }
592  Void setUseDLT      ( Bool b ) { m_bUseDLT  = b;          }
593 
594  UInt getBitsPerDepthValue()       { return m_bUseDLT?m_uiBitsPerDepthValue:g_uiBitDepth; }
595  UInt getNumDepthValues()          { return m_bUseDLT?m_uiNumDepthmapValues:g_uiIBDI_MAX; }
596  UInt depthValue2idx(Pel uiValue)  { return m_bUseDLT?m_uiDepthValue2Idx[uiValue]:uiValue; }
597  Pel  idx2DepthValue(UInt uiIdx)   { return m_bUseDLT?m_uiIdx2DepthValue[uiIdx]:uiIdx; }
598  Void setDepthLUTs   (UInt* uidx2DepthValue = NULL, UInt uiNumDepthValues = 0);
599#endif
600
601  UInt      getMaxTLayers()                           { return m_uiMaxTLayers; }
602  Void      setMaxTLayers( UInt uiMaxTLayers )        { assert( uiMaxTLayers <= MAX_TLAYER ); m_uiMaxTLayers = uiMaxTLayers; }
603
604  Bool      getTemporalIdNestingFlag()                { return m_bTemporalIdNestingFlag; }
605  Void      setTemporalIdNestingFlag( Bool bValue )   { m_bTemporalIdNestingFlag = bValue; }
606  UInt      getPCMBitDepthLuma     ()         { return m_uiPCMBitDepthLuma;     }
607  Void      setPCMBitDepthLuma     ( UInt u ) { m_uiPCMBitDepthLuma = u;        }
608  UInt      getPCMBitDepthChroma   ()         { return m_uiPCMBitDepthChroma;   }
609  Void      setPCMBitDepthChroma   ( UInt u ) { m_uiPCMBitDepthChroma = u;      }
610  Void      setPCMFilterDisableFlag     ( Bool   bValue  )    { m_bPCMFilterDisableFlag = bValue; }
611  Bool      getPCMFilterDisableFlag     ()                    { return m_bPCMFilterDisableFlag;   } 
612
613  Void    setLFCrossTileBoundaryFlag               ( Bool   bValue  )    { m_bLFCrossTileBoundaryFlag = bValue; }
614  Bool    getLFCrossTileBoundaryFlag               ()                    { return m_bLFCrossTileBoundaryFlag;   }
615  Void     setUniformSpacingIdr             ( Int i )           { m_iUniformSpacingIdr = i; }
616  Int      getUniformSpacingIdr             ()                  { return m_iUniformSpacingIdr; }
617#if !REMOVE_TILE_DEPENDENCE
618  Void     setTileBoundaryIndependenceIdr   ( Int i )           { m_iTileBoundaryIndependenceIdr = i; }
619  Int      getTileBoundaryIndependenceIdr   ()                  { return m_iTileBoundaryIndependenceIdr; }
620#endif
621  Void     setNumColumnsMinus1              ( Int i )           { m_iNumColumnsMinus1 = i; }
622  Int      getNumColumnsMinus1              ()                  { return m_iNumColumnsMinus1; }
623  Void     setColumnWidth ( UInt* columnWidth )
624  {
625    if( m_iUniformSpacingIdr == 0 && m_iNumColumnsMinus1 > 0 )
626    {
627      m_puiColumnWidth = new UInt[ m_iNumColumnsMinus1 ];
628
629      for(Int i=0; i<m_iNumColumnsMinus1; i++)
630      {
631        m_puiColumnWidth[i] = columnWidth[i];
632     }
633    }
634  }
635  UInt     getColumnWidth  (UInt columnIdx) { return *( m_puiColumnWidth + columnIdx ); }
636  Void     setNumRowsMinus1( Int i )        { m_iNumRowsMinus1 = i; }
637  Int      getNumRowsMinus1()               { return m_iNumRowsMinus1; }
638  Void     setRowHeight    ( UInt* rowHeight )
639  {
640    if( m_iUniformSpacingIdr == 0 && m_iNumRowsMinus1 > 0 )
641    {
642      m_puiRowHeight = new UInt[ m_iNumRowsMinus1 ];
643
644      for(Int i=0; i<m_iNumRowsMinus1; i++)
645      {
646        m_puiRowHeight[i] = rowHeight[i];
647      }
648    }
649  }
650  UInt     getRowHeight           (UInt rowIdx)    { return *( m_puiRowHeight + rowIdx ); }
651  Bool getScalingListFlag       ()         { return m_scalingListEnabledFlag;     }
652  Void setScalingListFlag       ( Bool b ) { m_scalingListEnabledFlag  = b;       }
653#if H0567_DPB_PARAMETERS_PER_TEMPORAL_LAYER
654  UInt getMaxDecPicBuffering  (UInt tlayer)            { return m_uiMaxDecPicBuffering[tlayer]; }
655  Void setMaxDecPicBuffering  ( UInt ui, UInt tlayer ) { m_uiMaxDecPicBuffering[tlayer] = ui;   }
656  UInt getMaxLatencyIncrease  (UInt tlayer)            { return m_uiMaxLatencyIncrease[tlayer];   }
657  Void setMaxLatencyIncrease  ( UInt ui , UInt tlayer) { m_uiMaxLatencyIncrease[tlayer] = ui;      }
658#else
659  UInt getMaxDecFrameBuffering  ()            { return m_uiMaxDecFrameBuffering; }
660  Void setMaxDecFrameBuffering  ( UInt ui )   { m_uiMaxDecFrameBuffering = ui;   }
661  UInt getMaxLatencyIncrease    ()            { return m_uiMaxLatencyIncrease;   }
662  Void setMaxLatencyIncrease    ( UInt ui )   { m_uiMaxLatencyIncrease= ui;      }
663#endif
664#if TILES_WPP_ENTRY_POINT_SIGNALLING
665  UInt getTilesOrEntropyCodingSyncIdc ()                    { return m_tilesOrEntropyCodingSyncIdc;   }
666  Void setTilesOrEntropyCodingSyncIdc ( UInt val )          { m_tilesOrEntropyCodingSyncIdc = val;    }
667  Int  getNumSubstreams               ()                    { return m_numSubstreams;                 }
668  Void setNumSubstreams               ( Int numSubstreams ) { m_numSubstreams = numSubstreams;        }
669#endif
670
671#if HHI_DMM_WEDGE_INTRA || HHI_DMM_PRED_TEX
672  Bool getUseDMM()         { return m_bUseDMM; }
673  Void setUseDMM( Bool b ) { m_bUseDMM = b;    }
674#endif
675
676#if OL_QTLIMIT_PREDCODING_B0068
677  Void setUseQTLPC( Bool b ) { m_bUseQTLPC = b;    }
678  Bool getUseQTLPC()         { return m_bUseQTLPC; }
679#endif
680
681  Void initMultiviewSPS      ( UInt uiViewId, Int iViewOrderIdx = 0, UInt uiCamParPrecision = 0, Bool bCamParSlice = false, Int** aaiScale = 0, Int** aaiOffset = 0 );
682  Void initMultiviewSPSDepth ( UInt uiViewId, Int iViewOrderIdx );
683
684  UInt getViewId             ()  { return m_uiViewId; }
685  Int  getViewOrderIdx       ()  { return m_iViewOrderIdx; }
686  Bool isDepth               ()  { return m_bDepth; }
687  UInt getCamParPrecision    ()  { return m_uiCamParPrecision; }
688  Bool hasCamParInSliceHeader()  { return m_bCamParInSliceHeader; }
689  Int* getCodedScale         ()  { return m_aaiCodedScale [0]; }
690  Int* getCodedOffset        ()  { return m_aaiCodedOffset[0]; }
691  Int* getInvCodedScale      ()  { return m_aaiCodedScale [1]; }
692  Int* getInvCodedOffset     ()  { return m_aaiCodedOffset[1]; }
693
694
695#if DEPTH_MAP_GENERATION
696  Void setPredDepthMapGeneration( UInt uiViewId, Bool bIsDepth, UInt uiPdmGenMode = 0, UInt uiPdmMvPredMode = 0, UInt uiPdmPrec = 0, Int** aaiPdmScaleNomDelta = 0, Int** aaiPdmOffset = 0 );
697#endif
698#if HHI_INTER_VIEW_RESIDUAL_PRED
699  Void  setMultiviewResPredMode  ( UInt uiResPrdMode ) { m_uiMultiviewResPredMode = uiResPrdMode; }
700#endif
701
702#if DEPTH_MAP_GENERATION
703  UInt getPredDepthMapGeneration()          { return m_uiPredDepthMapGeneration; }
704  UInt getPdmPrecision          ()          { return m_uiPdmPrecision;           }
705  Int* getPdmScaleNomDelta      ()          { return m_aiPdmScaleNomDelta;       }
706  Int* getPdmOffset             ()          { return m_aiPdmOffset;              }
707#endif
708
709#if HHI_INTER_VIEW_MOTION_PRED
710  UInt  getMultiviewMvPredMode   ()          { return m_uiMultiviewMvPredMode;    }
711#endif
712#if HHI_INTER_VIEW_RESIDUAL_PRED
713  UInt  getMultiviewResPredMode  ()          { return m_uiMultiviewResPredMode;   }
714#endif
715
716#if DEPTH_MAP_GENERATION
717  Void                    setDepthMapGenerator( TComDepthMapGenerator* pcDepthMapGenerator )  { m_pcDepthMapGenerator = pcDepthMapGenerator; }
718  TComDepthMapGenerator*  getDepthMapGenerator()                                              { return m_pcDepthMapGenerator; }
719#endif
720#if HHI_INTER_VIEW_RESIDUAL_PRED
721  Void                    setResidualGenerator( TComResidualGenerator* pcResidualGenerator )  { m_pcResidualGenerator = pcResidualGenerator; }
722  TComResidualGenerator*  getResidualGenerator()                                              { return m_pcResidualGenerator; }
723#endif
724};
725
726#if !RPS_IN_SPS
727/// Reference Picture Set class
728class TComReferencePictureSet
729{
730private:
731  Int m_numberOfPictures;
732  Int m_numberOfNegativePictures;
733  Int m_numberOfPositivePictures;
734  Int m_numberOfLongtermPictures;
735  Int  m_deltaPOC[MAX_NUM_REF_PICS];
736  Int  m_POC[MAX_NUM_REF_PICS];
737  Bool m_used[MAX_NUM_REF_PICS];
738  Bool m_interRPSPrediction;
739  Int  m_deltaRIdxMinus1;   
740  Int  m_deltaRPS; 
741  Int  m_numRefIdc; 
742  Int  m_refIdc[MAX_NUM_REF_PICS+1];
743
744public:
745  TComReferencePictureSet();
746  virtual ~TComReferencePictureSet();
747
748  Void setUsed(Int bufferNum, Bool used);
749  Void setDeltaPOC(Int bufferNum, Int deltaPOC);
750  Void setPOC(Int bufferNum, Int deltaPOC);
751  Void setNumberOfPictures(Int numberOfPictures);
752
753  Int  getUsed(Int bufferNum);
754  Int  getDeltaPOC(Int bufferNum);
755  Int  getPOC(Int bufferNum);
756  Int  getNumberOfPictures();
757
758  Void setNumberOfNegativePictures(Int number)  { m_numberOfNegativePictures = number; }
759  Int  getNumberOfNegativePictures()            { return m_numberOfNegativePictures; }
760  Void setNumberOfPositivePictures(Int number)  { m_numberOfPositivePictures = number; }
761  Int  getNumberOfPositivePictures()            { return m_numberOfPositivePictures; }
762  Void setNumberOfLongtermPictures(Int number)  { m_numberOfLongtermPictures = number; }
763  Int  getNumberOfLongtermPictures()            { return m_numberOfLongtermPictures; }
764
765  Void setInterRPSPrediction(Bool flag)         { m_interRPSPrediction = flag; }
766  Bool getInterRPSPrediction()                  { return m_interRPSPrediction; }
767  Void setDeltaRIdxMinus1(Int x)                { m_deltaRIdxMinus1 = x; }
768  Int  getDeltaRIdxMinus1()                     { return m_deltaRIdxMinus1; }
769  Void setDeltaRPS(Int x)                       { m_deltaRPS = x; }
770  Int  getDeltaRPS()                            { return m_deltaRPS; }
771  Void setNumRefIdc(Int x)                      { m_numRefIdc = x; }
772  Int  getNumRefIdc()                           { return m_numRefIdc; }
773
774  Void setRefIdc(Int bufferNum, Int refIdc);
775  Int  getRefIdc(Int bufferNum);
776
777  Void sortDeltaPOC();
778  Void printDeltaPOC();
779};
780
781/// Reference Picture Set set class
782class TComRPSList
783{
784private:
785  Int  m_numberOfReferencePictureSets;
786  TComReferencePictureSet* m_referencePictureSets;
787 
788public:
789  TComRPSList();
790  virtual ~TComRPSList();
791 
792  Void  create  (Int numberOfEntries);
793  Void  destroy ();
794
795
796  TComReferencePictureSet* getReferencePictureSet(Int referencePictureSetNum);
797  Int getNumberOfReferencePictureSets();
798  Void setNumberOfReferencePictureSets(Int numberOfReferencePictureSets);
799};
800#endif
801
802/// Reference Picture Lists class
803class TComRefPicListModification
804{
805private:
806  UInt      m_bRefPicListModificationFlagL0; 
807  UInt      m_bRefPicListModificationFlagL1; 
808#if !H0137_0138_LIST_MODIFICATION
809  UInt      m_uiNumberOfRefPicListModificationsL0;
810  UInt      m_uiNumberOfRefPicListModificationsL1;
811  UInt      m_ListIdcL0[32];
812#endif
813  UInt      m_RefPicSetIdxL0[32];
814#if !H0137_0138_LIST_MODIFICATION
815  UInt      m_ListIdcL1[32];
816#endif
817  UInt      m_RefPicSetIdxL1[32];
818   
819public:
820  TComRefPicListModification();
821  virtual ~TComRefPicListModification();
822 
823  Void  create                    ();
824  Void  destroy                   ();
825
826  Bool       getRefPicListModificationFlagL0() { return m_bRefPicListModificationFlagL0; }
827  Void       setRefPicListModificationFlagL0(Bool flag) { m_bRefPicListModificationFlagL0 = flag; }
828  Bool       getRefPicListModificationFlagL1() { return m_bRefPicListModificationFlagL1; }
829  Void       setRefPicListModificationFlagL1(Bool flag) { m_bRefPicListModificationFlagL1 = flag; }
830#if !H0137_0138_LIST_MODIFICATION
831  UInt       getNumberOfRefPicListModificationsL0() { return m_uiNumberOfRefPicListModificationsL0; }
832  Void       setNumberOfRefPicListModificationsL0(UInt nr) { m_uiNumberOfRefPicListModificationsL0 = nr; }
833  UInt       getNumberOfRefPicListModificationsL1() { return m_uiNumberOfRefPicListModificationsL1; }
834  Void       setNumberOfRefPicListModificationsL1(UInt nr) { m_uiNumberOfRefPicListModificationsL1 = nr; }
835  Void       setListIdcL0(UInt idx, UInt idc) { m_ListIdcL0[idx] = idc; }
836  UInt       getListIdcL0(UInt idx) { return m_ListIdcL0[idx]; }
837#endif
838  Void       setRefPicSetIdxL0(UInt idx, UInt refPicSetIdx) { m_RefPicSetIdxL0[idx] = refPicSetIdx; }
839  UInt       getRefPicSetIdxL0(UInt idx) { return m_RefPicSetIdxL0[idx]; }
840#if !H0137_0138_LIST_MODIFICATION
841  Void       setListIdcL1(UInt idx, UInt idc) { m_ListIdcL1[idx] = idc; }
842  UInt       getListIdcL1(UInt idx) { return m_ListIdcL1[idx]; }
843#endif
844  Void       setRefPicSetIdxL1(UInt idx, UInt refPicSetIdx) { m_RefPicSetIdxL1[idx] = refPicSetIdx; }
845  UInt       getRefPicSetIdxL1(UInt idx) { return m_RefPicSetIdxL1[idx]; }
846};
847
848/// PPS class
849class TComPPS
850{
851private:
852  Int         m_PPSId;                    // pic_parameter_set_id
853  Int         m_SPSId;                    // seq_parameter_set_id
854  Int         m_picInitQPMinus26;
855  Bool        m_useDQP;
856  Bool        m_bConstrainedIntraPred;    // constrained_intra_pred_flag
857 
858  // access channel
859  TComSPS*    m_pcSPS;
860#if !RPS_IN_SPS
861  TComRPSList* m_RPSList;
862#endif
863  UInt        m_uiMaxCuDQPDepth;
864  UInt        m_uiMinCuDQPSize;
865
866  Int        m_iChromaQpOffset;
867  Int        m_iChromaQpOffset2nd;
868
869#if !RPS_IN_SPS
870  Bool        m_bLongTermRefsPresent;
871#endif
872
873#if !H0566_TLA
874  UInt        m_uiNumTlayerSwitchingFlags;            // num_temporal_layer_switching_point_flags
875  Bool        m_abTLayerSwitchingFlag[ MAX_TLAYER ];  // temporal_layer_switching_point_flag
876#endif
877
878  Int         m_iSliceGranularity;
879
880  Bool        m_bUseWeightPred;           // Use of Weighting Prediction (P_SLICE)
881  UInt        m_uiBiPredIdc;              // Use of Weighting Bi-Prediction (B_SLICE)
882
883#if H0388
884  Bool        m_OutputFlagPresentFlag;   // Indicates the presence of output_flag in slice header
885#endif
886
887  Int      m_iTileBehaviorControlPresentFlag;
888  Bool     m_bLFCrossTileBoundaryFlag;
889  Int      m_iColumnRowInfoPresent;
890  Int      m_iUniformSpacingIdr;
891#if !REMOVE_TILE_DEPENDENCE
892  Int      m_iTileBoundaryIndependenceIdr;
893#endif
894  Int      m_iNumColumnsMinus1;
895  UInt*    m_puiColumnWidth;
896  Int      m_iNumRowsMinus1;
897  UInt*    m_puiRowHeight;
898 
899  Int      m_iEntropyCodingMode; // !!! in PPS now, but also remains in slice header!
900#if !WPP_SIMPLIFICATION 
901  Int      m_iEntropyCodingSynchro;
902  Bool     m_bCabacIstateReset;
903#endif
904  Int      m_iNumSubstreams;
905
906  Bool     m_enableTMVPFlag;
907
908#if MULTIBITS_DATA_HIDING
909  Int      m_signHideFlag;
910  Int      m_signHidingThreshold;
911#endif
912
913#if CABAC_INIT_FLAG
914  Bool     m_cabacInitPresentFlag;
915  UInt     m_encCABACTableIdx;           // Used to transmit table selection across slices
916#if FIX_POZNAN_CABAC_INIT_FLAG
917  UInt     m_encPrevPOC;
918#endif
919#endif
920#if DBL_CONTROL
921  Bool     m_DeblockingFilterControlPresent;
922#endif
923#if PARALLEL_MERGE
924  UInt m_log2ParallelMergeLevelMinus2;
925#endif
926public:
927  TComPPS();
928  virtual ~TComPPS();
929 
930  Int       getPPSId ()      { return m_PPSId; }
931  Void      setPPSId (Int i) { m_PPSId = i; }
932  Int       getSPSId ()      { return m_SPSId; }
933  Void      setSPSId (Int i) { m_SPSId = i; }
934 
935  Int       getSliceGranularity()        { return m_iSliceGranularity; }
936  Void      setSliceGranularity( Int i ) { m_iSliceGranularity = i;    }
937  Int       getPicInitQPMinus26 ()         { return  m_picInitQPMinus26; }
938  Void      setPicInitQPMinus26 ( Int i )  { m_picInitQPMinus26 = i;     }
939  Bool      getUseDQP ()                   { return m_useDQP;        }
940  Void      setUseDQP ( Bool b )           { m_useDQP   = b;         }
941  Bool      getConstrainedIntraPred ()         { return  m_bConstrainedIntraPred; }
942  Void      setConstrainedIntraPred ( Bool b ) { m_bConstrainedIntraPred = b;     }
943
944#if !H0566_TLA
945  UInt      getNumTLayerSwitchingFlags()                                  { return m_uiNumTlayerSwitchingFlags; }
946  Void      setNumTLayerSwitchingFlags( UInt uiNumTlayerSwitchingFlags )  { assert( uiNumTlayerSwitchingFlags < MAX_TLAYER ); m_uiNumTlayerSwitchingFlags = uiNumTlayerSwitchingFlags; }
947
948  Bool      getTLayerSwitchingFlag( UInt uiTLayer )                       { assert( uiTLayer < MAX_TLAYER ); return m_abTLayerSwitchingFlag[ uiTLayer ]; }
949  Void      setTLayerSwitchingFlag( UInt uiTLayer, Bool bValue )          { m_abTLayerSwitchingFlag[ uiTLayer ] = bValue; }
950#endif
951
952#if !RPS_IN_SPS
953  Bool      getLongTermRefsPresent()         { return m_bLongTermRefsPresent; }
954  Void      setLongTermRefsPresent(Bool b)   { m_bLongTermRefsPresent=b;      }
955#endif
956  Void      setSPS              ( TComSPS* pcSPS ) { m_pcSPS = pcSPS; }
957  TComSPS*  getSPS              ()         { return m_pcSPS;          }
958#if !RPS_IN_SPS
959  Void      setRPSList          ( TComRPSList* RPSList ) { m_RPSList = RPSList; }
960  TComRPSList* getRPSList       ()         { return m_RPSList;        }
961#endif
962  Void      setMaxCuDQPDepth    ( UInt u ) { m_uiMaxCuDQPDepth = u;   }
963  UInt      getMaxCuDQPDepth    ()         { return m_uiMaxCuDQPDepth;}
964  Void      setMinCuDQPSize     ( UInt u ) { m_uiMinCuDQPSize = u;    }
965  UInt      getMinCuDQPSize     ()         { return m_uiMinCuDQPSize; }
966
967  Void      setChromaQpOffset   ( Int i ) { m_iChromaQpOffset = i; }
968  Int       getChromaQpOffset   () { return m_iChromaQpOffset;}
969  Void      setChromaQpOffset2nd( Int i ) { m_iChromaQpOffset2nd = i; }
970  Int       getChromaQpOffset2nd() { return m_iChromaQpOffset2nd;}
971
972  Bool getUseWP                     ()          { return m_bUseWeightPred;  }
973  UInt getWPBiPredIdc               ()          { return m_uiBiPredIdc;     }
974
975  Void setUseWP                     ( Bool b )  { m_bUseWeightPred = b;     }
976  Void setWPBiPredIdc               ( UInt u )  { m_uiBiPredIdc = u;        }
977
978#if H0388
979  Void      setOutputFlagPresentFlag( Bool b )  { m_OutputFlagPresentFlag = b;    }
980  Bool      getOutputFlagPresentFlag()          { return m_OutputFlagPresentFlag; }
981#endif
982
983  Void    setTileBehaviorControlPresentFlag        ( Int i )             { m_iTileBehaviorControlPresentFlag = i;    }
984  Int     getTileBehaviorControlPresentFlag        ()                    { return m_iTileBehaviorControlPresentFlag; }
985  Void    setLFCrossTileBoundaryFlag               ( Bool   bValue  )    { m_bLFCrossTileBoundaryFlag = bValue; }
986  Bool    getLFCrossTileBoundaryFlag               ()                    { return m_bLFCrossTileBoundaryFlag;   }
987  Void     setColumnRowInfoPresent          ( Int i )           { m_iColumnRowInfoPresent = i; }
988  Int      getColumnRowInfoPresent          ()                  { return m_iColumnRowInfoPresent; }
989  Void     setUniformSpacingIdr             ( Int i )           { m_iUniformSpacingIdr = i; }
990  Int      getUniformSpacingIdr             ()                  { return m_iUniformSpacingIdr; }
991#if !REMOVE_TILE_DEPENDENCE
992  Void     setTileBoundaryIndependenceIdr   ( Int i )           { m_iTileBoundaryIndependenceIdr = i; }
993  Int      getTileBoundaryIndependenceIdr   ()                  { return m_iTileBoundaryIndependenceIdr; }
994#endif
995  Void     setNumColumnsMinus1              ( Int i )           { m_iNumColumnsMinus1 = i; }
996  Int      getNumColumnsMinus1              ()                  { return m_iNumColumnsMinus1; }
997  Void     setColumnWidth ( UInt* columnWidth )
998  {
999    if( m_iUniformSpacingIdr == 0 && m_iNumColumnsMinus1 > 0 )
1000    {
1001      m_puiColumnWidth = new UInt[ m_iNumColumnsMinus1 ];
1002
1003      for(Int i=0; i<m_iNumColumnsMinus1; i++)
1004      {
1005        m_puiColumnWidth[i] = columnWidth[i];
1006      }
1007    }
1008  }
1009  UInt     getColumnWidth  (UInt columnIdx) { return *( m_puiColumnWidth + columnIdx ); }
1010  Void     setNumRowsMinus1( Int i )        { m_iNumRowsMinus1 = i; }
1011  Int      getNumRowsMinus1()               { return m_iNumRowsMinus1; }
1012  Void     setRowHeight    ( UInt* rowHeight )
1013  {
1014    if( m_iUniformSpacingIdr == 0 && m_iNumRowsMinus1 > 0 )
1015    {
1016      m_puiRowHeight = new UInt[ m_iNumRowsMinus1 ];
1017
1018      for(Int i=0; i<m_iNumRowsMinus1; i++)
1019      {
1020        m_puiRowHeight[i] = rowHeight[i];
1021      }
1022    }
1023  }
1024  UInt     getRowHeight           (UInt rowIdx)    { return *( m_puiRowHeight + rowIdx ); }
1025  Void     setEntropyCodingMode(Int iEntropyCodingMode)       { m_iEntropyCodingMode = iEntropyCodingMode; }
1026  Int      getEntropyCodingMode()                             { return m_iEntropyCodingMode; }
1027#if !WPP_SIMPLIFICATION
1028  Void     setEntropyCodingSynchro(Int iEntropyCodingSynchro) { m_iEntropyCodingSynchro = iEntropyCodingSynchro; }
1029  Int      getEntropyCodingSynchro()                          { return m_iEntropyCodingSynchro; }
1030  Void     setCabacIstateReset(Bool bCabacIstateReset)        { m_bCabacIstateReset = bCabacIstateReset; }
1031  Bool     getCabacIstateReset()                              { return m_bCabacIstateReset; }
1032#endif
1033  Void     setNumSubstreams(Int iNumSubstreams)               { m_iNumSubstreams = iNumSubstreams; }
1034  Int      getNumSubstreams()                                 { return m_iNumSubstreams; }
1035
1036#if MULTIBITS_DATA_HIDING
1037  Void      setSignHideFlag( Int signHideFlag ) { m_signHideFlag = signHideFlag; }
1038  Void      setTSIG( Int tsig )                 { m_signHidingThreshold = tsig; }
1039  Int       getSignHideFlag()                    { return m_signHideFlag; }
1040  Int       getTSIG()                            { return m_signHidingThreshold; }
1041#endif
1042
1043  Void     setEnableTMVPFlag( Bool b )  { m_enableTMVPFlag = b;    }
1044  Bool     getEnableTMVPFlag()          { return m_enableTMVPFlag; }
1045
1046#if CABAC_INIT_FLAG
1047  Void     setCabacInitPresentFlag( Bool flag )     { m_cabacInitPresentFlag = flag;    }
1048  Void     setEncCABACTableIdx( Int idx )           { m_encCABACTableIdx = idx;         }
1049  Bool     getCabacInitPresentFlag()                { return m_cabacInitPresentFlag;    }
1050  UInt     getEncCABACTableIdx()                    { return m_encCABACTableIdx;        }
1051#if FIX_POZNAN_CABAC_INIT_FLAG
1052  Void     setEncPrevPOC(UInt uiPOC)                { m_encPrevPOC = uiPOC;             }
1053  UInt     getEncPrevPOC()                          { return m_encPrevPOC;              }
1054#endif
1055#endif
1056#if DBL_CONTROL
1057  Void setDeblockingFilterControlPresent    ( Bool bValue )       { m_DeblockingFilterControlPresent = bValue; }
1058  Bool getDeblockingFilterControlPresent    ()                    { return m_DeblockingFilterControlPresent; }
1059#endif
1060#if PARALLEL_MERGE
1061  UInt getLog2ParallelMergeLevelMinus2      ()                    { return m_log2ParallelMergeLevelMinus2; }
1062  Void setLog2ParallelMergeLevelMinus2      (UInt mrgLevel)       { m_log2ParallelMergeLevelMinus2 = mrgLevel; }
1063#endif
1064};
1065
1066/// SCALING_LIST class
1067class TComScalingList
1068{
1069public:
1070  TComScalingList();
1071  virtual ~TComScalingList();
1072  Void     setScalingListPresentFlag    (Bool b)                               { m_scalingListPresentFlag = b;    }
1073  Bool     getScalingListPresentFlag    ()                                     { return m_scalingListPresentFlag; }
1074  Int*     getScalingListAddress          (UInt sizeId, UInt listId)           { return m_scalingListCoef[sizeId][listId]; } //!< get matrix coefficient
1075  Bool     checkPredMode                  (UInt sizeId, UInt listId);
1076  Void     setRefMatrixId                 (UInt sizeId, UInt listId, UInt u)   { m_refMatrixId[sizeId][listId] = u;    }     //!< set reference matrix ID
1077  UInt     getRefMatrixId                 (UInt sizeId, UInt listId)           { return m_refMatrixId[sizeId][listId]; }     //!< get reference matrix ID
1078  Int*     getScalingListDefaultAddress   (UInt sizeId, UInt listId);                                                        //!< get default matrix coefficient
1079  Void     processDefaultMarix            (UInt sizeId, UInt listId);
1080#if SCALING_LIST
1081  Void     setScalingListDC               (UInt sizeId, UInt listId, UInt u)   { m_scalingListDC[sizeId][listId] = u; }      //!< set DC value
1082  Int      getScalingListDC               (UInt sizeId, UInt listId)           { return m_scalingListDC[sizeId][listId]; }   //!< get DC value
1083  Void     checkDcOfMatrix                ();
1084  Void     setUseDefaultScalingMatrixFlag (UInt sizeId, UInt listId, Bool b)   { m_useDefaultScalingMatrixFlag[sizeId][listId] = b;    } //!< set default matrix enabled/disabled in each matrix
1085  Bool     getUseDefaultScalingMatrixFlag (UInt sizeId, UInt listId)           { return m_useDefaultScalingMatrixFlag[sizeId][listId]; } //!< get default matrix enabled/disabled in each matrix
1086#endif
1087  Void     processRefMatrix               (UInt sizeId, UInt listId , UInt refListId );
1088  Bool     xParseScalingList              (char* pchFile);
1089
1090private:
1091  Void     init                    ();
1092  Void     destroy                 ();
1093#if SCALING_LIST
1094  Int      m_scalingListDC               [SCALING_LIST_SIZE_NUM][SCALING_LIST_NUM]; //!< the DC value of the matrix coefficient for 16x16
1095  Bool     m_useDefaultScalingMatrixFlag [SCALING_LIST_SIZE_NUM][SCALING_LIST_NUM]; //!< UseDefaultScalingMatrixFlag
1096#endif
1097  UInt     m_refMatrixId                 [SCALING_LIST_SIZE_NUM][SCALING_LIST_NUM]; //!< RefMatrixID
1098  Bool     m_scalingListPresentFlag;                                                //!< flag for using default matrix
1099  UInt     m_predMatrixId                [SCALING_LIST_SIZE_NUM][SCALING_LIST_NUM]; //!< reference list index
1100  Int      *m_scalingListCoef            [SCALING_LIST_SIZE_NUM][SCALING_LIST_NUM]; //!< quantization matrix
1101};
1102
1103/// APS class
1104class TComAPS
1105{
1106public:
1107  TComAPS();
1108  virtual ~TComAPS();
1109
1110  Void      setAPSID      (Int iID)   {m_apsID = iID;            }  //!< set APS ID
1111  Int       getAPSID      ()          {return m_apsID;           }  //!< get APS ID
1112  Void      setSaoEnabled (Bool bVal) {m_bSaoEnabled = bVal;     }  //!< set SAO enabled/disabled in APS
1113  Bool      getSaoEnabled ()          {return m_bSaoEnabled;     }  //!< get SAO enabled/disabled in APS
1114  Void      setAlfEnabled (Bool bVal) {m_bAlfEnabled = bVal;     }  //!< set ALF enabled/disabled in APS
1115  Bool      getAlfEnabled ()          {return m_bAlfEnabled;     }  //!< get ALF enabled/disabled in APS
1116
1117#if LCU_SYNTAX_ALF
1118  AlfParamSet* getAlfParam   ()          {return m_alfParamSet;}
1119#else
1120  ALFParam* getAlfParam   ()          {return m_pAlfParam;       }  //!< get ALF parameters in APS
1121#endif
1122  SAOParam* getSaoParam   ()          {return m_pSaoParam;       }  //!< get SAO parameters in APS
1123
1124  Void      createSaoParam();   //!< create SAO parameter object
1125  Void      destroySaoParam();  //!< destroy SAO parameter object
1126
1127  Void      createAlfParam();   //!< create ALF parameter object
1128  Void      destroyAlfParam();  //!< destroy ALF parameter object
1129
1130  Void      setLoopFilterOffsetInAPS(Bool val)  {m_loopFilterOffsetInAPS = val; }      //!< set offset for deblocking filter enabled/disabled in APS
1131  Bool      getLoopFilterOffsetInAPS()          {return m_loopFilterOffsetInAPS; }     //!< get offset for deblocking filter enabled/disabled in APS
1132  Void      setLoopFilterDisable(Bool val)      {m_loopFilterDisable = val; }          //!< set offset for deblocking filter disabled
1133  Bool      getLoopFilterDisable()              {return m_loopFilterDisable; }         //!< get offset for deblocking filter disabled
1134  Void      setLoopFilterBetaOffset(Int val)    {m_loopFilterBetaOffsetDiv2 = val; }    //!< set beta offset for deblocking filter
1135  Int       getLoopFilterBetaOffset()           {return m_loopFilterBetaOffsetDiv2; }   //!< get beta offset for deblocking filter
1136  Void      setLoopFilterTcOffset(Int val)      {m_loopFilterTcOffsetDiv2 = val; }      //!< set tc offset for deblocking filter
1137  Int       getLoopFilterTcOffset()             {return m_loopFilterTcOffsetDiv2; }     //!< get tc offset for deblocking filter
1138
1139  Void      createScalingList();
1140  Void      destroyScalingList();
1141  Void      setScalingListEnabled (Bool bVal) { m_scalingListEnabled = bVal; }  //!< set ScalingList enabled/disabled in APS
1142  Bool      getScalingListEnabled ()          { return m_scalingListEnabled; }  //!< get ScalingList enabled/disabled in APS
1143  TComScalingList* getScalingList ()          { return m_scalingList; }         //!< get ScalingList class pointer in APS
1144#if SAO_UNIT_INTERLEAVING
1145  Bool     getSaoInterleavingFlag() {return m_saoInterleavingFlag;}             //!< get SAO interleaving flag in APS
1146  Void     setSaoInterleavingFlag(Bool bVal) {m_saoInterleavingFlag = bVal;}    //!< set SAO interleaving flag in APS
1147#endif
1148
1149private:
1150  Int         m_apsID;        //!< APS ID
1151  Bool        m_bSaoEnabled;  //!< SAO enabled/disabled in APS (true for enabled)
1152  Bool        m_bAlfEnabled;  //!< ALF enabled/disabled in APS (true for enabled)
1153  SAOParam*   m_pSaoParam;    //!< SAO parameter object pointer
1154#if LCU_SYNTAX_ALF
1155  AlfParamSet*   m_alfParamSet;
1156#else
1157  ALFParam*   m_pAlfParam;    //!< ALF parameter object pointer
1158#endif
1159  Bool        m_loopFilterOffsetInAPS;       //< offset for deblocking filter in 0 = slice header, 1 = APS
1160  Bool        m_loopFilterDisable;           //< Deblocking filter enabled/disabled in APS
1161  Int         m_loopFilterBetaOffsetDiv2;    //< beta offset for deblocking filter
1162  Int         m_loopFilterTcOffsetDiv2;      //< tc offset for deblocking filter
1163  Bool        m_scalingListEnabled;     //!< ScalingList enabled/disabled in APS (true for enabled)
1164  TComScalingList*     m_scalingList;   //!< ScalingList class pointer
1165#if SAO_UNIT_INTERLEAVING
1166  Bool        m_saoInterleavingFlag;    //!< SAO interleaving flag
1167#endif
1168
1169public:
1170  TComAPS& operator= (const TComAPS& src);  //!< "=" operator for APS object
1171};
1172
1173typedef struct {
1174  // Explicit weighted prediction parameters parsed in slice header,
1175  // or Implicit weighted prediction parameters (8 bits depth values).
1176  Bool        bPresentFlag;
1177  UInt        uiLog2WeightDenom;
1178  Int         iWeight;
1179  Int         iOffset;
1180
1181  // Weighted prediction scaling values built from above parameters (bitdepth scaled):
1182  Int         w, o, offset, shift, round;
1183} wpScalingParam;
1184
1185typedef struct {
1186  Int64 iAC;
1187  Int64 iDC;
1188} wpACDCParam;
1189
1190/// slice header class
1191class TComSlice
1192{
1193 
1194private:
1195  //  Bitstream writing
1196  Int         m_iAPSId; //!< APS ID in slice header
1197  bool       m_alfEnabledFlag;
1198  bool       m_saoEnabledFlag;
1199#if SAO_UNIT_INTERLEAVING
1200  bool       m_saoInterleavingFlag;   ///< SAO interleaving flag
1201  bool       m_saoEnabledFlagCb;      ///< SAO Cb enabled flag
1202  bool       m_saoEnabledFlagCr;      ///< SAO Cr enabled flag
1203#endif
1204  Int         m_iPPSId;               ///< picture parameter set ID
1205#if H0388
1206  Bool        m_PicOutputFlag;        ///< pic_output_flag
1207#endif
1208  Int         m_iPOC;
1209  Int         m_iLastIDR;
1210  static Int  m_prevPOC;
1211  TComReferencePictureSet *m_pcRPS;
1212  TComReferencePictureSet m_LocalRPS;
1213  Int         m_iBDidx; 
1214  Int         m_iCombinationBDidx;
1215  Bool        m_bCombineWithReferenceFlag;
1216  TComRefPicListModification m_RefPicListModification;
1217  NalUnitType m_eNalUnitType;            ///< Nal unit type for the slice
1218  NalUnitType m_eNalUnitTypeBaseViewMvc; ///< Nal unit type of the base view slice for multiview coding
1219  SliceType   m_eSliceType;
1220  Int         m_iSliceQp;
1221#if ADAPTIVE_QP_SELECTION
1222  Int         m_iSliceQpBase;
1223#endif
1224  Bool        m_bLoopFilterDisable;
1225  Bool        m_loopFilterOffsetInAPS;
1226  Bool        m_inheritDblParamFromAPS;      //< offsets for deblocking filter inherit from APS
1227  Int         m_loopFilterBetaOffsetDiv2;    //< beta offset for deblocking filter
1228  Int         m_loopFilterTcOffsetDiv2;      //< tc offset for deblocking filter
1229 
1230  Int         m_aiNumRefIdx   [3];    //  for multiple reference of current slice
1231
1232  Int         m_iRefIdxOfLC[2][MAX_NUM_REF_LC];
1233  Int         m_eListIdFromIdxOfLC[MAX_NUM_REF_LC];
1234  Int         m_iRefIdxFromIdxOfLC[MAX_NUM_REF_LC];
1235  Int         m_iRefIdxOfL1FromRefIdxOfL0[MAX_NUM_REF_LC];
1236  Int         m_iRefIdxOfL0FromRefIdxOfL1[MAX_NUM_REF_LC];
1237  Bool        m_bRefPicListModificationFlagLC;
1238  Bool        m_bRefPicListCombinationFlag;
1239
1240  Bool        m_bCheckLDC;
1241
1242  //  Data
1243  Int         m_iSliceQpDelta;
1244  TComPic*    m_apcRefPicList  [2][MAX_NUM_REF+1];
1245  Int         m_aiRefPOCList   [2][MAX_NUM_REF+1];
1246  Int         m_aiRefViewIdList[2][MAX_NUM_REF+1];
1247  TComPic*    m_pcTexturePic;
1248  Int         m_iDepth;
1249 
1250  // referenced slice?
1251  Bool        m_bRefenced;
1252 
1253  // access channel
1254#if VIDYO_VPS_INTEGRATION|QC_MVHEVC_B0046
1255  TComVPS*    m_pcVPS;
1256#endif
1257#if QC_IV_AS_LT_B0046
1258  Bool                  m_bWasLongTerm[2][MAX_NUM_REF+1]; //was long-term picture
1259#endif
1260  TComSPS*    m_pcSPS;
1261  TComPPS*    m_pcPPS;
1262  TComPic*    m_pcPic;
1263#if ADAPTIVE_QP_SELECTION
1264  TComTrQuant* m_pcTrQuant;
1265#endif 
1266  TComAPS*    m_pcAPS;  //!< pointer to APS parameter object
1267
1268  UInt        m_uiColDir;  // direction to get colocated CUs
1269 
1270#if COLLOCATED_REF_IDX
1271  UInt        m_colRefIdx;
1272#endif
1273
1274#if ALF_CHROMA_LAMBDA || SAO_CHROMA_LAMBDA
1275  Double      m_dLambdaLuma;
1276  Double      m_dLambdaChroma;
1277#else
1278  Double      m_dLambda;
1279#endif
1280
1281  Bool        m_abEqualRef  [2][MAX_NUM_REF][MAX_NUM_REF];
1282 
1283  Bool        m_bNoBackPredFlag;
1284  Bool        m_bRefIdxCombineCoding;
1285
1286  UInt        m_uiTLayer;
1287  Bool        m_bTLayerSwitchingFlag;
1288
1289  UInt        m_uiSliceMode;
1290  UInt        m_uiSliceArgument;
1291  UInt        m_uiSliceCurStartCUAddr;
1292  UInt        m_uiSliceCurEndCUAddr;
1293  UInt        m_uiSliceIdx;
1294  UInt        m_uiEntropySliceMode;
1295  UInt        m_uiEntropySliceArgument;
1296  UInt        m_uiEntropySliceCurStartCUAddr;
1297  UInt        m_uiEntropySliceCurEndCUAddr;
1298  Bool        m_bNextSlice;
1299  Bool        m_bNextEntropySlice;
1300  UInt        m_uiSliceBits;
1301  UInt        m_uiEntropySliceCounter;
1302  Bool        m_bFinalized;
1303
1304  wpScalingParam  m_weightPredTable[2][MAX_NUM_REF][3]; // [REF_PIC_LIST_0 or REF_PIC_LIST_1][refIdx][0:Y, 1:U, 2:V]
1305  wpACDCParam    m_weightACDCParam[3];                 // [0:Y, 1:U, 2:V]
1306  wpScalingParam  m_weightPredTableLC[2*MAX_NUM_REF][3]; // [refIdxLC][0:Y, 1:U, 2:V]
1307
1308  UInt        *m_uiTileByteLocation;
1309  UInt        m_uiTileCount;
1310  Int         m_iTileMarkerFlag;
1311  UInt        m_uiTileOffstForMultES;
1312
1313  UInt*       m_puiSubstreamSizes;
1314  TComScalingList*     m_scalingList;                 //!< pointer of quantization matrix
1315#if CABAC_INIT_FLAG
1316  Bool        m_cabacInitFlag; 
1317#else
1318  Int         m_cabacInitIdc; 
1319#endif
1320
1321#if H0111_MVD_L1_ZERO
1322  Bool       m_bLMvdL1Zero;
1323#endif
1324#if TILES_WPP_ENTRY_POINT_SIGNALLING
1325  Int         m_numEntryPointOffsets;
1326#endif
1327
1328  Int        m_viewId;
1329  Bool       m_isDepth;
1330  Int        m_aaiCodedScale [2][MAX_VIEW_NUM];
1331  Int        m_aaiCodedOffset[2][MAX_VIEW_NUM];
1332
1333#if SONY_COLPIC_AVAILABILITY|QC_MVHEVC_B0046
1334  Int         m_iViewOrderIdx;
1335#endif
1336#if LGE_ILLUCOMP_B0045
1337  Bool        m_bApplyIC;
1338#endif
1339
1340public:
1341  TComSlice();
1342  virtual ~TComSlice();
1343 
1344  Void      initSlice       ();
1345  Void      initTiles();
1346
1347#if VIDYO_VPS_INTEGRATION|QC_MVHEVC_B0046
1348  Void      setVPS          ( TComVPS* pcVPS ) { m_pcVPS = pcVPS; }
1349  TComVPS*  getVPS          () { return m_pcVPS; }
1350#endif
1351#if QC_IV_AS_LT_B0046
1352  Void          setWasLongTerm( Bool lt,  RefPicList e, Int iRefIdx ) { m_bWasLongTerm[e][iRefIdx] = lt; }
1353  Bool          getWasLongTerm( RefPicList e, Int iRefIdx           ) { return m_bWasLongTerm[e][iRefIdx] ; }
1354#endif
1355
1356  Void      setSPS          ( TComSPS* pcSPS ) { m_pcSPS = pcSPS; }
1357  TComSPS*  getSPS          () { return m_pcSPS; }
1358 
1359  Void      setPPS          ( TComPPS* pcPPS )         { assert(pcPPS!=NULL); m_pcPPS = pcPPS; m_iPPSId = pcPPS->getPPSId(); }
1360  TComPPS*  getPPS          () { return m_pcPPS; }
1361
1362#if ADAPTIVE_QP_SELECTION
1363  Void          setTrQuant          ( TComTrQuant* pcTrQuant ) { m_pcTrQuant = pcTrQuant; }
1364  TComTrQuant*  getTrQuant          () { return m_pcTrQuant; }
1365#endif
1366
1367  Void      setPPSId        ( Int PPSId )         { m_iPPSId = PPSId; }
1368  Int       getPPSId        () { return m_iPPSId; }
1369  Void      setAPS          ( TComAPS* pcAPS ) { m_pcAPS = pcAPS; } //!< set APS pointer
1370  TComAPS*  getAPS          ()                 { return m_pcAPS;  } //!< get APS pointer
1371  Void      setAPSId        ( Int Id)          { m_iAPSId =Id;    } //!< set APS ID
1372  Int       getAPSId        ()                 { return m_iAPSId; } //!< get APS ID
1373#if H0388
1374  Void      setPicOutputFlag( Bool b )         { m_PicOutputFlag = b;    }
1375  Bool      getPicOutputFlag()                 { return m_PicOutputFlag; }
1376#endif
1377  Void      setAlfEnabledFlag(Bool s) {m_alfEnabledFlag =s; }
1378  Bool      getAlfEnabledFlag() { return m_alfEnabledFlag; }
1379  Void      setSaoEnabledFlag(Bool s) {m_saoEnabledFlag =s; }
1380  Bool      getSaoEnabledFlag() { return m_saoEnabledFlag; }
1381#if SAO_UNIT_INTERLEAVING
1382  Void      setSaoInterleavingFlag(Bool s) {m_saoInterleavingFlag =s; } //!< set SAO interleaving flag
1383  Bool      getSaoInterleavingFlag() { return m_saoInterleavingFlag;  } //!< get SAO interleaving flag
1384  Void      setSaoEnabledFlagCb(Bool s) {m_saoEnabledFlagCb =s; }       //!< set SAO Cb enabled flag
1385  Bool      getSaoEnabledFlagCb() { return m_saoEnabledFlagCb; }        //!< get SAO Cb enabled flag
1386  Void      setSaoEnabledFlagCr(Bool s) {m_saoEnabledFlagCr =s; }       //!< set SAO Cr enabled flag
1387  Bool      getSaoEnabledFlagCr() { return m_saoEnabledFlagCr; }        //!< get SAO Cr enabled flag
1388#endif
1389  Void      setRPS          ( TComReferencePictureSet *pcRPS ) { m_pcRPS = pcRPS; }
1390  TComReferencePictureSet*  getRPS          () { return m_pcRPS; }
1391  TComReferencePictureSet*  getLocalRPS     () { return &m_LocalRPS; }
1392
1393  Void      setRPSidx          ( Int iBDidx ) { m_iBDidx = iBDidx; }
1394  Int       getRPSidx          () { return m_iBDidx; }
1395  Void      setCombinationBDidx          ( Int iCombinationBDidx ) { m_iCombinationBDidx = iCombinationBDidx; }
1396  Int       getCombinationBDidx          () { return m_iCombinationBDidx; }
1397  Void      setCombineWithReferenceFlag          ( Bool bCombineWithReferenceFlag ) { m_bCombineWithReferenceFlag = bCombineWithReferenceFlag; }
1398  Bool      getCombineWithReferenceFlag          () { return m_bCombineWithReferenceFlag; }
1399  Int       getPrevPOC      ()                          { return  m_prevPOC;       }
1400
1401  TComRefPicListModification* getRefPicListModification() { return &m_RefPicListModification; }
1402  Void      setLastIDR(Int iIDRPOC)                       { m_iLastIDR = iIDRPOC; }
1403  Int       getLastIDR()                                  { return m_iLastIDR; }
1404  SliceType getSliceType    ()                          { return  m_eSliceType;         }
1405  Int       getPOC          ()                          { return  m_iPOC;           }
1406  Int       getSliceQp      ()                          { return  m_iSliceQp;           }
1407#if ADAPTIVE_QP_SELECTION
1408  Int       getSliceQpBase  ()                          { return  m_iSliceQpBase;       }
1409#endif
1410  Int       getSliceQpDelta ()                          { return  m_iSliceQpDelta;      }
1411  Bool      getLoopFilterDisable()                      { return  m_bLoopFilterDisable; }
1412  Bool      getLoopFilterOffsetInAPS()                  { return  m_loopFilterOffsetInAPS;}
1413  Bool      getInheritDblParamFromAPS()                 { return  m_inheritDblParamFromAPS; }
1414  Int       getLoopFilterBetaOffset()                   { return  m_loopFilterBetaOffsetDiv2; }
1415  Int       getLoopFilterTcOffset()                     { return  m_loopFilterTcOffsetDiv2; }
1416
1417  Int       getNumRefIdx        ( RefPicList e )                { return  m_aiNumRefIdx[e];             }
1418  TComPic*  getPic              ()                              { return  m_pcPic;                      }
1419  TComPic*  getRefPic           ( RefPicList e, Int iRefIdx)    { return  m_apcRefPicList[e][iRefIdx];  }
1420  Int       getRefPOC           ( RefPicList e, Int iRefIdx)    { return  m_aiRefPOCList[e][iRefIdx];   }
1421  Int       getRefViewId        ( RefPicList e, Int iRefIdx)    { return  m_aiRefViewIdList[e][iRefIdx]; }
1422  TComPic*  getTexturePic       () const                        { return  m_pcTexturePic; }
1423#if SONY_COLPIC_AVAILABILITY
1424  Int       getViewOrderIdx     ()                                  { return  m_iViewOrderIdx;              }
1425#endif
1426  Int       getDepth            ()                              { return  m_iDepth;                     }
1427  UInt      getColDir           ()                              { return  m_uiColDir;                   }
1428#if COLLOCATED_REF_IDX
1429  Bool      getColRefIdx        ()                              { return  m_colRefIdx;                  }
1430  Void      checkColRefIdx      (UInt curSliceIdx, TComPic* pic);
1431#endif
1432  Bool      getCheckLDC     ()                                  { return m_bCheckLDC; }
1433#if H0111_MVD_L1_ZERO
1434  Bool      getMvdL1ZeroFlag ()                                  { return m_bLMvdL1Zero;    }
1435#endif
1436  Int       getRefIdxOfLC       (RefPicList e, Int iRefIdx)     { return m_iRefIdxOfLC[e][iRefIdx];           }
1437  Int       getListIdFromIdxOfLC(Int iRefIdx)                   { return m_eListIdFromIdxOfLC[iRefIdx];       }
1438  Int       getRefIdxFromIdxOfLC(Int iRefIdx)                   { return m_iRefIdxFromIdxOfLC[iRefIdx];       }
1439  Int       getRefIdxOfL0FromRefIdxOfL1(Int iRefIdx)            { return m_iRefIdxOfL0FromRefIdxOfL1[iRefIdx];}
1440  Int       getRefIdxOfL1FromRefIdxOfL0(Int iRefIdx)            { return m_iRefIdxOfL1FromRefIdxOfL0[iRefIdx];}
1441  Bool      getRefPicListModificationFlagLC()                   {return m_bRefPicListModificationFlagLC;}
1442  Void      setRefPicListModificationFlagLC(Bool bflag)         {m_bRefPicListModificationFlagLC=bflag;}     
1443  Bool      getRefPicListCombinationFlag()                      {return m_bRefPicListCombinationFlag;}
1444  Void      setRefPicListCombinationFlag(Bool bflag)            {m_bRefPicListCombinationFlag=bflag;}     
1445  Void      setListIdFromIdxOfLC(Int  iRefIdx, UInt uiVal)      { m_eListIdFromIdxOfLC[iRefIdx]=uiVal; }
1446  Void      setRefIdxFromIdxOfLC(Int  iRefIdx, UInt uiVal)      { m_iRefIdxFromIdxOfLC[iRefIdx]=uiVal; }
1447  Void      setRefIdxOfLC       (RefPicList e, Int iRefIdx, Int RefIdxLC)     { m_iRefIdxOfLC[e][iRefIdx]=RefIdxLC;}
1448
1449  Void      setReferenced(Bool b)                               { m_bRefenced = b; }
1450  Bool      isReferenced()                                      { return m_bRefenced; }
1451 
1452  Void      setPOC              ( Int i )                       { m_iPOC              = i; if(getTLayer()==0) m_prevPOC=i; }
1453  Void      setNalUnitType      ( NalUnitType e )               { m_eNalUnitType      = e;      }
1454  NalUnitType getNalUnitType    ()                              { return m_eNalUnitType;        }
1455  Void      setNalUnitTypeBaseViewMvc  ( NalUnitType e )        { m_eNalUnitTypeBaseViewMvc = e;    }
1456  NalUnitType getNalUnitTypeBaseViewMvc()                       { return m_eNalUnitTypeBaseViewMvc; }
1457  Void      checkCRA(TComReferencePictureSet *pReferencePictureSet, Int& pocCRA, TComList<TComPic*>& rcListPic);
1458  Void      decodingRefreshMarking(Int& pocCRA, Bool& bRefreshPending, TComList<TComPic*>& rcListPic);
1459  Void      setSliceType        ( SliceType e )                 { m_eSliceType        = e;      }
1460  Void      setSliceQp          ( Int i )                       { m_iSliceQp          = i;      }
1461#if ADAPTIVE_QP_SELECTION
1462  Void      setSliceQpBase      ( Int i )                       { m_iSliceQpBase      = i;      }
1463#endif
1464  Void      setSliceQpDelta     ( Int i )                       { m_iSliceQpDelta     = i;      }
1465  Void      setLoopFilterDisable( Bool b )                      { m_bLoopFilterDisable= b;      }
1466  Void      setLoopFilterOffsetInAPS( Bool b )                  { m_loopFilterOffsetInAPS = b;}
1467  Void      setInheritDblParamFromAPS( Bool b )                 { m_inheritDblParamFromAPS = b; }
1468  Void      setLoopFilterBetaOffset( Int i )                    { m_loopFilterBetaOffsetDiv2 = i; }
1469  Void      setLoopFilterTcOffset( Int i )                      { m_loopFilterTcOffsetDiv2 = i; }
1470 
1471  Void      setRefPic           ( TComPic* p, RefPicList e, Int iRefIdx ) { m_apcRefPicList[e][iRefIdx] = p; }
1472  Void      setRefPOC           ( Int i, RefPicList e, Int iRefIdx ) { m_aiRefPOCList[e][iRefIdx] = i; }
1473  Void      setRefViewId        ( Int i, RefPicList e, Int iRefIdx ) { m_aiRefViewIdList[e][iRefIdx] = i; }
1474  Void      setTexturePic       ( TComPic *pcTexturePic )       { m_pcTexturePic = pcTexturePic; }
1475#if SONY_COLPIC_AVAILABILITY
1476  Void      setViewOrderIdx     ( Int i )                       { m_iViewOrderIdx     = i;      }
1477#endif
1478  Void      setNumRefIdx        ( RefPicList e, Int i )         { m_aiNumRefIdx[e]    = i;      }
1479  Void      setPic              ( TComPic* p )                  { m_pcPic             = p;      }
1480  Void      setDepth            ( Int iDepth )                  { m_iDepth            = iDepth; }
1481 
1482  Int       getNumPocTotalCurr();
1483  Int       getNumPocTotalCurrMvc();
1484  Void      setRefPicListMvc    ( TComList<TComPic*>& rcListPic, std::vector<TComPic*>& rapcInterViewRefPics );
1485  Void      setRefPOCnViewListsMvc();
1486
1487  Void      setColDir           ( UInt uiDir ) { m_uiColDir = uiDir; }
1488#if COLLOCATED_REF_IDX
1489  Void      setColRefIdx        ( UInt refIdx) { m_colRefIdx = refIdx; }
1490#endif
1491  Void      setCheckLDC         ( Bool b )                      { m_bCheckLDC = b; }
1492#if H0111_MVD_L1_ZERO
1493  Void      setMvdL1ZeroFlag     ( Bool b)                       { m_bLMvdL1Zero = b; }
1494#endif 
1495
1496  Bool      isIntra         ()                          { return  m_eSliceType == I_SLICE;  }
1497  Bool      isInterB        ()                          { return  m_eSliceType == B_SLICE;  }
1498  Bool      isInterP        ()                          { return  m_eSliceType == P_SLICE;  }
1499 
1500#if ALF_CHROMA_LAMBDA || SAO_CHROMA_LAMBDA 
1501  Void      setLambda( Double d, Double e ) { m_dLambdaLuma = d; m_dLambdaChroma = e;}
1502  Double    getLambdaLuma() { return m_dLambdaLuma;        }
1503  Double    getLambdaChroma() { return m_dLambdaChroma;        }
1504#else
1505  Void      setLambda( Double d ) { m_dLambda = d; }
1506  Double    getLambda() { return m_dLambda;        }
1507#endif
1508 
1509  Void      initEqualRef();
1510  Bool      isEqualRef  ( RefPicList e, Int iRefIdx1, Int iRefIdx2 )
1511  {
1512    if (iRefIdx1 < 0 || iRefIdx2 < 0) return false;
1513    return m_abEqualRef[e][iRefIdx1][iRefIdx2];
1514  }
1515 
1516  Void setEqualRef( RefPicList e, Int iRefIdx1, Int iRefIdx2, Bool b)
1517  {
1518    m_abEqualRef[e][iRefIdx1][iRefIdx2] = m_abEqualRef[e][iRefIdx2][iRefIdx1] = b;
1519  }
1520 
1521  static Void      sortPicList         ( TComList<TComPic*>& rcListPic );
1522 
1523  Bool getNoBackPredFlag() { return m_bNoBackPredFlag; }
1524  Void setNoBackPredFlag( Bool b ) { m_bNoBackPredFlag = b; }
1525  Bool getRefIdxCombineCoding() { return m_bRefIdxCombineCoding; }
1526  Void setRefIdxCombineCoding( Bool b ) { m_bRefIdxCombineCoding = b; }
1527  Void generateCombinedList       ();
1528
1529  UInt getTLayer             ()                            { return m_uiTLayer;                      }
1530  Void setTLayer             ( UInt uiTLayer )             { m_uiTLayer = uiTLayer;                  }
1531
1532#if !H0566_TLA
1533  Bool getTLayerSwitchingFlag()                            { return m_bTLayerSwitchingFlag;          }
1534  Void setTLayerSwitchingFlag( Bool bValue )               { m_bTLayerSwitchingFlag = bValue;        }
1535#endif
1536
1537  Void setTLayerInfo( UInt uiTLayer );
1538  Void decodingMarking( TComList<TComPic*>& rcListPic, Int iGOPSIze, Int& iMaxRefPicNum ); 
1539  Void applyReferencePictureSet( TComList<TComPic*>& rcListPic, TComReferencePictureSet *RPSList);
1540#if H0566_TLA && H0566_TLA_SET_FOR_SWITCHING_POINTS
1541  Bool isTemporalLayerSwitchingPoint( TComList<TComPic*>& rcListPic, TComReferencePictureSet *RPSList);
1542#endif
1543#if START_DECODING_AT_CRA
1544  Int       checkThatAllRefPicsAreAvailable( TComList<TComPic*>& rcListPic, TComReferencePictureSet *pReferencePictureSet, Bool outputFlag, Int pocRandomAccess = 0);
1545#else
1546  Int       checkThatAllRefPicsAreAvailable( TComList<TComPic*>& rcListPic, TComReferencePictureSet *pReferencePictureSet, Bool outputFlag);
1547#endif
1548  Void      createExplicitReferencePictureSetFromReference( TComList<TComPic*>& rcListPic, TComReferencePictureSet *pReferencePictureSet);
1549
1550  Void decodingMarkingForNoTMVP( TComList<TComPic*>& rcListPic, Int currentPOC );
1551
1552  UInt m_uiMaxNumMergeCand;
1553  Void setMaxNumMergeCand               (UInt maxNumMergeCand ) { m_uiMaxNumMergeCand = maxNumMergeCand;  }
1554  UInt getMaxNumMergeCand               ()                  {return m_uiMaxNumMergeCand;                  }
1555
1556  Void setSliceMode                     ( UInt uiMode )     { m_uiSliceMode = uiMode;                     }
1557  UInt getSliceMode                     ()                  { return m_uiSliceMode;                       }
1558  Void setSliceArgument                 ( UInt uiArgument ) { m_uiSliceArgument = uiArgument;             }
1559  UInt getSliceArgument                 ()                  { return m_uiSliceArgument;                   }
1560  Void setSliceCurStartCUAddr           ( UInt uiAddr )     { m_uiSliceCurStartCUAddr = uiAddr;           }
1561  UInt getSliceCurStartCUAddr           ()                  { return m_uiSliceCurStartCUAddr;             }
1562  Void setSliceCurEndCUAddr             ( UInt uiAddr )     { m_uiSliceCurEndCUAddr = uiAddr;             }
1563  UInt getSliceCurEndCUAddr             ()                  { return m_uiSliceCurEndCUAddr;               }
1564  Void setSliceIdx                      ( UInt i)           { m_uiSliceIdx = i;                           }
1565  UInt getSliceIdx                      ()                  { return  m_uiSliceIdx;                       }
1566  Void copySliceInfo                    (TComSlice *pcSliceSrc);
1567  Void setEntropySliceMode              ( UInt uiMode )     { m_uiEntropySliceMode = uiMode;              }
1568  UInt getEntropySliceMode              ()                  { return m_uiEntropySliceMode;                }
1569  Void setEntropySliceArgument          ( UInt uiArgument ) { m_uiEntropySliceArgument = uiArgument;      }
1570  UInt getEntropySliceArgument          ()                  { return m_uiEntropySliceArgument;            }
1571  Void setEntropySliceCurStartCUAddr    ( UInt uiAddr )     { m_uiEntropySliceCurStartCUAddr = uiAddr;    }
1572  UInt getEntropySliceCurStartCUAddr    ()                  { return m_uiEntropySliceCurStartCUAddr;      }
1573  Void setEntropySliceCurEndCUAddr      ( UInt uiAddr )     { m_uiEntropySliceCurEndCUAddr = uiAddr;      }
1574  UInt getEntropySliceCurEndCUAddr      ()                  { return m_uiEntropySliceCurEndCUAddr;        }
1575  Void setNextSlice                     ( Bool b )          { m_bNextSlice = b;                           }
1576  Bool isNextSlice                      ()                  { return m_bNextSlice;                        }
1577  Void setNextEntropySlice              ( Bool b )          { m_bNextEntropySlice = b;                    }
1578  Bool isNextEntropySlice               ()                  { return m_bNextEntropySlice;                 }
1579  Void setSliceBits                     ( UInt uiVal )      { m_uiSliceBits = uiVal;                      }
1580  UInt getSliceBits                     ()                  { return m_uiSliceBits;                       } 
1581  Void setEntropySliceCounter           ( UInt uiVal )      { m_uiEntropySliceCounter = uiVal;            }
1582  UInt getEntropySliceCounter           ()                  { return m_uiEntropySliceCounter;             }
1583  Void setFinalized                     ( Bool uiVal )      { m_bFinalized = uiVal;                       }
1584  Bool getFinalized                     ()                  { return m_bFinalized;                        }
1585  Void  setWpScaling    ( wpScalingParam  wp[2][MAX_NUM_REF][3] ) { memcpy(m_weightPredTable, wp, sizeof(wpScalingParam)*2*MAX_NUM_REF*3); }
1586  Void  getWpScaling    ( RefPicList e, Int iRefIdx, wpScalingParam *&wp);
1587
1588  Void  resetWpScaling  (wpScalingParam  wp[2][MAX_NUM_REF][3]);
1589  Void  initWpScaling    (wpScalingParam  wp[2][MAX_NUM_REF][3]);
1590  Void  initWpScaling   ();
1591  inline Bool applyWP   () { return( (m_eSliceType==P_SLICE && m_pcPPS->getUseWP()) || (m_eSliceType==B_SLICE && m_pcPPS->getWPBiPredIdc()) ); }
1592 
1593  Void  setWpAcDcParam  ( wpACDCParam wp[3] ) { memcpy(m_weightACDCParam, wp, sizeof(wpACDCParam)*3); }
1594  Void  getWpAcDcParam  ( wpACDCParam *&wp );
1595  Void  initWpAcDcParam ();
1596  Void  copyWPtable     (wpScalingParam *&wp_src, wpScalingParam *&wp_dst);
1597  Void  getWpScalingLC  ( Int iRefIdx, wpScalingParam *&wp);
1598  Void  resetWpScalingLC(wpScalingParam  wp[2*MAX_NUM_REF][3]);
1599  Void  setWpParamforLC();
1600  Void setTileLocationCount             ( UInt uiCount )      { m_uiTileCount = uiCount;                  }
1601  UInt getTileLocationCount             ()                    { return m_uiTileCount;                     }
1602  Void setTileLocation                  ( Int i, UInt uiLOC ) { m_uiTileByteLocation[i] = uiLOC;          }
1603  UInt getTileLocation                  ( Int i )             { return m_uiTileByteLocation[i];           }
1604  Void setTileMarkerFlag                ( Int iFlag )         { m_iTileMarkerFlag = iFlag;                }
1605  Int  getTileMarkerFlag                ()                    { return m_iTileMarkerFlag;                 }
1606  Void setTileOffstForMultES            (UInt uiOffset )      { m_uiTileOffstForMultES = uiOffset;        }
1607  UInt getTileOffstForMultES            ()                    { return m_uiTileOffstForMultES;            }
1608  Void allocSubstreamSizes              ( UInt uiNumSubstreams );
1609  UInt* getSubstreamSizes               ()                  { return m_puiSubstreamSizes; }
1610  Void  setScalingList              ( TComScalingList* scalingList ) { m_scalingList = scalingList; }
1611  TComScalingList*   getScalingList ()                               { return m_scalingList; }
1612  Void  setDefaultScalingList       ();
1613  Bool  checkDefaultScalingList     ();
1614#if CABAC_INIT_FLAG
1615  Void      setCabacInitFlag  ( Bool val ) { m_cabacInitFlag = val;      }  //!< set CABAC initial flag
1616  Bool      getCabacInitFlag  ()           { return m_cabacInitFlag;     }  //!< get CABAC initial flag
1617#else
1618  Void      setCABACinitIDC(Int iVal) {m_cabacInitIdc = iVal;    }  //!< set CABAC initial IDC number
1619  Int       getCABACinitIDC()         {return m_cabacInitIdc;    }  //!< get CABAC initial IDC number
1620#endif
1621#if TILES_WPP_ENTRY_POINT_SIGNALLING
1622  Void      setNumEntryPointOffsets(Int val)  { m_numEntryPointOffsets = val;     }
1623  Int       getNumEntryPointOffsets()         { return m_numEntryPointOffsets;    }
1624#endif
1625
1626  Void setViewId( Int viewId )       { m_viewId = viewId;   }
1627  Int  getViewId()                   { return m_viewId;     }
1628#if QC_MVHEVC_B0046
1629  Void    setViewOrderIdx(Int v, UInt layer)                { m_iViewOrderIdx = v;    }
1630  Int     getViewOrderIdx()                                 { return m_iViewOrderIdx; }
1631#endif
1632  Void setIsDepth( Bool isDepth )    { m_isDepth = isDepth; }
1633  Bool getIsDepth()                  { return m_isDepth;    }
1634 
1635  Void      initMultiviewSlice    ( Int** aaiScale = 0, Int** aaiOffset = 0 );
1636
1637  Int*      getCodedScale         ()  { return m_aaiCodedScale [0]; }
1638  Int*      getCodedOffset        ()  { return m_aaiCodedOffset[0]; }
1639  Int*      getInvCodedScale      ()  { return m_aaiCodedScale [1]; }
1640  Int*      getInvCodedOffset     ()  { return m_aaiCodedOffset[1]; }
1641
1642#if LGE_ILLUCOMP_B0045
1643  Void      setApplyIC            ( Bool b ) { m_bApplyIC = b; }
1644  Bool      getApplyIC            ()  { return m_bApplyIC; }
1645  Void      xSetApplyIC           ();
1646#endif
1647
1648protected:
1649  TComPic*  xGetRefPic        (TComList<TComPic*>& rcListPic, UInt uiPOC);
1650  TComPic*  xGetLongTermRefPic(TComList<TComPic*>& rcListPic, UInt uiPOC);
1651  TComPic*  xGetInterViewRefPic( std::vector<TComPic*>& rcListIvPic, UInt uiViewId );
1652};// END CLASS DEFINITION TComSlice
1653
1654
1655template <class T> class ParameterSetMap
1656{
1657public:
1658  ParameterSetMap(Int maxId)
1659  :m_maxId (maxId)
1660  {}
1661
1662  ~ParameterSetMap()
1663  {
1664    for (typename std::map<Int,T *>::iterator i = m_paramsetMap.begin(); i!= m_paramsetMap.end(); i++)
1665    {
1666      delete (*i).second;
1667    }
1668  }
1669
1670  Void storePS(Int psId, T *ps)
1671  {
1672    assert ( psId < m_maxId );
1673    if ( m_paramsetMap.find(psId) != m_paramsetMap.end() )
1674    {
1675      delete m_paramsetMap[psId];
1676    }
1677    m_paramsetMap[psId] = ps; 
1678  }
1679
1680  Void mergePSList(ParameterSetMap<T> &rPsList)
1681  {
1682    for (typename std::map<Int,T *>::iterator i = rPsList.m_paramsetMap.begin(); i!= rPsList.m_paramsetMap.end(); i++)
1683    {
1684      storePS(i->first, i->second);
1685    }
1686    rPsList.m_paramsetMap.clear();
1687  }
1688
1689
1690  T* getPS(Int psId)
1691  {
1692    return ( m_paramsetMap.find(psId) == m_paramsetMap.end() ) ? NULL : m_paramsetMap[psId];
1693  }
1694
1695  T* getFirstPS()
1696  {
1697    return (m_paramsetMap.begin() == m_paramsetMap.end() ) ? NULL : m_paramsetMap.begin()->second;
1698  }
1699
1700#if QC_MVHEVC_B0046
1701  Void clearPSList()
1702  {
1703    m_paramsetMap.clear();
1704  }
1705#endif
1706private:
1707  std::map<Int,T *> m_paramsetMap;
1708  Int               m_maxId;
1709};
1710
1711class ParameterSetManager
1712{
1713public:
1714  ParameterSetManager();
1715  virtual ~ParameterSetManager();
1716#if VIDYO_VPS_INTEGRATION|QC_MVHEVC_B0046
1717  //! store video parameter set and take ownership of it
1718  Void storeVPS(TComVPS *vps) { m_vpsMap.storePS( vps->getVPSId(), vps); };
1719  //! get pointer to existing video parameter set 
1720  TComVPS* getVPS(Int vpsId)  { return m_vpsMap.getPS(vpsId); };
1721  TComVPS* getFirstVPS()      { return m_vpsMap.getFirstPS(); };
1722#if QC_MVHEVC_B0046
1723  Void     clearVPS()         { m_vpsMap.clearPSList(); };
1724  Void     clearSPS()         { m_spsMap.clearPSList(); };
1725  Void     clearPPS()         { m_ppsMap.clearPSList(); };
1726#endif
1727#endif
1728  //! store sequence parameter set and take ownership of it
1729  Void storeSPS(TComSPS *sps) { m_spsMap.storePS( sps->getSPSId(), sps); };
1730  //! get pointer to existing sequence parameter set 
1731  TComSPS* getSPS(Int spsId)  { return m_spsMap.getPS(spsId); };
1732  TComSPS* getFirstSPS()      { return m_spsMap.getFirstPS(); };
1733
1734  //! store picture parameter set and take ownership of it
1735  Void storePPS(TComPPS *pps) { m_ppsMap.storePS( pps->getPPSId(), pps); };
1736  //! get pointer to existing picture parameter set 
1737  TComPPS* getPPS(Int ppsId)  { return m_ppsMap.getPS(ppsId); };
1738  TComPPS* getFirstPPS()      { return m_ppsMap.getFirstPS(); };
1739
1740  //! store adaptation parameter set and take ownership of it
1741  Void storeAPS(TComAPS *aps) { m_apsMap.storePS( aps->getAPSID(), aps); };
1742  //! getPointer to existing adaptation parameter set 
1743  TComAPS* getAPS(Int apsId)  { return m_apsMap.getPS(apsId); };
1744
1745protected:
1746  ParameterSetMap<TComSPS> m_spsMap; 
1747  ParameterSetMap<TComPPS> m_ppsMap; 
1748  ParameterSetMap<TComAPS> m_apsMap; 
1749#if VIDYO_VPS_INTEGRATION|QC_MVHEVC_B0046
1750  ParameterSetMap<TComVPS> m_vpsMap; 
1751#endif
1752};
1753
1754//! \}
1755
1756#endif // __TCOMSLICE__
Note: See TracBrowser for help on using the repository browser.