source: SHVCSoftware/branches/SHM-dev/source/Lib/TLibCommon/TComSlice.h @ 1093

Last change on this file since 1093 was 1093, checked in by seregin, 9 years ago

cleanup macros: POC_RESET_RPS, PREVTID0_POC_RESET, POC_RESET_FLAG

  • Property svn:eol-style set to native
File size: 145.3 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     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#include "TComChromaFormat.h"
48
49//! \ingroup TLibCommon
50//! \{
51
52class TComPic;
53class TComTrQuant;
54
55#if SVC_EXTENSION
56class TComPicYuv;
57#endif
58// ====================================================================================================================
59// Constants
60// ====================================================================================================================
61
62static const UInt REF_PIC_LIST_NUM_IDX=32;
63
64// ====================================================================================================================
65// Class definition
66// ====================================================================================================================
67
68/// Reference Picture Set class
69class TComReferencePictureSet
70{
71private:
72  Int  m_numberOfPictures;
73  Int  m_numberOfNegativePictures;
74  Int  m_numberOfPositivePictures;
75  Int  m_numberOfLongtermPictures;
76  Int  m_deltaPOC[MAX_NUM_REF_PICS];
77  Int  m_POC[MAX_NUM_REF_PICS];
78  Bool m_used[MAX_NUM_REF_PICS];
79  Bool m_interRPSPrediction;
80  Int  m_deltaRIdxMinus1;
81  Int  m_deltaRPS;
82  Int  m_numRefIdc;
83  Int  m_refIdc[MAX_NUM_REF_PICS+1];
84  Bool m_bCheckLTMSB[MAX_NUM_REF_PICS];
85  Int  m_pocLSBLT[MAX_NUM_REF_PICS];
86  Int  m_deltaPOCMSBCycleLT[MAX_NUM_REF_PICS];
87  Bool m_deltaPocMSBPresentFlag[MAX_NUM_REF_PICS];
88
89public:
90  TComReferencePictureSet();
91  virtual ~TComReferencePictureSet();
92  Int   getPocLSBLT(Int i)                       { return m_pocLSBLT[i]; }
93  Void  setPocLSBLT(Int i, Int x)                { m_pocLSBLT[i] = x; }
94  Int   getDeltaPocMSBCycleLT(Int i)             { return m_deltaPOCMSBCycleLT[i]; }
95  Void  setDeltaPocMSBCycleLT(Int i, Int x)      { m_deltaPOCMSBCycleLT[i] = x; }
96  Bool  getDeltaPocMSBPresentFlag(Int i)         { return m_deltaPocMSBPresentFlag[i]; }
97  Void  setDeltaPocMSBPresentFlag(Int i, Bool x) { m_deltaPocMSBPresentFlag[i] = x;    }
98  Void setUsed(Int bufferNum, Bool used);
99  Void setDeltaPOC(Int bufferNum, Int deltaPOC);
100  Void setPOC(Int bufferNum, Int deltaPOC);
101  Void setNumberOfPictures(Int numberOfPictures);
102  Void setCheckLTMSBPresent(Int bufferNum, Bool b );
103  Bool getCheckLTMSBPresent(Int bufferNum);
104
105  Int  getUsed(Int bufferNum);
106  Int  getDeltaPOC(Int bufferNum);
107  Int  getPOC(Int bufferNum);
108  Int  getNumberOfPictures();
109
110  Void setNumberOfNegativePictures(Int number)  { m_numberOfNegativePictures = number; }
111  Int  getNumberOfNegativePictures()            { return m_numberOfNegativePictures; }
112  Void setNumberOfPositivePictures(Int number)  { m_numberOfPositivePictures = number; }
113  Int  getNumberOfPositivePictures()            { return m_numberOfPositivePictures; }
114  Void setNumberOfLongtermPictures(Int number)  { m_numberOfLongtermPictures = number; }
115  Int  getNumberOfLongtermPictures()            { return m_numberOfLongtermPictures; }
116
117  Void setInterRPSPrediction(Bool flag)         { m_interRPSPrediction = flag; }
118  Bool getInterRPSPrediction()                  { return m_interRPSPrediction; }
119  Void setDeltaRIdxMinus1(Int x)                { m_deltaRIdxMinus1 = x; }
120  Int  getDeltaRIdxMinus1()                     { return m_deltaRIdxMinus1; }
121  Void setDeltaRPS(Int x)                       { m_deltaRPS = x; }
122  Int  getDeltaRPS()                            { return m_deltaRPS; }
123  Void setNumRefIdc(Int x)                      { m_numRefIdc = x; }
124  Int  getNumRefIdc()                           { return m_numRefIdc; }
125
126  Void setRefIdc(Int bufferNum, Int refIdc);
127  Int  getRefIdc(Int bufferNum);
128
129  Void sortDeltaPOC();
130  Void printDeltaPOC();
131};
132
133/// Reference Picture Set set class
134class TComRPSList
135{
136private:
137  Int  m_numberOfReferencePictureSets;
138  TComReferencePictureSet* m_referencePictureSets;
139
140public:
141  TComRPSList();
142  virtual ~TComRPSList();
143
144  Void  create  (Int numberOfEntries);
145  Void  destroy ();
146
147
148  TComReferencePictureSet* getReferencePictureSet(Int referencePictureSetNum);
149  Int getNumberOfReferencePictureSets();
150  Void setNumberOfReferencePictureSets(Int numberOfReferencePictureSets);
151};
152
153/// SCALING_LIST class
154class TComScalingList
155{
156public:
157  TComScalingList();
158  virtual ~TComScalingList();
159  Void     setScalingListPresentFlag      (Bool b)                             { m_scalingListPresentFlag = b;    }
160  Bool     getScalingListPresentFlag      ()                                   { return m_scalingListPresentFlag; }
161  Int*           getScalingListAddress    (UInt sizeId, UInt listId)           { return m_scalingListCoef[sizeId][listId]; } //!< get matrix coefficient
162  const Int*     getScalingListAddress    (UInt sizeId, UInt listId) const     { return m_scalingListCoef[sizeId][listId]; } //!< get matrix coefficient
163  Bool     checkPredMode                  (UInt sizeId, UInt listId);
164  Void     setRefMatrixId                 (UInt sizeId, UInt listId, UInt u)   { m_refMatrixId[sizeId][listId] = u;    }     //!< set reference matrix ID
165  UInt     getRefMatrixId                 (UInt sizeId, UInt listId)           { return m_refMatrixId[sizeId][listId]; }     //!< get reference matrix ID
166  Int*     getScalingListDefaultAddress   (UInt sizeId, UInt listId);                                                        //!< get default matrix coefficient
167  Void     processDefaultMatrix           (UInt sizeId, UInt listId);
168  Void     setScalingListDC               (UInt sizeId, UInt listId, UInt u)   { m_scalingListDC[sizeId][listId] = u; }      //!< set DC value
169
170  Int      getScalingListDC               (UInt sizeId, UInt listId) const     { return m_scalingListDC[sizeId][listId]; }   //!< get DC value
171  Void     checkDcOfMatrix                ();
172  Void     processRefMatrix               (UInt sizeId, UInt listId , UInt refListId );
173  Bool     xParseScalingList              (Char* pchFile);
174
175private:
176  Void     init                    ();
177  Void     destroy                 ();
178  Void     outputScalingLists(std::ostream &os) const;
179  Int      m_scalingListDC               [SCALING_LIST_SIZE_NUM][SCALING_LIST_NUM]; //!< the DC value of the matrix coefficient for 16x16
180  Bool     m_useDefaultScalingMatrixFlag [SCALING_LIST_SIZE_NUM][SCALING_LIST_NUM]; //!< UseDefaultScalingMatrixFlag
181  UInt     m_refMatrixId                 [SCALING_LIST_SIZE_NUM][SCALING_LIST_NUM]; //!< RefMatrixID
182  Bool     m_scalingListPresentFlag;                                                //!< flag for using default matrix
183  UInt     m_predMatrixId                [SCALING_LIST_SIZE_NUM][SCALING_LIST_NUM]; //!< reference list index
184  Int      *m_scalingListCoef            [SCALING_LIST_SIZE_NUM][SCALING_LIST_NUM]; //!< quantization matrix
185};
186
187class ProfileTierLevel
188{
189  Int               m_profileSpace;
190  Level::Tier       m_tierFlag;
191  Profile::Name     m_profileIdc;
192  Bool              m_profileCompatibilityFlag[32];
193  Level::Name       m_levelIdc;
194
195  Bool              m_progressiveSourceFlag;
196  Bool              m_interlacedSourceFlag;
197  Bool              m_nonPackedConstraintFlag;
198  Bool              m_frameOnlyConstraintFlag;
199  UInt              m_bitDepthConstraintValue;
200  ChromaFormat      m_chromaFormatConstraintValue;
201  Bool              m_intraConstraintFlag;
202  Bool              m_lowerBitRateConstraintFlag;
203
204public:
205  ProfileTierLevel();
206
207  Int  getProfileSpace() const                     { return m_profileSpace; }
208  Void setProfileSpace(Int x)                      { m_profileSpace = x; }
209
210  Level::Tier  getTierFlag() const                 { return m_tierFlag; }
211  Void setTierFlag(Level::Tier x)                  { m_tierFlag = x; }
212
213  Profile::Name   getProfileIdc() const            { return m_profileIdc; }
214  Void setProfileIdc(Profile::Name x)              { m_profileIdc = x; }
215
216  Bool getProfileCompatibilityFlag(Int i) const    { return m_profileCompatibilityFlag[i]; }
217  Void setProfileCompatibilityFlag(Int i, Bool x)  { m_profileCompatibilityFlag[i] = x; }
218
219  Level::Name   getLevelIdc() const                { return m_levelIdc; }
220  Void setLevelIdc(Level::Name x)                  { m_levelIdc = x; }
221
222  Bool getProgressiveSourceFlag() const            { return m_progressiveSourceFlag; }
223  Void setProgressiveSourceFlag(Bool b)            { m_progressiveSourceFlag = b; }
224
225  Bool getInterlacedSourceFlag() const             { return m_interlacedSourceFlag; }
226  Void setInterlacedSourceFlag(Bool b)             { m_interlacedSourceFlag = b; }
227
228  Bool getNonPackedConstraintFlag() const          { return m_nonPackedConstraintFlag; }
229  Void setNonPackedConstraintFlag(Bool b)          { m_nonPackedConstraintFlag = b; }
230
231  Bool getFrameOnlyConstraintFlag() const          { return m_frameOnlyConstraintFlag; }
232  Void setFrameOnlyConstraintFlag(Bool b)          { m_frameOnlyConstraintFlag = b; }
233
234  UInt getBitDepthConstraint() const               { return m_bitDepthConstraintValue; }
235  Void setBitDepthConstraint(UInt bitDepth)        { m_bitDepthConstraintValue=bitDepth; }
236
237  ChromaFormat getChromaFormatConstraint() const   { return m_chromaFormatConstraintValue; }
238  Void setChromaFormatConstraint(ChromaFormat fmt) { m_chromaFormatConstraintValue=fmt; }
239
240  Bool getIntraConstraintFlag() const              { return m_intraConstraintFlag; }
241  Void setIntraConstraintFlag(Bool b)              { m_intraConstraintFlag = b; }
242
243  Bool getLowerBitRateConstraintFlag() const       { return m_lowerBitRateConstraintFlag; }
244  Void setLowerBitRateConstraintFlag(Bool b)       { m_lowerBitRateConstraintFlag = b; }
245
246#if VPS_EXTN_PROFILE_INFO
247  Void copyProfileInfo(ProfileTierLevel *ptl);
248#endif
249};
250
251
252class TComPTL
253{
254  ProfileTierLevel m_generalPTL;
255  ProfileTierLevel m_subLayerPTL    [MAX_TLAYER-1];      // max. value of max_sub_layers_minus1 is MAX_TLAYER-1 (= 6)
256  Bool m_subLayerProfilePresentFlag [MAX_TLAYER-1];
257  Bool m_subLayerLevelPresentFlag   [MAX_TLAYER-1];
258
259public:
260  TComPTL();
261  Bool getSubLayerProfilePresentFlag(Int i) const { return m_subLayerProfilePresentFlag[i]; }
262  Void setSubLayerProfilePresentFlag(Int i, Bool x) { m_subLayerProfilePresentFlag[i] = x; }
263
264  Bool getSubLayerLevelPresentFlag(Int i) const { return m_subLayerLevelPresentFlag[i]; }
265  Void setSubLayerLevelPresentFlag(Int i, Bool x) { m_subLayerLevelPresentFlag[i] = x; }
266
267  ProfileTierLevel* getGeneralPTL()  { return &m_generalPTL; }
268  ProfileTierLevel* getSubLayerPTL(Int i)  { return &m_subLayerPTL[i]; }
269
270#if VPS_EXTN_PROFILE_INFO
271  Void copyProfileInfo(TComPTL *ptl);
272#endif
273};
274
275/// VPS class
276
277struct HrdSubLayerInfo
278{
279  Bool fixedPicRateFlag;
280  Bool fixedPicRateWithinCvsFlag;
281  UInt picDurationInTcMinus1;
282  Bool lowDelayHrdFlag;
283  UInt cpbCntMinus1;
284  UInt bitRateValueMinus1[MAX_CPB_CNT][2];
285  UInt cpbSizeValue      [MAX_CPB_CNT][2];
286  UInt ducpbSizeValue    [MAX_CPB_CNT][2];
287  UInt cbrFlag           [MAX_CPB_CNT][2];
288  UInt duBitRateValue    [MAX_CPB_CNT][2];
289};
290
291class TComHRD
292{
293private:
294  Bool m_nalHrdParametersPresentFlag;
295  Bool m_vclHrdParametersPresentFlag;
296  Bool m_subPicCpbParamsPresentFlag;
297  UInt m_tickDivisorMinus2;
298  UInt m_duCpbRemovalDelayLengthMinus1;
299  Bool m_subPicCpbParamsInPicTimingSEIFlag;
300  UInt m_dpbOutputDelayDuLengthMinus1;
301  UInt m_bitRateScale;
302  UInt m_cpbSizeScale;
303  UInt m_ducpbSizeScale;
304  UInt m_initialCpbRemovalDelayLengthMinus1;
305  UInt m_cpbRemovalDelayLengthMinus1;
306  UInt m_dpbOutputDelayLengthMinus1;
307  UInt m_numDU;
308  HrdSubLayerInfo m_HRD[MAX_TLAYER];
309
310public:
311  TComHRD()
312  :m_nalHrdParametersPresentFlag(0)
313  ,m_vclHrdParametersPresentFlag(0)
314  ,m_subPicCpbParamsPresentFlag(false)
315  ,m_tickDivisorMinus2(0)
316  ,m_duCpbRemovalDelayLengthMinus1(0)
317  ,m_subPicCpbParamsInPicTimingSEIFlag(false)
318  ,m_dpbOutputDelayDuLengthMinus1(0)
319  ,m_bitRateScale(0)
320  ,m_cpbSizeScale(0)
321  ,m_initialCpbRemovalDelayLengthMinus1(23)
322  ,m_cpbRemovalDelayLengthMinus1(23)
323  ,m_dpbOutputDelayLengthMinus1(23)
324  {}
325
326  virtual ~TComHRD() {}
327
328  Void setNalHrdParametersPresentFlag       ( Bool flag )  { m_nalHrdParametersPresentFlag = flag;         }
329  Bool getNalHrdParametersPresentFlag       ( )            { return m_nalHrdParametersPresentFlag;         }
330
331  Void setVclHrdParametersPresentFlag       ( Bool flag )  { m_vclHrdParametersPresentFlag = flag;         }
332  Bool getVclHrdParametersPresentFlag       ( )            { return m_vclHrdParametersPresentFlag;         }
333
334  Void setSubPicCpbParamsPresentFlag        ( Bool flag )  { m_subPicCpbParamsPresentFlag = flag;          }
335  Bool getSubPicCpbParamsPresentFlag        ( )            { return m_subPicCpbParamsPresentFlag;          }
336
337  Void setTickDivisorMinus2                 ( UInt value ) { m_tickDivisorMinus2 = value;                  }
338  UInt getTickDivisorMinus2                 ( )            { return m_tickDivisorMinus2;                   }
339
340  Void setDuCpbRemovalDelayLengthMinus1     ( UInt value ) { m_duCpbRemovalDelayLengthMinus1 = value;      }
341  UInt getDuCpbRemovalDelayLengthMinus1     ( )            { return m_duCpbRemovalDelayLengthMinus1;       }
342
343  Void setSubPicCpbParamsInPicTimingSEIFlag ( Bool flag)   { m_subPicCpbParamsInPicTimingSEIFlag = flag;   }
344  Bool getSubPicCpbParamsInPicTimingSEIFlag ()             { return m_subPicCpbParamsInPicTimingSEIFlag;   }
345
346  Void setDpbOutputDelayDuLengthMinus1      (UInt value )  { m_dpbOutputDelayDuLengthMinus1 = value;       }
347  UInt getDpbOutputDelayDuLengthMinus1      ()             { return m_dpbOutputDelayDuLengthMinus1;        }
348
349  Void setBitRateScale                      ( UInt value ) { m_bitRateScale = value;                       }
350  UInt getBitRateScale                      ( )            { return m_bitRateScale;                        }
351
352  Void setCpbSizeScale                      ( UInt value ) { m_cpbSizeScale = value;                       }
353  UInt getCpbSizeScale                      ( )            { return m_cpbSizeScale;                        }
354  Void setDuCpbSizeScale                    ( UInt value ) { m_ducpbSizeScale = value;                     }
355  UInt getDuCpbSizeScale                    ( )            { return m_ducpbSizeScale;                      }
356
357  Void setInitialCpbRemovalDelayLengthMinus1( UInt value ) { m_initialCpbRemovalDelayLengthMinus1 = value; }
358  UInt getInitialCpbRemovalDelayLengthMinus1( )            { return m_initialCpbRemovalDelayLengthMinus1;  }
359
360  Void setCpbRemovalDelayLengthMinus1       ( UInt value ) { m_cpbRemovalDelayLengthMinus1 = value;        }
361  UInt getCpbRemovalDelayLengthMinus1       ( )            { return m_cpbRemovalDelayLengthMinus1;         }
362
363  Void setDpbOutputDelayLengthMinus1        ( UInt value ) { m_dpbOutputDelayLengthMinus1 = value;         }
364  UInt getDpbOutputDelayLengthMinus1        ( )            { return m_dpbOutputDelayLengthMinus1;          }
365
366  Void setFixedPicRateFlag       ( Int layer, Bool flag )  { m_HRD[layer].fixedPicRateFlag = flag;         }
367  Bool getFixedPicRateFlag       ( Int layer            )  { return m_HRD[layer].fixedPicRateFlag;         }
368
369  Void setFixedPicRateWithinCvsFlag       ( Int layer, Bool flag )  { m_HRD[layer].fixedPicRateWithinCvsFlag = flag;         }
370  Bool getFixedPicRateWithinCvsFlag       ( Int layer            )  { return m_HRD[layer].fixedPicRateWithinCvsFlag;         }
371
372  Void setPicDurationInTcMinus1  ( Int layer, UInt value ) { m_HRD[layer].picDurationInTcMinus1 = value;   }
373  UInt getPicDurationInTcMinus1  ( Int layer             ) { return m_HRD[layer].picDurationInTcMinus1;    }
374
375  Void setLowDelayHrdFlag        ( Int layer, Bool flag )  { m_HRD[layer].lowDelayHrdFlag = flag;          }
376  Bool getLowDelayHrdFlag        ( Int layer            )  { return m_HRD[layer].lowDelayHrdFlag;          }
377
378  Void setCpbCntMinus1           ( Int layer, UInt value ) { m_HRD[layer].cpbCntMinus1 = value; }
379  UInt getCpbCntMinus1           ( Int layer            )  { return m_HRD[layer].cpbCntMinus1; }
380
381  Void setBitRateValueMinus1     ( Int layer, Int cpbcnt, Int nalOrVcl, UInt value ) { m_HRD[layer].bitRateValueMinus1[cpbcnt][nalOrVcl] = value; }
382  UInt getBitRateValueMinus1     ( Int layer, Int cpbcnt, Int nalOrVcl             ) { return m_HRD[layer].bitRateValueMinus1[cpbcnt][nalOrVcl];  }
383
384  Void setCpbSizeValueMinus1     ( Int layer, Int cpbcnt, Int nalOrVcl, UInt value ) { m_HRD[layer].cpbSizeValue[cpbcnt][nalOrVcl] = value;       }
385  UInt getCpbSizeValueMinus1     ( Int layer, Int cpbcnt, Int nalOrVcl            )  { return m_HRD[layer].cpbSizeValue[cpbcnt][nalOrVcl];        }
386  Void setDuCpbSizeValueMinus1     ( Int layer, Int cpbcnt, Int nalOrVcl, UInt value ) { m_HRD[layer].ducpbSizeValue[cpbcnt][nalOrVcl] = value;       }
387  UInt getDuCpbSizeValueMinus1     ( Int layer, Int cpbcnt, Int nalOrVcl            )  { return m_HRD[layer].ducpbSizeValue[cpbcnt][nalOrVcl];        }
388  Void setDuBitRateValueMinus1     ( Int layer, Int cpbcnt, Int nalOrVcl, UInt value ) { m_HRD[layer].duBitRateValue[cpbcnt][nalOrVcl] = value;       }
389  UInt getDuBitRateValueMinus1     (Int layer, Int cpbcnt, Int nalOrVcl )              { return m_HRD[layer].duBitRateValue[cpbcnt][nalOrVcl];        }
390  Void setCbrFlag                ( Int layer, Int cpbcnt, Int nalOrVcl, UInt value ) { m_HRD[layer].cbrFlag[cpbcnt][nalOrVcl] = value;            }
391  Bool getCbrFlag                ( Int layer, Int cpbcnt, Int nalOrVcl             ) { return m_HRD[layer].cbrFlag[cpbcnt][nalOrVcl];             }
392
393  Void setNumDU                              ( UInt value ) { m_numDU = value;                            }
394  UInt getNumDU                              ( )            { return m_numDU;          }
395  Bool getCpbDpbDelaysPresentFlag() { return getNalHrdParametersPresentFlag() || getVclHrdParametersPresentFlag(); }
396
397#if VPS_VUI_BSP_HRD_PARAMS
398Void copyCommonInformation( TComHRD *refHrd )
399{
400  m_nalHrdParametersPresentFlag         = refHrd->getNalHrdParametersPresentFlag();
401  m_vclHrdParametersPresentFlag         = refHrd->getVclHrdParametersPresentFlag();
402  m_subPicCpbParamsPresentFlag          = refHrd->getSubPicCpbParamsPresentFlag();
403  m_tickDivisorMinus2                   = refHrd->getTickDivisorMinus2();
404  m_duCpbRemovalDelayLengthMinus1       = refHrd->getDuCpbRemovalDelayLengthMinus1();
405  m_subPicCpbParamsInPicTimingSEIFlag   = refHrd->getSubPicCpbParamsInPicTimingSEIFlag();
406  m_dpbOutputDelayDuLengthMinus1        = refHrd->getDpbOutputDelayDuLengthMinus1();
407  m_bitRateScale                        = refHrd->getBitRateScale();
408  m_cpbSizeScale                        = refHrd->getCpbSizeScale();
409  m_ducpbSizeScale                      = refHrd->getDuCpbSizeScale();
410  m_initialCpbRemovalDelayLengthMinus1  = refHrd->getInitialCpbRemovalDelayLengthMinus1();
411  m_cpbRemovalDelayLengthMinus1         = refHrd->getCpbRemovalDelayLengthMinus1();
412  m_dpbOutputDelayLengthMinus1          = refHrd->getDpbOutputDelayLengthMinus1();
413}
414#endif
415};
416
417class TimingInfo
418{
419  Bool m_timingInfoPresentFlag;
420  UInt m_numUnitsInTick;
421  UInt m_timeScale;
422  Bool m_pocProportionalToTimingFlag;
423  Int  m_numTicksPocDiffOneMinus1;
424public:
425  TimingInfo()
426  : m_timingInfoPresentFlag(false)
427  , m_numUnitsInTick(1001)
428  , m_timeScale(60000)
429  , m_pocProportionalToTimingFlag(false)
430  , m_numTicksPocDiffOneMinus1(0) {}
431
432  Void setTimingInfoPresentFlag             ( Bool flag )  { m_timingInfoPresentFlag = flag;               }
433  Bool getTimingInfoPresentFlag             ( )            { return m_timingInfoPresentFlag;               }
434
435  Void setNumUnitsInTick                    ( UInt value ) { m_numUnitsInTick = value;                     }
436  UInt getNumUnitsInTick                    ( )            { return m_numUnitsInTick;                      }
437
438  Void setTimeScale                         ( UInt value ) { m_timeScale = value;                          }
439  UInt getTimeScale                         ( )            { return m_timeScale;                           }
440
441  Bool getPocProportionalToTimingFlag       ( )            { return m_pocProportionalToTimingFlag;         }
442  Void setPocProportionalToTimingFlag       (Bool x      ) { m_pocProportionalToTimingFlag = x;            }
443
444  Int  getNumTicksPocDiffOneMinus1          ( )            { return m_numTicksPocDiffOneMinus1;            }
445  Void setNumTicksPocDiffOneMinus1          (Int x       ) { m_numTicksPocDiffOneMinus1 = x;               }
446};
447
448struct ChromaQpAdj
449{
450  union
451  {
452    struct {
453      Int CbOffset;
454      Int CrOffset;
455    } comp;
456    Int offset[2]; /* two chroma components */
457  } u;
458};
459
460
461class Window
462{
463private:
464  Bool          m_enabledFlag;
465  Int           m_winLeftOffset;
466  Int           m_winRightOffset;
467  Int           m_winTopOffset;
468  Int           m_winBottomOffset;
469
470public:
471  Window()
472  : m_enabledFlag (false)
473  , m_winLeftOffset     (0)
474  , m_winRightOffset    (0)
475  , m_winTopOffset      (0)
476  , m_winBottomOffset   (0)
477  { }
478
479  Bool          getWindowEnabledFlag() const      { return m_enabledFlag; }
480  Void          resetWindow()                     { m_enabledFlag = false; m_winLeftOffset = m_winRightOffset = m_winTopOffset = m_winBottomOffset = 0; }
481  Int           getWindowLeftOffset() const       { return m_enabledFlag ? m_winLeftOffset : 0; }
482  Void          setWindowLeftOffset(Int val)      { m_winLeftOffset = val; m_enabledFlag = true; }
483  Int           getWindowRightOffset() const      { return m_enabledFlag ? m_winRightOffset : 0; }
484  Void          setWindowRightOffset(Int val)     { m_winRightOffset = val; m_enabledFlag = true; }
485  Int           getWindowTopOffset() const        { return m_enabledFlag ? m_winTopOffset : 0; }
486  Void          setWindowTopOffset(Int val)       { m_winTopOffset = val; m_enabledFlag = true; }
487  Int           getWindowBottomOffset() const     { return m_enabledFlag ? m_winBottomOffset: 0; }
488  Void          setWindowBottomOffset(Int val)    { m_winBottomOffset = val; m_enabledFlag = true; }
489
490#if SVC_EXTENSION
491  Bool          hasEqualOffset(const Window& ref) const
492  {
493    return (    this->getWindowLeftOffset()   == ref.getWindowLeftOffset()
494             && this->getWindowTopOffset()    == ref.getWindowTopOffset()
495             && this->getWindowRightOffset()  == ref.getWindowRightOffset()
496             && this->getWindowBottomOffset() == ref.getWindowBottomOffset() );
497  }
498#endif
499
500  Void          setWindow(Int offsetLeft, Int offsetLRight, Int offsetLTop, Int offsetLBottom)
501  {
502    m_enabledFlag       = true;
503    m_winLeftOffset     = offsetLeft;
504    m_winRightOffset    = offsetLRight;
505    m_winTopOffset      = offsetLTop;
506    m_winBottomOffset   = offsetLBottom;
507  }
508};
509
510#if REPN_FORMAT_IN_VPS
511class RepFormat
512{
513#if REPN_FORMAT_CONTROL_FLAG
514  Bool m_chromaAndBitDepthVpsPresentFlag;
515#endif
516#if AUXILIARY_PICTURES
517  ChromaFormat m_chromaFormatVpsIdc;
518#else
519  Int  m_chromaFormatVpsIdc;
520#endif
521  Bool m_separateColourPlaneVpsFlag;
522  Int  m_picWidthVpsInLumaSamples;
523  Int  m_picHeightVpsInLumaSamples;
524  Int  m_bitDepthVpsLuma;               // coded as minus8
525  Int  m_bitDepthVpsChroma;             // coded as minus8
526
527#if R0156_CONF_WINDOW_IN_REP_FORMAT
528  Window m_conformanceWindowVps;
529#endif
530
531public:
532  RepFormat();
533#if RESOLUTION_BASED_DPB
534  Void init();
535  RepFormat& operator= (const RepFormat &);
536  static Bool checkSameSubDpb(const RepFormat &x, const RepFormat &y);
537#endif
538#if REPN_FORMAT_CONTROL_FLAG
539  Bool getChromaAndBitDepthVpsPresentFlag() { return m_chromaAndBitDepthVpsPresentFlag; }
540  void setChromaAndBitDepthVpsPresentFlag(Bool x) { m_chromaAndBitDepthVpsPresentFlag = x; }
541#endif
542
543#if AUXILIARY_PICTURES
544  ChromaFormat getChromaFormatVpsIdc()        { return m_chromaFormatVpsIdc; }
545  Void setChromaFormatVpsIdc(ChromaFormat x)  { m_chromaFormatVpsIdc = x;    }
546#else
547  Int  getChromaFormatVpsIdc()        { return m_chromaFormatVpsIdc; }
548  Void setChromaFormatVpsIdc(Int x)   { m_chromaFormatVpsIdc = x;    }
549#endif
550
551  Bool getSeparateColourPlaneVpsFlag()        { return m_separateColourPlaneVpsFlag; }
552  Void setSeparateColourPlaneVpsFlag(Bool x)  { m_separateColourPlaneVpsFlag = x;    }
553
554  Int  getPicWidthVpsInLumaSamples()        { return m_picWidthVpsInLumaSamples; }
555  Void setPicWidthVpsInLumaSamples(Int x)   { m_picWidthVpsInLumaSamples = x;    }
556
557  Int  getPicHeightVpsInLumaSamples()        { return m_picHeightVpsInLumaSamples; }
558  Void setPicHeightVpsInLumaSamples(Int x)   { m_picHeightVpsInLumaSamples = x;    }
559
560  Int  getBitDepthVpsLuma()           { return m_bitDepthVpsLuma;   }
561  Void setBitDepthVpsLuma(Int x)      { m_bitDepthVpsLuma = x;      }
562   
563  Int  getBitDepthVpsChroma()           { return m_bitDepthVpsChroma;   }
564  Void setBitDepthVpsChroma(Int x)      { m_bitDepthVpsChroma = x;      }
565
566  Int  getBitDepthVps(ChannelType type)           { return isLuma(type) ? m_bitDepthVpsLuma : m_bitDepthVpsChroma;   }
567
568#if R0156_CONF_WINDOW_IN_REP_FORMAT
569  Window& getConformanceWindowVps()                           { return  m_conformanceWindowVps;             }
570  Void    setConformanceWindowVps(Window& conformanceWindow ) { m_conformanceWindowVps = conformanceWindow; }
571#endif
572};
573#endif
574
575class TComVPS
576{
577private:
578  Int         m_VPSId;
579#if VPS_RESERVED_FLAGS
580  Bool        m_baseLayerInternalFlag;
581  Bool        m_baseLayerAvailableFlag;
582#endif
583  UInt        m_uiMaxTLayers;
584  UInt        m_uiMaxLayers;
585  Bool        m_bTemporalIdNestingFlag;
586
587  UInt        m_numReorderPics[MAX_TLAYER];
588  UInt        m_uiMaxDecPicBuffering[MAX_TLAYER];
589  UInt        m_uiMaxLatencyIncrease[MAX_TLAYER]; // Really max latency increase plus 1 (value 0 expresses no limit)
590
591  UInt        m_numHrdParameters;
592#if !SVC_EXTENSION
593  UInt        m_maxNuhReservedZeroLayerId;
594#endif
595  TComHRD*    m_hrdParameters;
596  UInt*       m_hrdOpSetIdx;
597  Bool*       m_cprmsPresentFlag;
598#if !SVC_EXTENSION
599  UInt        m_numOpSets;
600  Bool        m_layerIdIncludedFlag[MAX_VPS_OP_SETS_PLUS1][MAX_VPS_NUH_RESERVED_ZERO_LAYER_ID_PLUS1];
601#endif
602#if !MULTIPLE_PTL_SUPPORT
603  TComPTL     m_pcPTL;
604#endif
605  TimingInfo  m_timingInfo;
606
607#if SVC_EXTENSION
608#if MULTIPLE_PTL_SUPPORT
609  TComPTL     m_pcPTLList[MAX_NUM_LAYER_IDS + 1];
610#endif
611#if DERIVE_LAYER_ID_LIST_VARIABLES
612#if Q0078_ADD_LAYER_SETS
613#if NECESSARY_LAYER_FLAG
614  std::vector< std::vector<Int> >     m_layerSetLayerIdList;
615  std::vector<Int>                    m_numLayerInIdList;
616#else
617  Int         m_layerSetLayerIdList[MAX_VPS_LAYER_SETS_PLUS1 + MAX_NUM_ADD_LAYER_SETS][MAX_VPS_LAYER_IDX_PLUS1];
618  Int         m_numLayerInIdList[MAX_VPS_LAYER_SETS_PLUS1 + MAX_NUM_ADD_LAYER_SETS];
619#endif
620#else
621  Int         m_layerSetLayerIdList[MAX_VPS_LAYER_SETS_PLUS1][MAX_VPS_LAYER_IDX_PLUS1];
622  Int         m_numLayerInIdList[MAX_VPS_LAYER_SETS_PLUS1];
623#endif
624#endif
625#if !P0125_REVERT_VPS_EXTN_OFFSET_TO_RESERVED
626#if VPS_EXTN_OFFSET
627  UInt        m_extensionOffset;
628#endif
629#endif
630  UInt        m_maxLayerId;
631  UInt        m_numLayerSets;
632#if Q0078_ADD_LAYER_SETS
633  UInt        m_vpsNumLayerSetsMinus1;
634  Bool        m_layerIdIncludedFlag[MAX_VPS_LAYER_SETS_PLUS1 + MAX_NUM_ADD_LAYER_SETS][MAX_NUM_LAYER_IDS];
635#else
636  Bool        m_layerIdIncludedFlag[MAX_VPS_LAYER_SETS_PLUS1][MAX_VPS_LAYER_IDX_PLUS1];
637#endif
638
639  // ------------------------------------------
640  // Variables related to VPS extensions
641  // ------------------------------------------
642#if VPS_EXTN_MASK_AND_DIM_INFO
643#if VPS_AVC_BL_FLAG_REMOVAL
644  Bool       m_nonHEVCBaseLayerFlag; 
645#else
646  Bool       m_avcBaseLayerFlag;                                // For now, always set to true.
647#endif
648  Bool       m_splittingFlag;
649  Bool       m_scalabilityMask[MAX_VPS_NUM_SCALABILITY_TYPES];
650  UInt       m_dimensionIdLen[MAX_VPS_NUM_SCALABILITY_TYPES];
651  Bool       m_nuhLayerIdPresentFlag;
652  UInt       m_layerIdInNuh[MAX_VPS_LAYER_IDX_PLUS1];            // Maps layer ID in the VPS with layer_id_in_nuh
653  UInt       m_dimensionId[MAX_VPS_LAYER_IDX_PLUS1][MAX_VPS_NUM_SCALABILITY_TYPES];
654
655  // Below are derived variables
656  UInt       m_numScalabilityTypes;
657  UInt       m_layerIdxInVps[MAX_NUM_LAYER_IDS];            // Maps layer_id_in_nuh with the layer ID in the VPS
658#endif
659#if BITRATE_PICRATE_SIGNALLING
660#if Q0078_ADD_LAYER_SETS
661  UInt       m_maxSLInLayerSetMinus1[MAX_VPS_LAYER_SETS_PLUS1 + MAX_NUM_ADD_LAYER_SETS];
662#else
663  UInt       m_maxSLInLayerSetMinus1[MAX_VPS_LAYER_SETS_PLUS1];
664#endif
665#endif
666   
667  Bool       m_ilpSshSignalingEnabledFlag;
668#if VPS_EXTN_PROFILE_INFO
669  // Profile-tier-level signalling related
670  Bool       m_profilePresentFlag[MAX_VPS_LAYER_SETS_PLUS1];    // The value with index 0 will not be used.
671#if !P0048_REMOVE_PROFILE_REF
672  UInt       m_profileLayerSetRef[MAX_VPS_LAYER_SETS_PLUS1];    // The value with index 0 will not be used.
673#endif
674#if !MULTIPLE_PTL_SUPPORT
675  std::vector<TComPTL>    m_pcPTLForExtn; 
676#endif
677#endif
678#if VPS_EXTN_OP_LAYER_SETS
679  // .. More declarations here
680  // Target output layer signalling related
681  UInt       m_numOutputLayerSets;
682#if Q0078_ADD_LAYER_SETS
683  UInt       m_outputLayerSetIdx[MAX_VPS_LAYER_SETS_PLUS1 + 2*MAX_NUM_ADD_LAYER_SETS];
684  Bool       m_outputLayerFlag[MAX_VPS_LAYER_SETS_PLUS1 + 2*MAX_NUM_ADD_LAYER_SETS][MAX_VPS_LAYER_IDX_PLUS1];
685#else
686  UInt       m_outputLayerSetIdx[MAX_VPS_LAYER_SETS_PLUS1];
687  Bool       m_outputLayerFlag[MAX_VPS_LAYER_SETS_PLUS1][MAX_VPS_LAYER_IDX_PLUS1];
688#endif
689#endif
690#if VPS_EXTN_DIRECT_REF_LAYERS
691  Bool       m_directDependencyFlag[MAX_VPS_LAYER_IDX_PLUS1][MAX_VPS_LAYER_IDX_PLUS1];
692  UInt       m_numDirectRefLayers[MAX_VPS_LAYER_IDX_PLUS1];
693  UInt       m_refLayerId[MAX_VPS_LAYER_IDX_PLUS1][MAX_VPS_LAYER_IDX_PLUS1];
694  UInt       m_directDepTypeLen;
695#if O0096_DEFAULT_DEPENDENCY_TYPE
696  Bool       m_defaultDirectDependencyTypeFlag;
697  UInt       m_defaultDirectDependencyType;
698#endif
699  UInt       m_directDependencyType[MAX_VPS_LAYER_IDX_PLUS1][MAX_VPS_LAYER_IDX_PLUS1];
700#endif
701  UInt       m_numProfileTierLevel;
702#if !VPS_EXTN_UEV_CODING
703  Bool       m_moreOutputLayerSetsThanDefaultFlag;
704#endif
705  Int        m_numAddOutputLayerSets;
706#if P0295_DEFAULT_OUT_LAYER_IDC
707  UInt       m_defaultTargetOutputLayerIdc;
708#else
709#if O0109_DEFAULT_ONE_OUT_LAYER_IDC
710  UInt       m_defaultOneTargetOutputLayerIdc;
711#else
712  Bool       m_defaultOneTargetOutputLayerFlag;
713#endif
714#endif
715#if PER_LAYER_PTL
716  std::vector< std::vector<Int> >  m_profileLevelTierIdx;
717#else
718  Int        m_profileLevelTierIdx[64];     
719#endif
720  Bool       m_maxOneActiveRefLayerFlag;
721#if O0062_POC_LSB_NOT_PRESENT_FLAG
722  Bool       m_pocLsbNotPresentFlag[MAX_VPS_LAYER_IDX_PLUS1];
723#endif
724#if O0223_PICTURE_TYPES_ALIGN_FLAG
725  Bool       m_crossLayerPictureTypeAlignFlag;
726#endif
727  Bool       m_crossLayerIrapAlignFlag;
728#if P0068_CROSS_LAYER_ALIGNED_IDR_ONLY_FOR_IRAP_FLAG
729  Bool       m_crossLayerAlignedIdrOnlyFlag;
730#endif
731  UInt       m_maxTidIlRefPicsPlus1[MAX_VPS_LAYER_IDX_PLUS1 - 1][MAX_VPS_LAYER_IDX_PLUS1];
732  Bool       m_maxTidRefPresentFlag;
733#if VPS_TSLAYERS
734  Bool       m_maxTSLayersPresentFlag;
735  UInt       m_maxTSLayerMinus1[MAX_LAYERS];
736#endif
737#if M0040_ADAPTIVE_RESOLUTION_CHANGE
738  Bool       m_singleLayerForNonIrapFlag;
739#endif
740#if HIGHER_LAYER_IRAP_SKIP_FLAG
741  Bool       m_higherLayerIrapSkipFlag;
742#endif
743#if VPS_VUI_TILES_NOT_IN_USE__FLAG
744  Bool       m_tilesNotInUseFlag;
745  Bool       m_tilesInUseFlag[MAX_VPS_LAYER_IDX_PLUS1];
746  Bool       m_loopFilterNotAcrossTilesFlag[MAX_VPS_LAYER_IDX_PLUS1];
747#endif
748  Bool       m_tileBoundariesAlignedFlag[MAX_VPS_LAYER_IDX_PLUS1][MAX_VPS_LAYER_IDX_PLUS1];
749#if VPS_VUI_WPP_NOT_IN_USE__FLAG
750  Bool       m_wppNotInUseFlag;
751  Bool       m_wppInUseFlag[MAX_VPS_LAYER_IDX_PLUS1];
752#endif
753#if N0160_VUI_EXT_ILP_REF   
754  Bool       m_ilpRestrictedRefLayersFlag;
755  Int        m_minSpatialSegmentOffsetPlus1[MAX_VPS_LAYER_IDX_PLUS1][MAX_VPS_LAYER_IDX_PLUS1];
756  Bool       m_ctuBasedOffsetEnabledFlag   [MAX_VPS_LAYER_IDX_PLUS1][MAX_VPS_LAYER_IDX_PLUS1];
757  Int        m_minHorizontalCtuOffsetPlus1 [MAX_VPS_LAYER_IDX_PLUS1][MAX_VPS_LAYER_IDX_PLUS1];
758#endif
759#if VPS_VUI_VIDEO_SIGNAL
760  Bool       m_vidSigPresentVpsFlag;
761  Int        m_vpsVidSigInfo;
762  Int        m_vpsVidSigIdx[MAX_VPS_LAYER_IDX_PLUS1];
763  Int        m_vpsVidFormat[16];
764  Bool       m_vpsFullRangeFlag[16];
765  Int        m_vpsColorPrimaries[16];
766  Int        m_vpsTransChar[16];
767  Int        m_vpsMatCoeff[16];
768#endif
769
770  Bool       m_bitRatePresentVpsFlag;
771  Bool       m_picRatePresentVpsFlag;
772  Bool       m_bitRatePresentFlag  [MAX_VPS_LAYER_SETS_PLUS1][MAX_TLAYER];
773  Bool       m_picRatePresentFlag  [MAX_VPS_LAYER_SETS_PLUS1][MAX_TLAYER];
774  Int        m_avgBitRate          [MAX_VPS_LAYER_SETS_PLUS1][MAX_TLAYER];
775  Int        m_maxBitRate          [MAX_VPS_LAYER_SETS_PLUS1][MAX_TLAYER];
776  Int        m_constPicRateIdc     [MAX_VPS_LAYER_SETS_PLUS1][MAX_TLAYER];
777  Int        m_avgPicRate          [MAX_VPS_LAYER_SETS_PLUS1][MAX_TLAYER];
778
779#if P0300_ALT_OUTPUT_LAYER_FLAG
780#if Q0078_ADD_LAYER_SETS
781  Bool       m_altOutputLayerFlag[MAX_VPS_LAYER_SETS_PLUS1 + 2*MAX_NUM_ADD_LAYER_SETS];
782#else
783  Bool       m_altOutputLayerFlag[MAX_VPS_LAYER_SETS_PLUS1];
784#endif
785#else
786#if O0153_ALT_OUTPUT_LAYER_FLAG
787  Bool       m_altOutputLayerFlag;
788#endif
789#endif
790#if REPN_FORMAT_IN_VPS
791  Bool       m_repFormatIdxPresentFlag;
792  Int        m_vpsNumRepFormats;            // coded as minus1
793  RepFormat  m_vpsRepFormat[16];
794  Int        m_vpsRepFormatIdx[16];
795#endif
796#if VIEW_ID_RELATED_SIGNALING
797#if O0109_VIEW_ID_LEN
798  Int        m_viewIdLen;
799#else
800  Int        m_viewIdLenMinus1;
801#endif
802  Int        m_viewIdVal                [MAX_LAYERS];
803#endif
804
805#if O0092_0094_DEPENDENCY_CONSTRAINT
806  Int        m_numberRefLayers[MAX_NUM_LAYER_IDS];  // number of direct and indirect reference layers of a coding layer
807  Bool       m_recursiveRefLayerFlag[MAX_NUM_LAYER_IDS][MAX_NUM_LAYER_IDS];  // flag to indicate if j-th layer is a direct or indirect reference layer of i-th layer
808#endif
809#if Q0078_ADD_LAYER_SETS
810  Int        m_numAddLayerSets;
811  UInt       m_highestLayerIdxPlus1[MAX_NUM_ADD_LAYER_SETS][MAX_NUM_LAYER_IDS];
812  UInt       m_predictedLayerId[MAX_NUM_LAYER_IDS][MAX_NUM_LAYER_IDS];
813  UInt       m_numPredictedLayers[MAX_NUM_LAYER_IDS];
814  Int        m_numIndependentLayers;
815  Int        m_numLayersInTreePartition[MAX_LAYERS];
816  UInt       m_treePartitionLayerIdList[MAX_LAYERS][MAX_LAYERS];
817#endif
818#if SPS_DPB_PARAMS
819  Int        m_TolsIdx;
820#endif
821#if VPS_DPB_SIZE_TABLE
822  Bool       m_subLayerFlagInfoPresentFlag [MAX_VPS_OP_LAYER_SETS_PLUS1];
823  Bool       m_subLayerDpbInfoPresentFlag  [MAX_VPS_OP_LAYER_SETS_PLUS1][MAX_LAYERS];
824  Int        m_maxVpsDecPicBufferingMinus1 [MAX_VPS_OP_LAYER_SETS_PLUS1][MAX_LAYERS][MAX_TLAYER];
825#if RESOLUTION_BASED_DPB
826  Int        m_maxVpsLayerDecPicBuffMinus1 [MAX_VPS_OP_LAYER_SETS_PLUS1][MAX_LAYERS][MAX_TLAYER]; 
827#endif
828  Int        m_maxVpsNumReorderPics        [MAX_VPS_OP_LAYER_SETS_PLUS1][MAX_LAYERS];
829  Int        m_maxVpsLatencyIncreasePlus1  [MAX_VPS_OP_LAYER_SETS_PLUS1][MAX_LAYERS];
830#if CHANGE_NUMSUBDPB_IDX
831#if Q0078_ADD_LAYER_SETS
832  Int        m_numSubDpbs                  [MAX_VPS_LAYER_SETS_PLUS1 + 2*MAX_NUM_ADD_LAYER_SETS];
833#else
834  Int        m_numSubDpbs                  [MAX_VPS_LAYER_SETS_PLUS1];
835#endif
836#else
837  Int        m_numSubDpbs                  [MAX_VPS_OP_LAYER_SETS_PLUS1];
838#endif
839#endif
840
841#if O0109_MOVE_VPS_VUI_FLAG
842  Bool       m_vpsVuiPresentFlag;
843#endif
844  Bool       m_vpsExtensionFlag;
845
846#if O0164_MULTI_LAYER_HRD
847  Bool       m_vpsVuiBspHrdPresentFlag;
848#if VPS_VUI_BSP_HRD_PARAMS
849  Int                 m_vpsNumAddHrdParams;
850  std::vector<Bool>   m_cprmsAddPresentFlag;
851  std::vector<Int>    m_numSubLayerHrdMinus1;
852  std::vector<TComHRD> m_bspHrd;
853  Int    m_numSignalledPartitioningSchemes[MAX_VPS_OUTPUT_LAYER_SETS_PLUS1];
854  Int    m_numPartitionsInSchemeMinus1    [MAX_VPS_OUTPUT_LAYER_SETS_PLUS1][16];
855  Int    m_layerIncludedInPartitionFlag   [MAX_VPS_OUTPUT_LAYER_SETS_PLUS1][16][MAX_LAYERS][MAX_LAYERS];
856  Int    m_numBspSchedulesMinus1          [MAX_VPS_OUTPUT_LAYER_SETS_PLUS1][16][MAX_TLAYER];
857  Int    m_bspHrdIdx                      [MAX_VPS_OUTPUT_LAYER_SETS_PLUS1][16][MAX_TLAYER][31][MAX_LAYERS];
858  Int    m_bspSchedIdx                    [MAX_VPS_OUTPUT_LAYER_SETS_PLUS1][16][MAX_TLAYER][31][MAX_LAYERS];
859#else
860  UInt       m_vpsNumBspHrdParametersMinus1;
861  Bool       m_bspCprmsPresentFlag[MAX_VPS_LAYER_SETS_PLUS1];
862  TComHRD    *m_bspHrd;
863  UInt       m_numBitstreamPartitions[MAX_VPS_LAYER_SETS_PLUS1];
864  Bool       m_layerInBspFlag[MAX_VPS_LAYER_SETS_PLUS1][8][MAX_LAYERS];
865  UInt       m_numBspSchedCombinations[MAX_VPS_LAYER_SETS_PLUS1];
866  UInt       m_bspCombHrdIdx[MAX_VPS_LAYER_SETS_PLUS1][16][16];
867  UInt       m_bspCombSchedIdx[MAX_VPS_LAYER_SETS_PLUS1][16][16];
868#endif
869#endif
870
871#if P0182_VPS_VUI_PS_FLAG
872  UInt       m_baseLayerPSCompatibilityFlag[MAX_LAYERS];
873#endif
874
875#if !P0307_REMOVE_VPS_VUI_OFFSET
876#if VPS_VUI_OFFSET
877  Int        m_vpsVuiOffset;
878#endif
879#endif
880#if P0307_VPS_NON_VUI_EXTENSION
881  Int        m_vpsNonVuiExtLength;
882#endif
883#if P0297_VPS_POC_LSB_ALIGNED_FLAG
884  Bool       m_vpsPocLsbAlignedFlag;
885#endif
886#if RESOLUTION_BASED_DPB
887  Int        m_subDpbAssigned            [MAX_VPS_LAYER_SETS_PLUS1][MAX_LAYERS];
888#endif
889#if NECESSARY_LAYER_FLAG
890  std::vector< std::vector<Bool> > m_necessaryLayerFlag;
891  std::vector<Int>               m_numNecessaryLayers;
892#endif
893#endif //SVC_EXTENSION
894public:
895  TComVPS();
896  virtual ~TComVPS();
897
898#if VPS_RESERVED_FLAGS
899  Void        setBaseLayerInternalFlag(Bool x) { m_baseLayerInternalFlag = x; }
900  Bool        getBaseLayerInternalFlag()         { return m_baseLayerInternalFlag; }
901  Void        setBaseLayerAvailableFlag(Bool x) { m_baseLayerAvailableFlag = x; }
902  Bool        getBaseLayerAvailableFlag()         { return m_baseLayerAvailableFlag; }
903#endif
904
905  Void    createHrdParamBuffer()
906  {
907    m_hrdParameters    = new TComHRD[ getNumHrdParameters() ];
908    m_hrdOpSetIdx      = new UInt   [ getNumHrdParameters() ];
909    m_cprmsPresentFlag = new Bool   [ getNumHrdParameters() ];
910  }
911
912#if O0164_MULTI_LAYER_HRD
913  Void    createBspHrdParamBuffer(UInt numHrds)
914  {
915#if VPS_VUI_BSP_HRD_PARAMS
916    m_bspHrd.resize( numHrds );
917    m_cprmsAddPresentFlag.resize( numHrds );
918    m_numSubLayerHrdMinus1.resize( numHrds );
919#else
920    m_bspHrd    = new TComHRD[ numHrds ];
921#endif
922//    m_hrdOpSetIdx      = new UInt   [ getNumHrdParameters() ];
923//    m_cprmsPresentFlag = new Bool   [ getNumHrdParameters() ];
924  }
925#endif
926#if HRD_BPB
927  Int getBspHrdParamBufferCpbCntMinus1(UInt i, UInt sl)
928  {
929#if VPS_VUI_BSP_HRD_PARAMS
930    return m_bspHrd[i].getCpbCntMinus1(sl);
931#else
932    return m_bspHrd->getCpbCntMinus1(sl);
933#endif
934  }
935#endif
936
937  TComHRD* getHrdParameters   ( UInt i )             { return &m_hrdParameters[ i ]; }
938  UInt    getHrdOpSetIdx      ( UInt i )             { return m_hrdOpSetIdx[ i ]; }
939  Void    setHrdOpSetIdx      ( UInt val, UInt i )   { m_hrdOpSetIdx[ i ] = val;  }
940  Bool    getCprmsPresentFlag ( UInt i )             { return m_cprmsPresentFlag[ i ]; }
941  Void    setCprmsPresentFlag ( Bool val, UInt i )   { m_cprmsPresentFlag[ i ] = val;  }
942
943  Int     getVPSId       ()                   { return m_VPSId;          }
944  Void    setVPSId       (Int i)              { m_VPSId = i;             }
945
946  UInt    getMaxTLayers  ()                   { return m_uiMaxTLayers;   }
947  Void    setMaxTLayers  (UInt t)             { m_uiMaxTLayers = t; }
948
949  UInt    getMaxLayers   ()                   { return m_uiMaxLayers;   }
950  Void    setMaxLayers   (UInt l)             { m_uiMaxLayers = l; }
951
952  Bool    getTemporalNestingFlag   ()         { return m_bTemporalIdNestingFlag;   }
953  Void    setTemporalNestingFlag   (Bool t)   { m_bTemporalIdNestingFlag = t; }
954
955  Void    setNumReorderPics(UInt v, UInt tLayer)                { m_numReorderPics[tLayer] = v;    }
956  UInt    getNumReorderPics(UInt tLayer)                        { return m_numReorderPics[tLayer]; }
957
958  Void    setMaxDecPicBuffering(UInt v, UInt tLayer)            { assert(tLayer < MAX_TLAYER); m_uiMaxDecPicBuffering[tLayer] = v;    }
959  UInt    getMaxDecPicBuffering(UInt tLayer)                    { return m_uiMaxDecPicBuffering[tLayer]; }
960
961  Void    setMaxLatencyIncrease(UInt v, UInt tLayer)            { m_uiMaxLatencyIncrease[tLayer] = v;    }
962  UInt    getMaxLatencyIncrease(UInt tLayer)                    { return m_uiMaxLatencyIncrease[tLayer]; }
963
964  UInt    getNumHrdParameters()                                 { return m_numHrdParameters; }
965  Void    setNumHrdParameters(UInt v)                           { m_numHrdParameters = v;    }
966 
967#if !SVC_EXTENSION
968  UInt    getMaxNuhReservedZeroLayerId()                        { return m_maxNuhReservedZeroLayerId; }
969  Void    setMaxNuhReservedZeroLayerId(UInt v)                  { m_maxNuhReservedZeroLayerId = v;    }
970
971  UInt    getMaxOpSets()                                        { return m_numOpSets; }
972  Void    setMaxOpSets(UInt v)                                  { m_numOpSets = v;    }
973#endif
974  Bool    getLayerIdIncludedFlag(UInt opsIdx, UInt id)          { return m_layerIdIncludedFlag[opsIdx][id]; }
975  Void    setLayerIdIncludedFlag(Bool v, UInt opsIdx, UInt id)  { m_layerIdIncludedFlag[opsIdx][id] = v;    }
976
977#if !MULTIPLE_PTL_SUPPORT
978  TComPTL* getPTL() { return &m_pcPTL; }
979#endif
980
981  TimingInfo* getTimingInfo() { return &m_timingInfo; }
982
983#if SVC_EXTENSION
984#if MULTIPLE_PTL_SUPPORT
985  TComPTL* getPTL() { return &m_pcPTLList[0]; }
986  TComPTL* getPTL(UInt idx) { return &m_pcPTLList[idx]; }
987#endif
988#if DERIVE_LAYER_ID_LIST_VARIABLES
989  Int     getLayerSetLayerIdList(Int set, Int layerId)          { return m_layerSetLayerIdList[set][layerId]; }
990  Void    setLayerSetLayerIdList(Int set, Int layerId, Int x)   { m_layerSetLayerIdList[set][layerId] = x;    }
991
992  Int     getNumLayersInIdList(Int set)                          { return m_numLayerInIdList[set]; }
993  Void    setNumLayersInIdList(Int set, Int x)                   { m_numLayerInIdList[set] = x;    }
994
995  Void    deriveLayerIdListVariables();
996#endif
997#if VPS_DPB_SIZE_TABLE
998Void      deriveNumberOfSubDpbs();
999#endif
1000
1001#if O0092_0094_DEPENDENCY_CONSTRAINT
1002  Void    setRefLayersFlags(Int currLayerId);
1003  Bool    getRecursiveRefLayerFlag(Int currLayerId, Int refLayerId)              { return m_recursiveRefLayerFlag[currLayerId][refLayerId];}
1004  Void    setRecursiveRefLayerFlag(Int currLayerId, Int refLayerId, Bool x)      { m_recursiveRefLayerFlag[currLayerId][refLayerId] = x;   }
1005  Int     getNumRefLayers(Int currLayerId)                                       { return m_numberRefLayers[currLayerId];                  }
1006  Void    setNumRefLayers();
1007#endif
1008#if Q0078_ADD_LAYER_SETS
1009#if FIX_LAYER_ID_INIT
1010  void    deriveLayerIdListVariablesForAddLayerSets();
1011#else
1012  void    setLayerIdIncludedFlagsForAddLayerSets();
1013#endif
1014  UInt    getVpsNumLayerSetsMinus1()                                             { return m_vpsNumLayerSetsMinus1; }
1015  Void    setVpsNumLayerSetsMinus1(UInt x)                                       { m_vpsNumLayerSetsMinus1 = x; }
1016  UInt    getNumAddLayerSets()                                                   { return m_numAddLayerSets; }
1017  Void    setNumAddLayerSets(UInt x)                                             { m_numAddLayerSets = x; }
1018  UInt    getHighestLayerIdxPlus1(UInt set, UInt idx)                            { return m_highestLayerIdxPlus1[set][idx]; }
1019  Void    setHighestLayerIdxPlus1(UInt set, UInt idx, UInt layerIdx)             { m_highestLayerIdxPlus1[set][idx] = layerIdx; }
1020  Void    setPredictedLayerIds();
1021  UInt    getPredictedLayerId(UInt layerId, UInt predIdx)                        { return m_predictedLayerId[layerId][predIdx]; }
1022  Void    setPredictedLayerId(UInt layerId, UInt predIdx, UInt x)                { m_predictedLayerId[layerId][predIdx] = x; }
1023  UInt    getNumPredictedLayers(UInt layerId)                                    { return m_numPredictedLayers[layerId]; }
1024  Void    setNumPredictedLayers(UInt layerId, UInt x)                            { m_numPredictedLayers[layerId] = x; }
1025  Void    setTreePartitionLayerIdList();
1026  Int     getNumIndependentLayers()                                              { return m_numIndependentLayers; }
1027  Void    setNumIndependentLayers(Int x)                                         { m_numIndependentLayers = x; }
1028  Int     getNumLayersInTreePartition(Int idx)                                   { return m_numLayersInTreePartition[idx]; }
1029  Void    setNumLayersInTreePartition(Int idx, Int x)                            { m_numLayersInTreePartition[idx] = x; }
1030  UInt    getTreePartitionLayerId(Int idx, Int layerIdx)                         { return m_treePartitionLayerIdList[idx][layerIdx]; }
1031  Void    setTreePartitionLayerId(Int idx, Int layerIdx, UInt layerId)           { m_treePartitionLayerIdList[idx][layerIdx] = layerId; }
1032#endif
1033  UInt    getMaxLayerId()                                       { return m_maxLayerId;   }
1034  Void    setMaxLayerId(UInt v)                                 { m_maxLayerId = v;      }
1035  UInt    getNumLayerSets()                                     { return m_numLayerSets; }
1036  Void    setNumLayerSets(UInt v)                               { m_numLayerSets = v;    }
1037#if VPS_EXTN_MASK_AND_DIM_INFO
1038#if VPS_AVC_BL_FLAG_REMOVAL
1039  Bool   getNonHEVCBaseLayerFlag()                              { return m_nonHEVCBaseLayerFlag;   }
1040  Void   setNonHEVCBaseLayerFlag(Bool x)                        { m_nonHEVCBaseLayerFlag = x;      }
1041#else
1042  Bool   getAvcBaseLayerFlag()                                  { return m_avcBaseLayerFlag;       }
1043  Void   setAvcBaseLayerFlag(Bool x)                            { m_avcBaseLayerFlag = x;          }
1044#endif
1045
1046  Bool   getSplittingFlag()                                     { return m_splittingFlag;          }
1047  Void   setSplittingFlag(Bool x)                               { m_splittingFlag = x;             }
1048
1049  Bool   getScalabilityMask(Int id)                             { return m_scalabilityMask[id];    }
1050  Void   setScalabilityMask(Int id, Bool x)                     { m_scalabilityMask[id] = x;       }
1051
1052  UInt   getDimensionIdLen(Int id)                              { return m_dimensionIdLen[id];     }
1053  Void   setDimensionIdLen(Int id, UInt x)                      { m_dimensionIdLen[id] = x;        }
1054
1055  Bool   getNuhLayerIdPresentFlag()                             { return m_nuhLayerIdPresentFlag;  }
1056  Void   setNuhLayerIdPresentFlag(Bool x)                       { m_nuhLayerIdPresentFlag = x;     }
1057
1058  UInt   getLayerIdInNuh(Int layerIdx)                          { return m_layerIdInNuh[layerIdx];    }
1059  Void   setLayerIdInNuh(Int layerIdx, UInt layerId)            { m_layerIdInNuh[layerIdx] = layerId; }
1060
1061  UInt   getDimensionId(Int layerIdx, Int id)                   { return m_dimensionId[layerIdx][id]; }
1062  Void   setDimensionId(Int layerIdx, Int id, UInt x)           { m_dimensionId[layerIdx][id] = x;    }
1063
1064  UInt   getNumScalabilityTypes()                               { return m_numScalabilityTypes;    }
1065  Void   setNumScalabilityTypes(UInt x)                         { m_numScalabilityTypes = x;       }
1066
1067  UInt   getLayerIdxInVps(Int layerId)                          { return m_layerIdxInVps[layerId];     }
1068  Void   setLayerIdxInVps(Int layerId, UInt layerIdx)           { m_layerIdxInVps[layerId] = layerIdx; }
1069#endif
1070#if BITRATE_PICRATE_SIGNALLING
1071  UInt   getMaxSLayersInLayerSetMinus1(Int ls)                  { return m_maxSLInLayerSetMinus1[ls]; }
1072  Void   setMaxSLayersInLayerSetMinus1(Int ls, Int x)           { m_maxSLInLayerSetMinus1[ls] = x;    }
1073#endif
1074  Bool   getIlpSshSignalingEnabledFlag()                        { return m_ilpSshSignalingEnabledFlag;}
1075  Void   setIlpSshSignalingEnabledFlag(Bool x)                  { m_ilpSshSignalingEnabledFlag = x;}
1076#if VPS_EXTN_PROFILE_INFO
1077  Bool   getProfilePresentFlag(Int id)                          { return m_profilePresentFlag[id]; }
1078  Void   setProfilePresentFlag(Int id, Bool x)                  { m_profilePresentFlag[id] = x;    }
1079
1080#if !P0048_REMOVE_PROFILE_REF
1081  UInt   getProfileLayerSetRef(Int id)                          { return m_profileLayerSetRef[id]; }
1082  Void   setProfileLayerSetRef(Int id, Bool x)                  { m_profileLayerSetRef[id] = x;    }
1083#endif
1084
1085#if !MULTIPLE_PTL_SUPPORT
1086  std::vector<TComPTL>* getPTLForExtnPtr()                      { return &m_pcPTLForExtn;          }
1087  TComPTL* getPTLForExtn(Int id)                                { return &m_pcPTLForExtn[id];      }
1088#endif
1089#endif
1090#if VPS_EXTN_OP_LAYER_SETS
1091  // Target output layer signalling related
1092  UInt   getNumOutputLayerSets()                                { return m_numOutputLayerSets;     } 
1093  Void   setNumOutputLayerSets(Int x)                           { m_numOutputLayerSets = x;        }
1094 
1095  UInt   getOutputLayerSetIdx(Int idx)                          { return m_outputLayerSetIdx[idx]; }
1096  Void   setOutputLayerSetIdx(Int idx, UInt x)                  { m_outputLayerSetIdx[idx] = x;    }
1097
1098  Bool   getOutputLayerFlag(Int layerSet, Int layerIdx)          { return m_outputLayerFlag[layerSet][layerIdx]; }
1099  Void   setOutputLayerFlag(Int layerSet, Int layerIdx, Bool x)  { m_outputLayerFlag[layerSet][layerIdx] = x;    }
1100#endif
1101#if VPS_EXTN_DIRECT_REF_LAYERS
1102  // Direct dependency of layers
1103  Bool   getDirectDependencyFlag(Int currLayerIdx, Int refLayerIdx)             { return m_directDependencyFlag[currLayerIdx][refLayerIdx]; }
1104  Void   setDirectDependencyFlag(Int currLayerIdx, Int refLayerIdx, Bool x)     { m_directDependencyFlag[currLayerIdx][refLayerIdx] = x;    }
1105 
1106  UInt   getNumDirectRefLayers(Int layerId)                                     { return m_numDirectRefLayers[layerId];                   }
1107  Void   setNumDirectRefLayers(Int layerId, UInt refLayerNum)                   { m_numDirectRefLayers[layerId] = refLayerNum;            }
1108
1109  UInt   getRefLayerId(Int layerId, Int refLayerIdc)                            { return m_refLayerId[layerId][refLayerIdc];              }
1110  Void   setRefLayerId(Int layerId, Int refLayerIdc, UInt refLayerId)           { m_refLayerId[layerId][refLayerIdc] = refLayerId;        }
1111
1112  UInt   getDirectDepTypeLen()                                                  { return m_directDepTypeLen;                              }
1113  Void   setDirectDepTypeLen(UInt x)                                            { m_directDepTypeLen = x;                                 }
1114#if O0096_DEFAULT_DEPENDENCY_TYPE
1115  Bool   getDefaultDirectDependencyTypeFlag()                                   { return m_defaultDirectDependencyTypeFlag;               }
1116  Void   setDefaultDirectDependecyTypeFlag(Bool x)                              { m_defaultDirectDependencyTypeFlag = x;                  }
1117  UInt   getDefaultDirectDependencyType()                                       { return m_defaultDirectDependencyType;                   }
1118  Void   setDefaultDirectDependecyType(UInt x)                                  { m_defaultDirectDependencyType = x;                      }
1119#endif
1120  UInt   getDirectDependencyType(Int currLayerIdx, Int refLayerIdx)             { return m_directDependencyType[currLayerIdx][refLayerIdx]; }
1121  Void   setDirectDependencyType(Int currLayerIdx, Int refLayerIdx, UInt x)     { m_directDependencyType[currLayerIdx][refLayerIdx] = x;    }
1122  Bool   isSamplePredictionType(Int currLayerIdx, Int refLayerIdx)              { assert(currLayerIdx != refLayerIdx); return ( ( m_directDependencyType[currLayerIdx][refLayerIdx] + 1 ) & 1 ) ? true : false; }
1123  Bool   isMotionPredictionType(Int currLayerIdx, Int refLayerIdx)              { assert(currLayerIdx != refLayerIdx); return ( ( ( m_directDependencyType[currLayerIdx][refLayerIdx] + 1 ) & 2 ) >> 1 ) ? true : false; }
1124#endif
1125  UInt   getNumProfileTierLevel()                                { return m_numProfileTierLevel; }
1126  Void   setNumProfileTierLevel(Int x)                           { m_numProfileTierLevel = x;    }
1127
1128#if !VPS_EXTN_UEV_CODING
1129  Bool   getMoreOutputLayerSetsThanDefaultFlag()                 { return m_moreOutputLayerSetsThanDefaultFlag;}
1130  Void   setMoreOutputLayerSetsThanDefaultFlag(Bool x)           { m_moreOutputLayerSetsThanDefaultFlag = x   ;}
1131#endif
1132
1133  Int    getNumAddOutputLayerSets()                              { return m_numAddOutputLayerSets; }
1134  Void   setNumAddOutputLayerSets(Int x)                         { m_numAddOutputLayerSets = x   ; }
1135
1136#if P0295_DEFAULT_OUT_LAYER_IDC
1137  UInt   getDefaultTargetOutputLayerIdc()                 { return m_defaultTargetOutputLayerIdc;}
1138  Void   setDefaultTargetOutputLayerIdc(UInt x)           { m_defaultTargetOutputLayerIdc = x    ;}
1139#else
1140#if O0109_DEFAULT_ONE_OUT_LAYER_IDC
1141  UInt   getDefaultOneTargetOutputLayerIdc()                 { return m_defaultOneTargetOutputLayerIdc;}
1142  Void   setDefaultOneTargetOutputLayerIdc(UInt x)           { m_defaultOneTargetOutputLayerIdc= x    ;}
1143#else
1144  Bool   getDefaultOneTargetOutputLayerFlag()                 { return m_defaultOneTargetOutputLayerFlag;}
1145  Void   setDefaultOneTargetOutputLayerFlag(Bool x)           { m_defaultOneTargetOutputLayerFlag= x    ;}
1146#endif
1147#endif
1148#if PER_LAYER_PTL
1149  Bool getNecessaryLayerFlag(Int const i, Int const j) { return m_necessaryLayerFlag[i][j]; }
1150  std::vector< std::vector<Int> >* getProfileLevelTierIdx() { return &m_profileLevelTierIdx; }
1151  std::vector<Int>* getProfileLevelTierIdx(Int const olsIdx) { return &m_profileLevelTierIdx[olsIdx]; }
1152  Int    getProfileLevelTierIdx(Int const olsIdx, Int const layerIdx)     { return m_profileLevelTierIdx[olsIdx][layerIdx]; }
1153  Void   setProfileLevelTierIdx(Int const olsIdx, Int const layerIdx, Int const ptlIdx)     { m_profileLevelTierIdx[olsIdx][layerIdx] = ptlIdx; }
1154#if MULTIPLE_PTL_SUPPORT
1155  Void   addProfileLevelTierIdx(Int const olsIdx, Int const ptlIdx)     { m_profileLevelTierIdx[olsIdx].push_back(ptlIdx); }
1156#endif
1157  Int    calculateLenOfSyntaxElement( Int const numVal );
1158#else
1159  Int    getProfileLevelTierIdx(Int i)                        { return m_profileLevelTierIdx[i]; }
1160  Void   setProfileLevelTierIdx(Int i, Int x)                 { m_profileLevelTierIdx[i] = x   ; }
1161#endif
1162  Bool   getMaxOneActiveRefLayerFlag()                                          { return m_maxOneActiveRefLayerFlag;                      }
1163  Void   setMaxOneActiveRefLayerFlag(Bool x)                                    { m_maxOneActiveRefLayerFlag = x;                         }
1164#if O0062_POC_LSB_NOT_PRESENT_FLAG
1165  UInt   getPocLsbNotPresentFlag(Int i)                                         { return m_pocLsbNotPresentFlag[i]; }
1166  Void   setPocLsbNotPresentFlag(Int i, Bool x)                                 { m_pocLsbNotPresentFlag[i] = x;    }
1167#endif
1168#if P0297_VPS_POC_LSB_ALIGNED_FLAG
1169  Bool   getVpsPocLsbAlignedFlag()                                              { return m_vpsPocLsbAlignedFlag; }
1170  Void   setVpsPocLsbAlignedFlag(Bool x)                                        { m_vpsPocLsbAlignedFlag = x; }
1171#endif
1172#if O0223_PICTURE_TYPES_ALIGN_FLAG
1173  Bool   getCrossLayerPictureTypeAlignFlag()                                    { return m_crossLayerPictureTypeAlignFlag;                      }
1174  Void   setCrossLayerPictureTypeAlignFlag(Bool x)                              { m_crossLayerPictureTypeAlignFlag = x;                         }
1175#endif
1176#if P0068_CROSS_LAYER_ALIGNED_IDR_ONLY_FOR_IRAP_FLAG
1177  Bool   getCrossLayerAlignedIdrOnlyFlag()                                    { return m_crossLayerAlignedIdrOnlyFlag;                      }
1178  Void   setCrossLayerAlignedIdrOnlyFlag(Bool x)                              { m_crossLayerAlignedIdrOnlyFlag = x;                         }
1179#endif
1180  Bool   getCrossLayerIrapAlignFlag()                                           { return m_crossLayerIrapAlignFlag;                      }
1181  Void   setCrossLayerIrapAlignFlag(Bool x)                                     { m_crossLayerIrapAlignFlag = x;                         }
1182  UInt   getMaxTidIlRefPicsPlus1(Int refLayerIdx, Int layerIdx)                     { return m_maxTidIlRefPicsPlus1[refLayerIdx][layerIdx];           }
1183  Void   setMaxTidIlRefPicsPlus1(Int refLayerIdx, Int layerIdx, UInt maxSublayer)   { m_maxTidIlRefPicsPlus1[refLayerIdx][layerIdx] = maxSublayer;    }
1184  Bool   getMaxTidRefPresentFlag()                                  { return m_maxTidRefPresentFlag ;}
1185  Void   setMaxTidRefPresentFlag(Bool x)                            { m_maxTidRefPresentFlag = x;}
1186#if VPS_TSLAYERS
1187  Bool   getMaxTSLayersPresentFlag()                                  { return m_maxTSLayersPresentFlag ;}
1188  Void   setMaxTSLayersPresentFlag(Bool x)                            { m_maxTSLayersPresentFlag = x;}
1189  UInt   getMaxTSLayersMinus1(Int layerIdx)                            { return m_maxTSLayerMinus1[layerIdx];}
1190  Void   setMaxTSLayersMinus1(Int layerIdx, UInt maxTSublayer)         { m_maxTSLayerMinus1[layerIdx] = maxTSublayer;}
1191#endif
1192#if M0040_ADAPTIVE_RESOLUTION_CHANGE
1193  Bool   getSingleLayerForNonIrapFlag()                             { return m_singleLayerForNonIrapFlag; }
1194  Void   setSingleLayerForNonIrapFlag(Bool x)                       { m_singleLayerForNonIrapFlag = x;    }
1195#endif
1196#if HIGHER_LAYER_IRAP_SKIP_FLAG
1197  Bool   getHigherLayerIrapSkipFlag()                             { return m_higherLayerIrapSkipFlag; }
1198  Void   setHigherLayerIrapSkipFlag(Bool x)                       { m_higherLayerIrapSkipFlag = x;    }
1199#endif
1200#if VPS_VUI_TILES_NOT_IN_USE__FLAG 
1201  Bool   getTilesNotInUseFlag()         { return m_tilesNotInUseFlag; }
1202  Void   setTilesNotInUseFlag(Bool x); 
1203  Bool   getTilesInUseFlag(Int currLayerId)    { return m_tilesInUseFlag[currLayerId]; }
1204  Void   setTilesInUseFlag(Int currLayerId, Bool x)    { m_tilesInUseFlag[currLayerId] = x; } 
1205  Bool   getLoopFilterNotAcrossTilesFlag(Int currLayerId)    { return m_loopFilterNotAcrossTilesFlag[currLayerId]; }
1206  Void   setLoopFilterNotAcrossTilesFlag(Int currLayerId, Bool x)    { m_loopFilterNotAcrossTilesFlag[currLayerId] = x; } 
1207#endif
1208  Bool   getTileBoundariesAlignedFlag(Int currLayerId, Int refLayerId)           { return m_tileBoundariesAlignedFlag[currLayerId][refLayerId]; }
1209  Void   setTileBoundariesAlignedFlag(Int currLayerId, Int refLayerId, Bool x)   { m_tileBoundariesAlignedFlag[currLayerId][refLayerId] = x; } 
1210#if VPS_VUI_WPP_NOT_IN_USE__FLAG 
1211  Bool   getWppNotInUseFlag()         { return m_wppNotInUseFlag; }
1212  Void   setWppNotInUseFlag(Bool x); 
1213  Bool   getWppInUseFlag(Int currLayerId)    { return m_wppInUseFlag[currLayerId]; }
1214  Void   setWppInUseFlag(Int currLayerId, Bool x)    { m_wppInUseFlag[currLayerId] = x; } 
1215#endif
1216#if N0160_VUI_EXT_ILP_REF 
1217  Bool   getIlpRestrictedRefLayersFlag   ( )                                        { return m_ilpRestrictedRefLayersFlag        ;}
1218  Void   setIlpRestrictedRefLayersFlag   ( Int val )                                { m_ilpRestrictedRefLayersFlag         = val;}
1219 
1220  Int    getMinSpatialSegmentOffsetPlus1( Int currLayerId, Int refLayerId )          { return m_minSpatialSegmentOffsetPlus1[currLayerId][refLayerId];}
1221  Void   setMinSpatialSegmentOffsetPlus1( Int currLayerId, Int refLayerId, Int val ) { m_minSpatialSegmentOffsetPlus1[currLayerId][refLayerId] = val;}
1222 
1223  Bool   getCtuBasedOffsetEnabledFlag   ( Int currLayerId, Int refLayerId )            { return m_ctuBasedOffsetEnabledFlag[currLayerId][refLayerId];}
1224  Void   setCtuBasedOffsetEnabledFlag   ( Int currLayerId, Int refLayerId, Bool flag ) { m_ctuBasedOffsetEnabledFlag[currLayerId][refLayerId] = flag;}
1225 
1226  Int    getMinHorizontalCtuOffsetPlus1 ( Int currLayerId, Int refLayerId )            { return m_minHorizontalCtuOffsetPlus1[currLayerId][refLayerId];}
1227  Void   setMinHorizontalCtuOffsetPlus1 ( Int currLayerId, Int refLayerId, Int val )   { m_minHorizontalCtuOffsetPlus1[currLayerId][refLayerId] = val;} 
1228#endif
1229#if VPS_VUI_VIDEO_SIGNAL
1230  Bool   getVideoSigPresentVpsFlag()           { return m_vidSigPresentVpsFlag; }
1231  Void   setVideoSigPresentVpsFlag(Bool x)     { m_vidSigPresentVpsFlag = x;    }
1232  Int    getNumVideoSignalInfo()               { return m_vpsVidSigInfo;        }
1233  Void   setNumVideoSignalInfo(Int x)          { m_vpsVidSigInfo = x;           }
1234  Int    getVideoSignalInfoIdx(Int idx)        { return m_vpsVidSigIdx[idx];    }
1235  Void   setVideoSignalInfoIdx(Int idx, Int x) { m_vpsVidSigIdx[idx] = x;       }
1236  Int    getVideoVPSFormat(Int idx)            { return m_vpsVidFormat[idx];    }
1237  Void   setVideoVPSFormat(Int idx, Int x)     { m_vpsVidFormat[idx] = x;       }
1238  Bool   getVideoFullRangeVpsFlag(Int idx)     { return m_vpsFullRangeFlag[idx];}
1239  Void   setVideoFullRangeVpsFlag(Int idx, Bool x) { m_vpsFullRangeFlag[idx] = x;   }
1240  Int    getColorPrimaries(Int idx)            { return m_vpsColorPrimaries[idx];   }
1241  Void   setColorPrimaries(Int idx, Int x)     { m_vpsColorPrimaries[idx] = x;      }
1242  Int    getTransCharacter(Int idx)            { return m_vpsTransChar[idx];    }
1243  Void   setTransCharacter(Int idx, Int x)     { m_vpsTransChar[idx] = x;       }
1244  Int    getMaxtrixCoeff(Int idx)              { return m_vpsMatCoeff[idx];     }
1245  Void   setMaxtrixCoeff(Int idx, Int x)       { m_vpsMatCoeff[idx] = x;        }
1246#endif
1247  Bool   getBitRatePresentVpsFlag()       { return m_bitRatePresentVpsFlag; }
1248  Void   setBitRatePresentVpsFlag(Bool x) { m_bitRatePresentVpsFlag = x;    }
1249  Bool   getPicRatePresentVpsFlag()       { return m_picRatePresentVpsFlag; }
1250  Void   setPicRatePresentVpsFlag(Bool x) { m_picRatePresentVpsFlag = x;    }
1251         
1252  Bool   getBitRatePresentFlag(Int i, Int j)          { return m_bitRatePresentFlag[i][j]; }
1253  Void   setBitRatePresentFlag(Int i, Int j, Bool x)  { m_bitRatePresentFlag[i][j] = x;    }
1254  Bool   getPicRatePresentFlag(Int i, Int j)          { return m_picRatePresentFlag[i][j]; }
1255  Void   setPicRatePresentFlag(Int i, Int j, Bool x)  { m_picRatePresentFlag[i][j] = x;    }
1256         
1257  Int    getAvgBitRate(Int i, Int j)          { return m_avgBitRate[i][j]; }
1258  Void   setAvgBitRate(Int i, Int j, Int x)   { m_avgBitRate[i][j] = x;    }
1259  Int    getMaxBitRate(Int i, Int j)          { return m_maxBitRate[i][j]; }
1260  Void   setMaxBitRate(Int i, Int j, Int x)   { m_maxBitRate[i][j] = x;    }
1261         
1262  Int    getConstPicRateIdc(Int i, Int j)          { return m_constPicRateIdc[i][j]; }
1263  Void   setConstPicRateIdc(Int i, Int j, Int x)   { m_constPicRateIdc[i][j] = x;    }
1264  Int    getAvgPicRate(Int i, Int j)          { return m_avgPicRate[i][j]; }
1265  Void   setAvgPicRate(Int i, Int j, Int x)   { m_avgPicRate[i][j] = x;    }
1266#if O0164_MULTI_LAYER_HRD
1267  Bool     getVpsVuiBspHrdPresentFlag()                         { return m_vpsVuiBspHrdPresentFlag;      }
1268  Void     setVpsVuiBspHrdPresentFlag(Bool x)                   { m_vpsVuiBspHrdPresentFlag = x;         }
1269#if VPS_VUI_BSP_HRD_PARAMS
1270  Int      getVpsNumAddHrdParams()                              { return m_vpsNumAddHrdParams; }
1271  Void     setVpsNumAddHrdParams(Int  i)                   { m_vpsNumAddHrdParams = i;    }
1272
1273  Bool     getCprmsAddPresentFlag(Int i)                        { return m_cprmsAddPresentFlag[i];       }
1274  Void     setCprmsAddPresentFlag(Int  i, Bool  val)  { m_cprmsAddPresentFlag[i] = val;        }
1275
1276  Int      getNumSubLayerHrdMinus1(Int i)           { return m_numSubLayerHrdMinus1[i]; }
1277  Void     setNumSubLayerHrdMinus1(Int i, Int val)  { m_numSubLayerHrdMinus1[i] = val; }
1278
1279  TComHRD*  getBspHrd(Int i)           {return &m_bspHrd[i];}
1280
1281  Int      getNumSignalledPartitioningSchemes(Int  i)                    { return m_numSignalledPartitioningSchemes[i];    }
1282  Void     setNumSignalledPartitioningSchemes(Int  i, Int  val)          { m_numSignalledPartitioningSchemes[i] = val;     }
1283
1284  Int      getNumPartitionsInSchemeMinus1(Int  i, Int j)  { return m_numPartitionsInSchemeMinus1[i][j];}
1285  Void     setNumPartitionsInSchemeMinus1(Int i, Int j, Int val) { m_numPartitionsInSchemeMinus1[i][j] = val; }
1286
1287  Int      getLayerIncludedInPartitionFlag(Int  i, Int j, Int k, Int l)  { return m_layerIncludedInPartitionFlag[i][j][k][l];}
1288  Void     setLayerIncludedInPartitionFlag(Int i, Int j, Int k, Int l, Int val) { m_layerIncludedInPartitionFlag[i][j][k][l] = val; }
1289
1290  Int      getNumBspSchedulesMinus1(Int  i, Int j, Int k)         { return m_numBspSchedulesMinus1[i][j][k];}
1291  Void     setNumBspSchedulesMinus1(Int i, Int j, Int k, Int val) { m_numBspSchedulesMinus1[i][j][k] = val; }
1292
1293  Int      getBspSchedIdx(Int  i, Int j, Int k, Int l, Int m)  { return m_bspSchedIdx[i][j][k][l][m];}
1294  Void     setBspSchedIdx(Int  i, Int j, Int k, Int l, Int m, Int val) { m_bspSchedIdx[i][j][k][l][m] = val; }
1295
1296  Int      getBspHrdIdx(Int  i, Int j, Int k, Int l, Int m)  { return m_bspHrdIdx[i][j][k][l][m];}
1297  Void     setBspHrdIdx(Int  i, Int j, Int k, Int l, Int m, Int val) { m_bspHrdIdx[i][j][k][l][m] = val; }
1298#else
1299  UInt     getVpsNumBspHrdParametersMinus1()                    { return m_vpsNumBspHrdParametersMinus1; }
1300  Void     setVpsNumBspHrdParametersMinus1(UInt i)              { m_vpsNumBspHrdParametersMinus1 = i;    }
1301  Bool     getBspCprmsPresentFlag(UInt i)                       { return m_bspCprmsPresentFlag[i];       }
1302  Void     setBspCprmsPresentFlag(UInt i, Bool val)             { m_bspCprmsPresentFlag[i] = val;        }
1303  TComHRD* getBspHrd(UInt i)                                    { return &m_bspHrd[i];                    }
1304  UInt     getNumBitstreamPartitions(UInt i)                    { return m_numBitstreamPartitions[i];    }
1305  Void     setNumBitstreamPartitions(UInt i, UInt val)          { m_numBitstreamPartitions[i] = val;     }
1306  UInt     getLayerInBspFlag(UInt h, UInt i, UInt j)            { return m_layerInBspFlag[h][i][j];      }
1307  Void     setLayerInBspFlag(UInt h, UInt i, UInt j, UInt val)  { m_layerInBspFlag[h][i][j] = val;       }
1308  UInt     getNumBspSchedCombinations(UInt i)                   { return m_numBspSchedCombinations[i];   }
1309  Void     setNumBspSchedCombinations(UInt i, UInt val)         { m_numBspSchedCombinations[i] = val;    }
1310  UInt     getBspCombHrdIdx(UInt h, UInt i, UInt j)             { return m_bspCombHrdIdx[h][i][j];       }
1311  Void     setBspCombHrdIdx(UInt h, UInt i, UInt j, UInt val)   { m_bspCombHrdIdx[h][i][j] = val;        }
1312  UInt     getBspCombSchedIdx(UInt h, UInt i, UInt j)           { return m_bspCombSchedIdx[h][i][j];     }
1313  Void     setBspCombSchedIdx(UInt h, UInt i, UInt j, UInt val) { m_bspCombSchedIdx[h][i][j] = val;      }
1314#endif
1315#endif
1316#if P0182_VPS_VUI_PS_FLAG
1317  Void   setBaseLayerPSCompatibilityFlag (Int layer, int val)        { m_baseLayerPSCompatibilityFlag[layer] = val; }
1318  Int    getBaseLayerPSCompatibilityFlag (Int layer)   { return m_baseLayerPSCompatibilityFlag[layer];}
1319#endif
1320
1321#if P0300_ALT_OUTPUT_LAYER_FLAG
1322  Bool   getAltOuputLayerFlag(Int idx)         { return m_altOutputLayerFlag[idx]; }
1323  Void   setAltOuputLayerFlag(Int idx, Bool x) { m_altOutputLayerFlag[idx] = x;    }
1324#else
1325#if O0153_ALT_OUTPUT_LAYER_FLAG
1326  Bool   getAltOuputLayerFlag()             { return m_altOutputLayerFlag; }
1327  Void   setAltOuputLayerFlag(Bool x)       { m_altOutputLayerFlag = x;    }
1328#endif
1329#endif
1330#if REPN_FORMAT_IN_VPS
1331  Bool   getRepFormatIdxPresentFlag()       { return m_repFormatIdxPresentFlag; }
1332  Void   setRepFormatIdxPresentFlag(Bool x) { m_repFormatIdxPresentFlag = x;    }
1333
1334  Int    getVpsNumRepFormats()              { return m_vpsNumRepFormats;        }
1335  Void   setVpsNumRepFormats(Int x)         { m_vpsNumRepFormats = x;           }
1336
1337  RepFormat* getVpsRepFormat(Int idx)       { return &m_vpsRepFormat[idx];      }
1338
1339  Int    getVpsRepFormatIdx(Int idx)        { return m_vpsRepFormatIdx[idx];    }
1340  Void   setVpsRepFormatIdx(Int idx, Int x) { m_vpsRepFormatIdx[idx] = x;       }         
1341#endif
1342#if VIEW_ID_RELATED_SIGNALING
1343#if O0109_VIEW_ID_LEN
1344  Void   setViewIdLen( Int  val )                                   { m_viewIdLen = val;  } 
1345  Int    getViewIdLen(  )                                           { return m_viewIdLen; } 
1346#else
1347  Void   setViewIdLenMinus1( Int  val )                             { m_viewIdLenMinus1 = val;  } 
1348  Int    getViewIdLenMinus1(  )                                     { return m_viewIdLenMinus1; } 
1349#endif
1350
1351  Void   setViewIdVal( Int viewOrderIndex, Int  val )               { m_viewIdVal[viewOrderIndex] = val;  } 
1352  Int    getViewIdVal( Int viewOrderIndex )                         { return m_viewIdVal[viewOrderIndex]; } 
1353  Int    getScalabilityId(Int, ScalabilityType scalType );
1354
1355  Int    getViewIndex    ( Int layerIdInNuh )                       { return getScalabilityId( getLayerIdxInVps(layerIdInNuh), VIEW_ORDER_INDEX  ); }   
1356
1357  Int    getNumViews();
1358  Int    scalTypeToScalIdx( ScalabilityType scalType );
1359#endif
1360#if !P0125_REVERT_VPS_EXTN_OFFSET_TO_RESERVED
1361#if VPS_EXTN_OFFSET
1362  Int    getExtensionOffset()                 { return m_extensionOffset;   }
1363  Void   setExtensionOffset( UInt offset )    { m_extensionOffset = offset; }
1364#endif
1365#endif
1366#if VPS_DPB_SIZE_TABLE
1367  Bool   getSubLayerFlagInfoPresentFlag(Int olsIdx)         { return m_subLayerFlagInfoPresentFlag[olsIdx]; }
1368  Void   setSubLayerFlagInfoPresentFlag(Int olsIdx, Bool x) { m_subLayerFlagInfoPresentFlag[olsIdx] = x;    }
1369
1370  Bool   getSubLayerDpbInfoPresentFlag(Int olsIdx, Int subLayerIdx)         { return m_subLayerDpbInfoPresentFlag[olsIdx][subLayerIdx]; }
1371  Void   setSubLayerDpbInfoPresentFlag(Int olsIdx, Int subLayerIdx, Bool x) { m_subLayerDpbInfoPresentFlag[olsIdx][subLayerIdx] = x;    }
1372
1373  // For the 0-th output layer set, use the date from the active SPS for base layer.
1374  Int    getMaxVpsDecPicBufferingMinus1(Int olsIdx, Int subDpbIdx, Int subLayerIdx)        { assert(olsIdx != 0); return m_maxVpsDecPicBufferingMinus1[olsIdx][subDpbIdx][subLayerIdx]; }
1375  Void   setMaxVpsDecPicBufferingMinus1(Int olsIdx, Int subDpbIdx, Int subLayerIdx, Int x) { m_maxVpsDecPicBufferingMinus1[olsIdx][subDpbIdx][subLayerIdx] = x;    }
1376  Int    getLayerIdcForOls( Int olsIdx, Int layerId );
1377
1378#if RESOLUTION_BASED_DPB
1379  Int    getMaxVpsLayerDecPicBuffMinus1(Int i, Int k, Int j)        { assert(i != 0); return m_maxVpsLayerDecPicBuffMinus1[i][k][j]; }
1380  Void   setMaxVpsLayerDecPicBuffMinus1(Int i, Int k, Int j, Int x) { m_maxVpsLayerDecPicBuffMinus1[i][k][j] = x;    }
1381#endif
1382
1383  Int    getMaxVpsNumReorderPics(Int olsIdx, Int subLayerIdx)        { assert(olsIdx != 0); return m_maxVpsNumReorderPics[olsIdx][subLayerIdx]; }
1384  Void   setMaxVpsNumReorderPics(Int olsIdx, Int subLayerIdx, Int x) { m_maxVpsNumReorderPics[olsIdx][subLayerIdx] = x;    }
1385
1386  Int    getMaxVpsLatencyIncreasePlus1(Int olsIdx, Int subLayerIdx)        { assert(olsIdx != 0); return m_maxVpsLatencyIncreasePlus1[olsIdx][subLayerIdx]; }
1387  Void   setMaxVpsLatencyIncreasePlus1(Int olsIdx, Int subLayerIdx, Int x) { m_maxVpsLatencyIncreasePlus1[olsIdx][subLayerIdx] = x;    }
1388
1389  Int    getNumSubDpbs(Int olsIdx)                          { return m_numSubDpbs[olsIdx]; }
1390  Void   setNumSubDpbs(Int olsIdx, Int x)                   { m_numSubDpbs[olsIdx] = x;    }
1391  Void   determineSubDpbInfoFlags();
1392#endif
1393
1394#if O0109_MOVE_VPS_VUI_FLAG
1395  Bool   getVpsVuiPresentFlag()                        { return m_vpsVuiPresentFlag; }
1396  Void   setVpsVuiPresentFlag(Bool x)                  { m_vpsVuiPresentFlag = x;    }
1397#endif
1398  Bool   getVpsExtensionFlag()                         { return m_vpsExtensionFlag;  }
1399  Void   setVpsExtensionFlag(Bool x)                   { m_vpsExtensionFlag = x;     }
1400
1401#if !P0307_REMOVE_VPS_VUI_OFFSET
1402#if VPS_VUI_OFFSET
1403  Int    getVpsVuiOffset()         { return m_vpsVuiOffset; }
1404  Void   setVpsVuiOffset(Int x)    { m_vpsVuiOffset = x; }
1405#endif
1406#endif
1407#if P0307_VPS_NON_VUI_EXTENSION
1408  Int    getVpsNonVuiExtLength()         { return m_vpsNonVuiExtLength; }
1409  Void   setVpsNonVuiExtLength(Int x)    { m_vpsNonVuiExtLength = x; }
1410#endif
1411#if RESOLUTION_BASED_DPB
1412  Void   assignSubDpbIndices();
1413  Int    getSubDpbAssigned  (Int lsIdx, Int layerIdx) { return m_subDpbAssigned[lsIdx][layerIdx]; }
1414  Int    findLayerIdxInLayerSet ( Int lsIdx, Int nuhLayerId );
1415#endif
1416#if O0164_MULTI_LAYER_HRD
1417  Void setBspHrdParameters( UInt hrdIdx, UInt frameRate, UInt numDU, UInt bitRate, Bool randomAccess );
1418#endif
1419#if NECESSARY_LAYER_FLAG
1420  Void  deriveNecessaryLayerFlag();
1421  Void  deriveNecessaryLayerFlag(Int const olsIdx);
1422  Void  checkNecessaryLayerFlagCondition();
1423#endif
1424#if SUB_LAYERS_IN_LAYER_SET
1425  Void  calculateMaxSLInLayerSets();
1426#endif
1427#endif //SVC_EXTENSION
1428};
1429
1430class TComVUI
1431{
1432private:
1433  Bool m_aspectRatioInfoPresentFlag;
1434  Int  m_aspectRatioIdc;
1435  Int  m_sarWidth;
1436  Int  m_sarHeight;
1437  Bool m_overscanInfoPresentFlag;
1438  Bool m_overscanAppropriateFlag;
1439  Bool m_videoSignalTypePresentFlag;
1440  Int  m_videoFormat;
1441  Bool m_videoFullRangeFlag;
1442  Bool m_colourDescriptionPresentFlag;
1443  Int  m_colourPrimaries;
1444  Int  m_transferCharacteristics;
1445  Int  m_matrixCoefficients;
1446  Bool m_chromaLocInfoPresentFlag;
1447  Int  m_chromaSampleLocTypeTopField;
1448  Int  m_chromaSampleLocTypeBottomField;
1449  Bool m_neutralChromaIndicationFlag;
1450  Bool m_fieldSeqFlag;
1451  Window m_defaultDisplayWindow;
1452  Bool m_frameFieldInfoPresentFlag;
1453  Bool m_hrdParametersPresentFlag;
1454  Bool m_bitstreamRestrictionFlag;
1455  Bool m_tilesFixedStructureFlag;
1456  Bool m_motionVectorsOverPicBoundariesFlag;
1457  Bool m_restrictedRefPicListsFlag;
1458  Int  m_minSpatialSegmentationIdc;
1459  Int  m_maxBytesPerPicDenom;
1460  Int  m_maxBitsPerMinCuDenom;
1461  Int  m_log2MaxMvLengthHorizontal;
1462  Int  m_log2MaxMvLengthVertical;
1463  TComHRD m_hrdParameters;
1464  TimingInfo m_timingInfo;
1465
1466public:
1467  TComVUI()
1468    :m_aspectRatioInfoPresentFlag(false) //TODO: This initialiser list contains magic numbers
1469    ,m_aspectRatioIdc(0)
1470    ,m_sarWidth(0)
1471    ,m_sarHeight(0)
1472    ,m_overscanInfoPresentFlag(false)
1473    ,m_overscanAppropriateFlag(false)
1474    ,m_videoSignalTypePresentFlag(false)
1475    ,m_videoFormat(5)
1476    ,m_videoFullRangeFlag(false)
1477    ,m_colourDescriptionPresentFlag(false)
1478    ,m_colourPrimaries(2)
1479    ,m_transferCharacteristics(2)
1480    ,m_matrixCoefficients(2)
1481    ,m_chromaLocInfoPresentFlag(false)
1482    ,m_chromaSampleLocTypeTopField(0)
1483    ,m_chromaSampleLocTypeBottomField(0)
1484    ,m_neutralChromaIndicationFlag(false)
1485    ,m_fieldSeqFlag(false)
1486    ,m_frameFieldInfoPresentFlag(false)
1487    ,m_hrdParametersPresentFlag(false)
1488    ,m_bitstreamRestrictionFlag(false)
1489    ,m_tilesFixedStructureFlag(false)
1490    ,m_motionVectorsOverPicBoundariesFlag(true)
1491    ,m_restrictedRefPicListsFlag(1)
1492    ,m_minSpatialSegmentationIdc(0)
1493    ,m_maxBytesPerPicDenom(2)
1494    ,m_maxBitsPerMinCuDenom(1)
1495    ,m_log2MaxMvLengthHorizontal(15)
1496    ,m_log2MaxMvLengthVertical(15)
1497  {}
1498
1499  virtual ~TComVUI() {}
1500
1501  Bool getAspectRatioInfoPresentFlag() { return m_aspectRatioInfoPresentFlag; }
1502  Void setAspectRatioInfoPresentFlag(Bool i) { m_aspectRatioInfoPresentFlag = i; }
1503
1504  Int getAspectRatioIdc() { return m_aspectRatioIdc; }
1505  Void setAspectRatioIdc(Int i) { m_aspectRatioIdc = i; }
1506
1507  Int getSarWidth() { return m_sarWidth; }
1508  Void setSarWidth(Int i) { m_sarWidth = i; }
1509
1510  Int getSarHeight() { return m_sarHeight; }
1511  Void setSarHeight(Int i) { m_sarHeight = i; }
1512
1513  Bool getOverscanInfoPresentFlag() { return m_overscanInfoPresentFlag; }
1514  Void setOverscanInfoPresentFlag(Bool i) { m_overscanInfoPresentFlag = i; }
1515
1516  Bool getOverscanAppropriateFlag() { return m_overscanAppropriateFlag; }
1517  Void setOverscanAppropriateFlag(Bool i) { m_overscanAppropriateFlag = i; }
1518
1519  Bool getVideoSignalTypePresentFlag() { return m_videoSignalTypePresentFlag; }
1520  Void setVideoSignalTypePresentFlag(Bool i) { m_videoSignalTypePresentFlag = i; }
1521
1522  Int getVideoFormat() { return m_videoFormat; }
1523  Void setVideoFormat(Int i) { m_videoFormat = i; }
1524
1525  Bool getVideoFullRangeFlag() { return m_videoFullRangeFlag; }
1526  Void setVideoFullRangeFlag(Bool i) { m_videoFullRangeFlag = i; }
1527
1528  Bool getColourDescriptionPresentFlag() { return m_colourDescriptionPresentFlag; }
1529  Void setColourDescriptionPresentFlag(Bool i) { m_colourDescriptionPresentFlag = i; }
1530
1531  Int getColourPrimaries() { return m_colourPrimaries; }
1532  Void setColourPrimaries(Int i) { m_colourPrimaries = i; }
1533
1534  Int getTransferCharacteristics() { return m_transferCharacteristics; }
1535  Void setTransferCharacteristics(Int i) { m_transferCharacteristics = i; }
1536
1537  Int getMatrixCoefficients() { return m_matrixCoefficients; }
1538  Void setMatrixCoefficients(Int i) { m_matrixCoefficients = i; }
1539
1540  Bool getChromaLocInfoPresentFlag() { return m_chromaLocInfoPresentFlag; }
1541  Void setChromaLocInfoPresentFlag(Bool i) { m_chromaLocInfoPresentFlag = i; }
1542
1543  Int getChromaSampleLocTypeTopField() { return m_chromaSampleLocTypeTopField; }
1544  Void setChromaSampleLocTypeTopField(Int i) { m_chromaSampleLocTypeTopField = i; }
1545
1546  Int getChromaSampleLocTypeBottomField() { return m_chromaSampleLocTypeBottomField; }
1547  Void setChromaSampleLocTypeBottomField(Int i) { m_chromaSampleLocTypeBottomField = i; }
1548
1549  Bool getNeutralChromaIndicationFlag() { return m_neutralChromaIndicationFlag; }
1550  Void setNeutralChromaIndicationFlag(Bool i) { m_neutralChromaIndicationFlag = i; }
1551
1552  Bool getFieldSeqFlag() { return m_fieldSeqFlag; }
1553  Void setFieldSeqFlag(Bool i) { m_fieldSeqFlag = i; }
1554
1555  Bool getFrameFieldInfoPresentFlag() { return m_frameFieldInfoPresentFlag; }
1556  Void setFrameFieldInfoPresentFlag(Bool i) { m_frameFieldInfoPresentFlag = i; }
1557
1558  Window& getDefaultDisplayWindow()                              { return m_defaultDisplayWindow;                }
1559  Void    setDefaultDisplayWindow(Window& defaultDisplayWindow ) { m_defaultDisplayWindow = defaultDisplayWindow; }
1560
1561  Bool getHrdParametersPresentFlag() { return m_hrdParametersPresentFlag; }
1562  Void setHrdParametersPresentFlag(Bool i) { m_hrdParametersPresentFlag = i; }
1563
1564  Bool getBitstreamRestrictionFlag() { return m_bitstreamRestrictionFlag; }
1565  Void setBitstreamRestrictionFlag(Bool i) { m_bitstreamRestrictionFlag = i; }
1566
1567  Bool getTilesFixedStructureFlag() { return m_tilesFixedStructureFlag; }
1568  Void setTilesFixedStructureFlag(Bool i) { m_tilesFixedStructureFlag = i; }
1569
1570  Bool getMotionVectorsOverPicBoundariesFlag() { return m_motionVectorsOverPicBoundariesFlag; }
1571  Void setMotionVectorsOverPicBoundariesFlag(Bool i) { m_motionVectorsOverPicBoundariesFlag = i; }
1572
1573  Bool getRestrictedRefPicListsFlag() { return m_restrictedRefPicListsFlag; }
1574  Void setRestrictedRefPicListsFlag(Bool b) { m_restrictedRefPicListsFlag = b; }
1575
1576  Int getMinSpatialSegmentationIdc() { return m_minSpatialSegmentationIdc; }
1577  Void setMinSpatialSegmentationIdc(Int i) { m_minSpatialSegmentationIdc = i; }
1578
1579  Int getMaxBytesPerPicDenom() { return m_maxBytesPerPicDenom; }
1580  Void setMaxBytesPerPicDenom(Int i) { m_maxBytesPerPicDenom = i; }
1581
1582  Int getMaxBitsPerMinCuDenom() { return m_maxBitsPerMinCuDenom; }
1583  Void setMaxBitsPerMinCuDenom(Int i) { m_maxBitsPerMinCuDenom = i; }
1584
1585  Int getLog2MaxMvLengthHorizontal() { return m_log2MaxMvLengthHorizontal; }
1586  Void setLog2MaxMvLengthHorizontal(Int i) { m_log2MaxMvLengthHorizontal = i; }
1587
1588  Int getLog2MaxMvLengthVertical() { return m_log2MaxMvLengthVertical; }
1589  Void setLog2MaxMvLengthVertical(Int i) { m_log2MaxMvLengthVertical = i; }
1590
1591  TComHRD* getHrdParameters                 ()             { return &m_hrdParameters; }
1592
1593  TimingInfo* getTimingInfo() { return &m_timingInfo; }
1594};
1595
1596/// SPS class
1597class TComSPS
1598{
1599private:
1600  Int          m_SPSId;
1601  Int          m_VPSId;
1602  ChromaFormat m_chromaFormatIdc;
1603
1604  UInt        m_uiMaxTLayers;           // maximum number of temporal layers
1605
1606#if R0279_REP_FORMAT_INBL
1607  Bool        m_bV1CompatibleSPSFlag;
1608#endif
1609
1610  // Structure
1611  UInt        m_picWidthInLumaSamples;
1612  UInt        m_picHeightInLumaSamples;
1613
1614  Int         m_log2MinCodingBlockSize;
1615  Int         m_log2DiffMaxMinCodingBlockSize;
1616  UInt        m_uiMaxCUWidth;
1617  UInt        m_uiMaxCUHeight;
1618  UInt        m_uiMaxCUDepth;
1619
1620  Window      m_conformanceWindow;
1621
1622  TComRPSList m_RPSList;
1623  Bool        m_bLongTermRefsPresent;
1624  Bool        m_TMVPFlagsPresent;
1625  Int         m_numReorderPics[MAX_TLAYER];
1626
1627  // Tool list
1628  UInt        m_uiQuadtreeTULog2MaxSize;
1629  UInt        m_uiQuadtreeTULog2MinSize;
1630  UInt        m_uiQuadtreeTUMaxDepthInter;
1631  UInt        m_uiQuadtreeTUMaxDepthIntra;
1632  Bool        m_usePCM;
1633  UInt        m_pcmLog2MaxSize;
1634  UInt        m_uiPCMLog2MinSize;
1635  Bool        m_useAMP;
1636
1637  // Parameter
1638  Int         m_uiBitDepth[MAX_NUM_CHANNEL_TYPE];
1639  Int         m_qpBDOffset[MAX_NUM_CHANNEL_TYPE];
1640  Bool        m_useExtendedPrecision;
1641  Bool        m_useHighPrecisionPredictionWeighting;
1642  Bool        m_useResidualRotation;
1643  Bool        m_useSingleSignificanceMapContext;
1644  Bool        m_useGolombRiceParameterAdaptation;
1645  Bool        m_alignCABACBeforeBypass;
1646  Bool        m_useResidualDPCM[NUMBER_OF_RDPCM_SIGNALLING_MODES];
1647  UInt        m_uiPCMBitDepth[MAX_NUM_CHANNEL_TYPE];
1648  Bool        m_bPCMFilterDisableFlag;
1649  Bool        m_disableIntraReferenceSmoothing;
1650
1651  UInt        m_uiBitsForPOC;
1652  UInt        m_numLongTermRefPicSPS;
1653  UInt        m_ltRefPicPocLsbSps[MAX_NUM_LONG_TERM_REF_PICS];
1654  Bool        m_usedByCurrPicLtSPSFlag[MAX_NUM_LONG_TERM_REF_PICS];
1655  // Max physical transform size
1656  UInt        m_uiMaxTrSize;
1657
1658  Int m_iAMPAcc[MAX_CU_DEPTH];
1659  Bool        m_bUseSAO;
1660
1661  Bool        m_bTemporalIdNestingFlag; // temporal_id_nesting_flag
1662
1663  Bool        m_scalingListEnabledFlag;
1664  Bool        m_scalingListPresentFlag;
1665  TComScalingList*     m_scalingList;   //!< ScalingList class pointer
1666  UInt        m_uiMaxDecPicBuffering[MAX_TLAYER];
1667  UInt        m_uiMaxLatencyIncrease[MAX_TLAYER];  // Really max latency increase plus 1 (value 0 expresses no limit)
1668
1669  Bool        m_useDF;
1670  Bool        m_useStrongIntraSmoothing;
1671
1672  Bool        m_vuiParametersPresentFlag;
1673  TComVUI     m_vuiParameters;
1674
1675  static const Int   m_winUnitX[MAX_CHROMA_FORMAT_IDC+1];
1676  static const Int   m_winUnitY[MAX_CHROMA_FORMAT_IDC+1];
1677  TComPTL     m_pcPTL;
1678
1679#if O0043_BEST_EFFORT_DECODING
1680  UInt        m_forceDecodeBitDepth; // 0 = do not force the decoder's bit depth, other = force the decoder's bit depth to this value (best effort decoding)
1681#endif
1682
1683#if SVC_EXTENSION
1684  UInt        m_layerId;
1685  Bool        m_extensionFlag;
1686  UInt        m_numScaledRefLayerOffsets;
1687  Bool        m_multiLayerExtSpsFlag;
1688#if R0042_PROFILE_INDICATION 
1689  Int         m_NumDirectRefLayers;
1690#endif
1691#if REPN_FORMAT_IN_VPS
1692  Bool m_updateRepFormatFlag;
1693#if O0096_REP_FORMAT_INDEX
1694  UInt        m_updateRepFormatIndex;
1695#endif
1696#endif
1697#if SCALINGLIST_INFERRING
1698  Bool        m_inferScalingListFlag;
1699  UInt        m_scalingListRefLayerId;
1700#endif
1701#endif //SVC_EXTENSION
1702
1703public:
1704  TComSPS();
1705  virtual ~TComSPS();
1706#if O0043_BEST_EFFORT_DECODING
1707  Void setForceDecodeBitDepth(UInt bitDepth) { m_forceDecodeBitDepth = bitDepth; }
1708  UInt getForceDecodeBitDepth()        const { return m_forceDecodeBitDepth;     }
1709#endif
1710
1711  Int  getVPSId       ()         { return m_VPSId;          }
1712  Void setVPSId       (Int i)    { m_VPSId = i;             }
1713  Int  getSPSId       ()         { return m_SPSId;          }
1714  Void setSPSId       (Int i)    { m_SPSId = i;             }
1715  ChromaFormat  getChromaFormatIdc ()         { return m_chromaFormatIdc;       }
1716  Void setChromaFormatIdc (ChromaFormat i)    { m_chromaFormatIdc = i;          }
1717
1718  static Int getWinUnitX (Int chromaFormatIdc) { assert (chromaFormatIdc >= 0 && chromaFormatIdc <= MAX_CHROMA_FORMAT_IDC); return m_winUnitX[chromaFormatIdc];      }
1719  static Int getWinUnitY (Int chromaFormatIdc) { assert (chromaFormatIdc >= 0 && chromaFormatIdc <= MAX_CHROMA_FORMAT_IDC); return m_winUnitY[chromaFormatIdc];      }
1720
1721#if R0279_REP_FORMAT_INBL //These two functions shall be used / called when the syntax element sps_ext_or_max_sub_layers_minus1 and V1CompatibleSPSFlag are implemented
1722  Bool getV1CompatibleSPSFlag()        {return m_bV1CompatibleSPSFlag;}
1723  Void setV1CompatibleSPSFlag(Bool x)       { m_bV1CompatibleSPSFlag = x;}
1724#endif
1725
1726  // structure
1727  Void setPicWidthInLumaSamples       ( UInt u ) { m_picWidthInLumaSamples = u;        }
1728  UInt getPicWidthInLumaSamples       ()         { return  m_picWidthInLumaSamples;    }
1729  Void setPicHeightInLumaSamples      ( UInt u ) { m_picHeightInLumaSamples = u;       }
1730  UInt getPicHeightInLumaSamples      ()         { return  m_picHeightInLumaSamples;   }
1731
1732  Window& getConformanceWindow()                           { return  m_conformanceWindow;             }
1733  Void    setConformanceWindow(Window& conformanceWindow ) { m_conformanceWindow = conformanceWindow; }
1734
1735  UInt  getNumLongTermRefPicSPS()             { return m_numLongTermRefPicSPS; }
1736  Void  setNumLongTermRefPicSPS(UInt val)     { m_numLongTermRefPicSPS = val; }
1737
1738  UInt  getLtRefPicPocLsbSps(UInt index)             { assert( index < MAX_NUM_LONG_TERM_REF_PICS ); return m_ltRefPicPocLsbSps[index]; }
1739  Void  setLtRefPicPocLsbSps(UInt index, UInt val)   { assert( index < MAX_NUM_LONG_TERM_REF_PICS ); m_ltRefPicPocLsbSps[index] = val; }
1740
1741  Bool getUsedByCurrPicLtSPSFlag(Int i)              { assert( i < MAX_NUM_LONG_TERM_REF_PICS ); return m_usedByCurrPicLtSPSFlag[i];}
1742  Void setUsedByCurrPicLtSPSFlag(Int i, Bool x)      { assert( i < MAX_NUM_LONG_TERM_REF_PICS ); m_usedByCurrPicLtSPSFlag[i] = x;}
1743
1744  Int  getLog2MinCodingBlockSize() const           { return m_log2MinCodingBlockSize; }
1745  Void setLog2MinCodingBlockSize(Int val)          { m_log2MinCodingBlockSize = val; }
1746  Int  getLog2DiffMaxMinCodingBlockSize() const    { return m_log2DiffMaxMinCodingBlockSize; }
1747  Void setLog2DiffMaxMinCodingBlockSize(Int val)   { m_log2DiffMaxMinCodingBlockSize = val; }
1748
1749  Void setMaxCUWidth  ( UInt u ) { m_uiMaxCUWidth = u;      }
1750  UInt getMaxCUWidth  ()         { return  m_uiMaxCUWidth;  }
1751  Void setMaxCUHeight ( UInt u ) { m_uiMaxCUHeight = u;     }
1752  UInt getMaxCUHeight ()         { return  m_uiMaxCUHeight; }
1753  Void setMaxCUDepth  ( UInt u ) { m_uiMaxCUDepth = u;      }
1754  UInt getMaxCUDepth  ()         { return  m_uiMaxCUDepth;  }
1755  Void setUsePCM      ( Bool b ) { m_usePCM = b;           }
1756  Bool getUsePCM      ()         { return m_usePCM;        }
1757  Void setPCMLog2MaxSize  ( UInt u ) { m_pcmLog2MaxSize = u;      }
1758  UInt getPCMLog2MaxSize  ()         { return  m_pcmLog2MaxSize;  }
1759  Void setPCMLog2MinSize  ( UInt u ) { m_uiPCMLog2MinSize = u;      }
1760  UInt getPCMLog2MinSize  ()         { return  m_uiPCMLog2MinSize;  }
1761  Void setBitsForPOC  ( UInt u ) { m_uiBitsForPOC = u;      }
1762  UInt getBitsForPOC  ()         { return m_uiBitsForPOC;   }
1763  Bool getUseAMP() { return m_useAMP; }
1764  Void setUseAMP( Bool b ) { m_useAMP = b; }
1765  Void setQuadtreeTULog2MaxSize( UInt u ) { m_uiQuadtreeTULog2MaxSize = u;    }
1766  UInt getQuadtreeTULog2MaxSize()         { return m_uiQuadtreeTULog2MaxSize; }
1767  Void setQuadtreeTULog2MinSize( UInt u ) { m_uiQuadtreeTULog2MinSize = u;    }
1768  UInt getQuadtreeTULog2MinSize()         { return m_uiQuadtreeTULog2MinSize; }
1769  Void setQuadtreeTUMaxDepthInter( UInt u ) { m_uiQuadtreeTUMaxDepthInter = u;    }
1770  Void setQuadtreeTUMaxDepthIntra( UInt u ) { m_uiQuadtreeTUMaxDepthIntra = u;    }
1771  UInt getQuadtreeTUMaxDepthInter()         { return m_uiQuadtreeTUMaxDepthInter; }
1772  UInt getQuadtreeTUMaxDepthIntra()         { return m_uiQuadtreeTUMaxDepthIntra; }
1773  Void setNumReorderPics(Int i, UInt tlayer)              { m_numReorderPics[tlayer] = i;    }
1774  Int  getNumReorderPics(UInt tlayer)                     { return m_numReorderPics[tlayer]; }
1775  Void         createRPSList( Int numRPS );
1776  TComRPSList* getRPSList()                      { return &m_RPSList;          }
1777  Bool      getLongTermRefsPresent()         { return m_bLongTermRefsPresent; }
1778  Void      setLongTermRefsPresent(Bool b)   { m_bLongTermRefsPresent=b;      }
1779  Bool      getTMVPFlagsPresent()         { return m_TMVPFlagsPresent; }
1780  Void      setTMVPFlagsPresent(Bool b)   { m_TMVPFlagsPresent=b;      }
1781  // physical transform
1782  Void setMaxTrSize   ( UInt u ) { m_uiMaxTrSize = u;       }
1783  UInt getMaxTrSize   ()         { return  m_uiMaxTrSize;   }
1784
1785  // AMP accuracy
1786  Int       getAMPAcc   ( UInt uiDepth ) { return m_iAMPAcc[uiDepth]; }
1787  Void      setAMPAcc   ( UInt uiDepth, Int iAccu ) { assert( uiDepth < g_uiMaxCUDepth);  m_iAMPAcc[uiDepth] = iAccu; }
1788
1789  // Bit-depth
1790  Int       getBitDepth     (ChannelType type)         { return m_uiBitDepth[type];   }
1791  Void      setBitDepth     (ChannelType type, Int u ) { m_uiBitDepth[type] = u;      }
1792  Int       getDifferentialLumaChromaBitDepth() const  { return Int(m_uiBitDepth[CHANNEL_TYPE_LUMA]) - Int(m_uiBitDepth[CHANNEL_TYPE_CHROMA]); }
1793  Int       getQpBDOffset   (ChannelType type) const   { return m_qpBDOffset[type];   }
1794  Void      setQpBDOffset   (ChannelType type, Int i)  { m_qpBDOffset[type] = i;      }
1795  Bool      getUseExtendedPrecision()          const   { return m_useExtendedPrecision;  }
1796  Void      setUseExtendedPrecision(Bool value)        { m_useExtendedPrecision = value; }
1797  Bool      getUseHighPrecisionPredictionWeighting() const { return m_useHighPrecisionPredictionWeighting; }
1798  Void      setUseHighPrecisionPredictionWeighting(Bool value) { m_useHighPrecisionPredictionWeighting = value; }
1799
1800  Void      setUseSAO                  (Bool bVal)  {m_bUseSAO = bVal;}
1801  Bool      getUseSAO                  ()           {return m_bUseSAO;}
1802
1803  Bool      getUseResidualRotation            ()                 const { return m_useResidualRotation;  }
1804  Void      setUseResidualRotation            (const Bool value)       { m_useResidualRotation = value; }
1805
1806  Bool      getUseSingleSignificanceMapContext()                 const { return m_useSingleSignificanceMapContext;  }
1807  Void      setUseSingleSignificanceMapContext(const Bool value)       { m_useSingleSignificanceMapContext = value; }
1808
1809  Bool      getUseGolombRiceParameterAdaptation()                 const { return m_useGolombRiceParameterAdaptation;  }
1810  Void      setUseGolombRiceParameterAdaptation(const Bool value)       { m_useGolombRiceParameterAdaptation = value; }
1811
1812  Bool      getAlignCABACBeforeBypass         ()                 const { return m_alignCABACBeforeBypass;  }
1813  Void      setAlignCABACBeforeBypass         (const Bool value)       { m_alignCABACBeforeBypass = value; }
1814
1815  Bool      getUseResidualDPCM (const RDPCMSignallingMode signallingMode)        const      { return m_useResidualDPCM[signallingMode];  }
1816  Void      setUseResidualDPCM (const RDPCMSignallingMode signallingMode, const Bool value) { m_useResidualDPCM[signallingMode] = value; }
1817
1818  UInt      getMaxTLayers()                           { return m_uiMaxTLayers; }
1819  Void      setMaxTLayers( UInt uiMaxTLayers )        { assert( uiMaxTLayers <= MAX_TLAYER ); m_uiMaxTLayers = uiMaxTLayers; }
1820
1821  Bool      getTemporalIdNestingFlag()                { return m_bTemporalIdNestingFlag; }
1822  Void      setTemporalIdNestingFlag( Bool bValue )   { m_bTemporalIdNestingFlag = bValue; }
1823  UInt      getPCMBitDepth         (ChannelType type) const   { return m_uiPCMBitDepth[type]; }
1824  Void      setPCMBitDepth         (ChannelType type, UInt u) { m_uiPCMBitDepth[type] = u;    }
1825  Void      setPCMFilterDisableFlag     ( Bool   bValue  )    { m_bPCMFilterDisableFlag = bValue; }
1826  Bool      getPCMFilterDisableFlag     ()                    { return m_bPCMFilterDisableFlag;   }
1827  Void      setDisableIntraReferenceSmoothing (Bool bValue)   { m_disableIntraReferenceSmoothing=bValue; }
1828  Bool      getDisableIntraReferenceSmoothing ()        const { return m_disableIntraReferenceSmoothing; }
1829
1830  Bool getScalingListFlag       ()         { return m_scalingListEnabledFlag;     }
1831  Void setScalingListFlag       ( Bool b ) { m_scalingListEnabledFlag  = b;       }
1832  Bool getScalingListPresentFlag()         { return m_scalingListPresentFlag;     }
1833  Void setScalingListPresentFlag( Bool b ) { m_scalingListPresentFlag  = b;       }
1834
1835#if SCALINGLIST_INFERRING
1836  Void setScalingList( TComScalingList *scalingList ) { m_scalingList = scalingList; }
1837#else
1838  Void setScalingList      ( TComScalingList *scalingList);
1839#endif
1840  TComScalingList* getScalingList ()       { return m_scalingList; }               //!< get ScalingList class pointer in SPS
1841  UInt getMaxDecPicBuffering  (UInt tlayer)            { return m_uiMaxDecPicBuffering[tlayer]; }
1842  Void setMaxDecPicBuffering  ( UInt ui, UInt tlayer ) { assert(tlayer < MAX_TLAYER);  m_uiMaxDecPicBuffering[tlayer] = ui;   }
1843  UInt getMaxLatencyIncrease  (UInt tlayer)            { return m_uiMaxLatencyIncrease[tlayer];   }
1844  Void setMaxLatencyIncrease  ( UInt ui , UInt tlayer) { m_uiMaxLatencyIncrease[tlayer] = ui;      }
1845
1846  Void setUseStrongIntraSmoothing (Bool bVal)  {m_useStrongIntraSmoothing = bVal;}
1847  Bool getUseStrongIntraSmoothing ()           {return m_useStrongIntraSmoothing;}
1848
1849  Bool getVuiParametersPresentFlag() { return m_vuiParametersPresentFlag; }
1850  Void setVuiParametersPresentFlag(Bool b) { m_vuiParametersPresentFlag = b; }
1851  TComVUI* getVuiParameters() { return &m_vuiParameters; }
1852  Void setHrdParameters( UInt frameRate, UInt numDU, UInt bitRate, Bool randomAccess );
1853
1854  TComPTL* getPTL()     { return &m_pcPTL; }
1855
1856#if SVC_EXTENSION
1857  Void     setLayerId(UInt layerId)                 { m_layerId = layerId;           }
1858  UInt     getLayerId()                             { return m_layerId;              }
1859  Int      getExtensionFlag()                       { return m_extensionFlag;        }
1860  Void     setExtensionFlag(Int n)                  { m_extensionFlag = n;           }
1861  Bool     getMultiLayerExtSpsFlag()                { return m_multiLayerExtSpsFlag; }
1862  Void     setMultiLayerExtSpsFlag(Bool flag)       { m_multiLayerExtSpsFlag = flag; }
1863#if R0042_PROFILE_INDICATION
1864  Int      getNumDirectRefLayers()                  { return  m_NumDirectRefLayers;  }
1865  Void     setNumDirectRefLayers(Int n)             {  m_NumDirectRefLayers = n;     }
1866#endif
1867#if REPN_FORMAT_IN_VPS
1868  Bool     getUpdateRepFormatFlag()       { return m_updateRepFormatFlag; }
1869  Void     setUpdateRepFormatFlag(Bool x) { m_updateRepFormatFlag = x;    }
1870#if O0096_REP_FORMAT_INDEX
1871  Int      getUpdateRepFormatIndex()      { return m_updateRepFormatIndex; }
1872  Void     setUpdateRepFormatIndex(UInt index)  { m_updateRepFormatIndex = index; }
1873#endif
1874#endif
1875#if SCALINGLIST_INFERRING
1876  Bool     getInferScalingListFlag()  { return m_inferScalingListFlag;  }
1877  UInt     getScalingListRefLayerId() { return m_scalingListRefLayerId; }
1878  Void     setInferScalingListFlag( Bool flag )     { m_inferScalingListFlag = flag;     }
1879  Void     setScalingListRefLayerId( UInt layerId ) { m_scalingListRefLayerId = layerId; }
1880#endif
1881#endif //SVC_EXTENSION
1882};
1883
1884/// Reference Picture Lists class
1885
1886class TComRefPicListModification
1887{
1888private:
1889  UInt      m_bRefPicListModificationFlagL0;
1890  UInt      m_bRefPicListModificationFlagL1;
1891  UInt      m_RefPicSetIdxL0[REF_PIC_LIST_NUM_IDX];
1892  UInt      m_RefPicSetIdxL1[REF_PIC_LIST_NUM_IDX];
1893
1894public:
1895  TComRefPicListModification();
1896  virtual ~TComRefPicListModification();
1897
1898  Void  create                    ();
1899  Void  destroy                   ();
1900
1901  Bool       getRefPicListModificationFlagL0() { return m_bRefPicListModificationFlagL0; }
1902  Void       setRefPicListModificationFlagL0(Bool flag) { m_bRefPicListModificationFlagL0 = flag; }
1903  Bool       getRefPicListModificationFlagL1() { return m_bRefPicListModificationFlagL1; }
1904  Void       setRefPicListModificationFlagL1(Bool flag) { m_bRefPicListModificationFlagL1 = flag; }
1905  Void       setRefPicSetIdxL0(UInt idx, UInt refPicSetIdx) { assert(idx<REF_PIC_LIST_NUM_IDX); m_RefPicSetIdxL0[idx] = refPicSetIdx; }
1906  UInt       getRefPicSetIdxL0(UInt idx) { assert(idx<REF_PIC_LIST_NUM_IDX); return m_RefPicSetIdxL0[idx]; }
1907  Void       setRefPicSetIdxL1(UInt idx, UInt refPicSetIdx) { assert(idx<REF_PIC_LIST_NUM_IDX); m_RefPicSetIdxL1[idx] = refPicSetIdx; }
1908  UInt       getRefPicSetIdxL1(UInt idx) { assert(idx<REF_PIC_LIST_NUM_IDX); return m_RefPicSetIdxL1[idx]; }
1909};
1910
1911/// PPS class
1912class TComPPS
1913{
1914private:
1915  Int         m_PPSId;                    // pic_parameter_set_id
1916  Int         m_SPSId;                    // seq_parameter_set_id
1917  Int         m_picInitQPMinus26;
1918  Bool        m_useDQP;
1919  Bool        m_bConstrainedIntraPred;    // constrained_intra_pred_flag
1920  Bool        m_bSliceChromaQpFlag;       // slicelevel_chroma_qp_flag
1921
1922  // access channel
1923  TComSPS*    m_pcSPS;
1924  UInt        m_uiMaxCuDQPDepth;
1925  UInt        m_uiMinCuDQPSize;
1926
1927  /* Chroma QP Adjustments*/
1928  Int         m_MaxCuChromaQpAdjDepth;
1929  Int         m_MinCuChromaQpAdjSize;
1930  Int         m_ChromaQpAdjTableSize;
1931  ChromaQpAdj m_ChromaQpAdjTable[7];
1932
1933  Int         m_chromaCbQpOffset;
1934  Int         m_chromaCrQpOffset;
1935
1936  UInt        m_numRefIdxL0DefaultActive;
1937  UInt        m_numRefIdxL1DefaultActive;
1938
1939  Bool        m_bUseWeightPred;           // Use of Weighting Prediction (P_SLICE)
1940  Bool        m_useWeightedBiPred;        // Use of Weighting Bi-Prediction (B_SLICE)
1941  Bool        m_OutputFlagPresentFlag;   // Indicates the presence of output_flag in slice header
1942  Bool        m_useCrossComponentPrediction;
1943  UInt        m_saoOffsetBitShift[MAX_NUM_CHANNEL_TYPE];
1944  Bool        m_TransquantBypassEnableFlag; // Indicates presence of cu_transquant_bypass_flag in CUs.
1945  Bool        m_useTransformSkip;
1946  Int         m_transformSkipLog2MaxSize;
1947  Bool        m_dependentSliceSegmentsEnabledFlag;     //!< Indicates the presence of dependent slices
1948  Bool        m_tilesEnabledFlag;              //!< Indicates the presence of tiles
1949  Bool        m_entropyCodingSyncEnabledFlag;  //!< Indicates the presence of wavefronts
1950
1951  Bool             m_loopFilterAcrossTilesEnabledFlag;
1952  Bool             m_uniformSpacingFlag;
1953  Int              m_numTileColumnsMinus1;
1954  Int              m_numTileRowsMinus1;
1955  std::vector<Int> m_tileColumnWidth;
1956  std::vector<Int> m_tileRowHeight;
1957
1958  Int      m_numSubstreams;
1959
1960  Int      m_signHideFlag;
1961
1962  Bool     m_cabacInitPresentFlag;
1963  UInt     m_encCABACTableIdx;           // Used to transmit table selection across slices
1964
1965  Bool     m_sliceHeaderExtensionPresentFlag;
1966  Bool     m_loopFilterAcrossSlicesEnabledFlag;
1967  Bool     m_deblockingFilterControlPresentFlag;
1968  Bool     m_deblockingFilterOverrideEnabledFlag;
1969  Bool     m_picDisableDeblockingFilterFlag;
1970  Int      m_deblockingFilterBetaOffsetDiv2;    //< beta offset for deblocking filter
1971  Int      m_deblockingFilterTcOffsetDiv2;      //< tc offset for deblocking filter
1972  Bool     m_scalingListPresentFlag;
1973  TComScalingList*     m_scalingList;   //!< ScalingList class pointer
1974  Bool     m_listsModificationPresentFlag;
1975  UInt     m_log2ParallelMergeLevelMinus2;
1976  Int      m_numExtraSliceHeaderBits;
1977
1978#if SVC_EXTENSION
1979  Bool     m_extensionFlag;
1980#if SCALINGLIST_INFERRING
1981  UInt     m_layerId;
1982  Bool     m_inferScalingListFlag;
1983  UInt     m_scalingListRefLayerId;
1984#endif
1985#if POC_RESET_IDC
1986  Bool     m_pocResetInfoPresentFlag;
1987#endif
1988  UInt     m_numRefLayerLocationOffsets;
1989#if O0098_SCALED_REF_LAYER_ID
1990  UInt     m_refLocationOffsetLayerId[MAX_LAYERS];
1991#endif
1992  Window   m_scaledRefLayerWindow[MAX_LAYERS];
1993  Window   m_refLayerWindow[MAX_LAYERS];
1994  Bool     m_scaledRefLayerOffsetPresentFlag[MAX_LAYERS];
1995  Bool     m_refRegionOffsetPresentFlag[MAX_LAYERS];
1996  Int      m_phaseHorLuma[MAX_LAYERS];
1997  Int      m_phaseVerLuma[MAX_LAYERS];
1998  Int      m_phaseHorChroma[MAX_LAYERS];
1999  Int      m_phaseVerChroma[MAX_LAYERS];
2000  Bool     m_resamplePhaseSetPresentFlag[MAX_LAYERS];
2001#if Q0048_CGS_3D_ASYMLUT
2002  Int      m_nCGSFlag;
2003  Int      m_nCGSOutputBitDepthY; // not for syntax
2004  Int      m_nCGSOutputBitDepthC; // not for syntax
2005#endif
2006#endif
2007
2008public:
2009  TComPPS();
2010  virtual ~TComPPS();
2011
2012  Int       getPPSId ()      { return m_PPSId; }
2013  Void      setPPSId (Int i) { m_PPSId = i; }
2014  Int       getSPSId ()      { return m_SPSId; }
2015  Void      setSPSId (Int i) { m_SPSId = i; }
2016
2017  Int       getPicInitQPMinus26 ()         { return  m_picInitQPMinus26; }
2018  Void      setPicInitQPMinus26 ( Int i )  { m_picInitQPMinus26 = i;     }
2019  Bool      getUseDQP ()                   { return m_useDQP;        }
2020  Void      setUseDQP ( Bool b )           { m_useDQP   = b;         }
2021  Bool      getConstrainedIntraPred ()         { return  m_bConstrainedIntraPred; }
2022  Void      setConstrainedIntraPred ( Bool b ) { m_bConstrainedIntraPred = b;     }
2023  Bool      getSliceChromaQpFlag ()         { return  m_bSliceChromaQpFlag; }
2024  Void      setSliceChromaQpFlag ( Bool b ) { m_bSliceChromaQpFlag = b;     }
2025
2026  Void      setSPS              ( TComSPS* pcSPS ) { m_pcSPS = pcSPS; }
2027  TComSPS*  getSPS              ()         { return m_pcSPS;          }
2028  Void      setMaxCuDQPDepth    ( UInt u ) { m_uiMaxCuDQPDepth = u;   }
2029  UInt      getMaxCuDQPDepth    ()         { return m_uiMaxCuDQPDepth;}
2030  Void      setMinCuDQPSize     ( UInt u ) { m_uiMinCuDQPSize = u;    }
2031  UInt      getMinCuDQPSize     ()         { return m_uiMinCuDQPSize; }
2032
2033  Void      setQpOffset(ComponentID compID, Int i ) { if (compID==COMPONENT_Cb) m_chromaCbQpOffset = i; else if (compID==COMPONENT_Cr) m_chromaCrQpOffset = i; else assert(0); }
2034  Int       getQpOffset(ComponentID compID) const { return (compID==COMPONENT_Y) ? 0 : (compID==COMPONENT_Cb ? m_chromaCbQpOffset : m_chromaCrQpOffset ); }
2035
2036  Void      setMaxCuChromaQpAdjDepth ( UInt u ) { m_MaxCuChromaQpAdjDepth = u; }
2037  UInt      getMaxCuChromaQpAdjDepth ()         { return m_MaxCuChromaQpAdjDepth; }
2038  Void      setMinCuChromaQpAdjSize ( UInt u ) { m_MinCuChromaQpAdjSize = u; }
2039  UInt      getMinCuChromaQpAdjSize ()         { return m_MinCuChromaQpAdjSize; }
2040  Void      clearChromaQpAdjTable() { m_ChromaQpAdjTableSize = 0; }
2041  Int       getChromaQpAdjTableSize() { return m_ChromaQpAdjTableSize; }
2042  const ChromaQpAdj& getChromaQpAdjTableAt( Int idx ) const { return m_ChromaQpAdjTable[idx]; }
2043  Void      setChromaQpAdjTableAt( Int idx, Int cbOffset, Int crOffset )
2044  {
2045    m_ChromaQpAdjTable[idx].u.comp.CbOffset = cbOffset;
2046    m_ChromaQpAdjTable[idx].u.comp.CrOffset = crOffset;
2047    m_ChromaQpAdjTableSize = max(m_ChromaQpAdjTableSize, idx);
2048  }
2049
2050  Void      setNumRefIdxL0DefaultActive(UInt ui)    { m_numRefIdxL0DefaultActive=ui;     }
2051  UInt      getNumRefIdxL0DefaultActive()           { return m_numRefIdxL0DefaultActive; }
2052  Void      setNumRefIdxL1DefaultActive(UInt ui)    { m_numRefIdxL1DefaultActive=ui;     }
2053  UInt      getNumRefIdxL1DefaultActive()           { return m_numRefIdxL1DefaultActive; }
2054
2055  Bool getUseWP                     ()          { return m_bUseWeightPred;  }
2056  Bool getWPBiPred                  ()          { return m_useWeightedBiPred;     }
2057  Void setUseWP                     ( Bool b )  { m_bUseWeightPred = b;     }
2058  Void setWPBiPred                  ( Bool b )  { m_useWeightedBiPred = b;  }
2059
2060  Bool      getUseCrossComponentPrediction()         const { return m_useCrossComponentPrediction;  }
2061  Void      setUseCrossComponentPrediction(Bool value)     { m_useCrossComponentPrediction = value; }
2062
2063  UInt      getSaoOffsetBitShift(ChannelType type) const            { return m_saoOffsetBitShift[type];       }
2064  Void      setSaoOffsetBitShift(ChannelType type, UInt uiBitShift) { m_saoOffsetBitShift[type] = uiBitShift; }
2065
2066  Void      setOutputFlagPresentFlag( Bool b )  { m_OutputFlagPresentFlag = b;    }
2067  Bool      getOutputFlagPresentFlag()          { return m_OutputFlagPresentFlag; }
2068  Void      setTransquantBypassEnableFlag( Bool b ) { m_TransquantBypassEnableFlag = b; }
2069  Bool      getTransquantBypassEnableFlag()         { return m_TransquantBypassEnableFlag; }
2070
2071  Bool      getUseTransformSkip       ()         { return m_useTransformSkip;     }
2072  Void      setUseTransformSkip       ( Bool b ) { m_useTransformSkip  = b;       }
2073  UInt      getTransformSkipLog2MaxSize ()         { return m_transformSkipLog2MaxSize;     }
2074  Void      setTransformSkipLog2MaxSize ( UInt u ) { m_transformSkipLog2MaxSize  = u;       }
2075
2076  Void    setLoopFilterAcrossTilesEnabledFlag  (Bool b)    { m_loopFilterAcrossTilesEnabledFlag = b; }
2077  Bool    getLoopFilterAcrossTilesEnabledFlag  ()          { return m_loopFilterAcrossTilesEnabledFlag;   }
2078  Bool    getDependentSliceSegmentsEnabledFlag() const     { return m_dependentSliceSegmentsEnabledFlag; }
2079  Void    setDependentSliceSegmentsEnabledFlag(Bool val)   { m_dependentSliceSegmentsEnabledFlag = val; }
2080  Bool    getEntropyCodingSyncEnabledFlag() const          { return m_entropyCodingSyncEnabledFlag; }
2081  Void    setEntropyCodingSyncEnabledFlag(Bool val)        { m_entropyCodingSyncEnabledFlag = val; }
2082
2083  Void     setTilesEnabledFlag       (Bool val)                             { m_tilesEnabledFlag = val; }
2084  Bool     getTilesEnabledFlag       () const                               { return m_tilesEnabledFlag; }
2085  Void     setTileUniformSpacingFlag (Bool b)                               { m_uniformSpacingFlag = b; }
2086  Bool     getTileUniformSpacingFlag () const                               { return m_uniformSpacingFlag; }
2087  Void     setNumTileColumnsMinus1   (Int i)                                { m_numTileColumnsMinus1 = i; }
2088  Int      getNumTileColumnsMinus1   () const                               { return m_numTileColumnsMinus1; }
2089  Void     setTileColumnWidth        (const std::vector<Int>& columnWidth ) { m_tileColumnWidth = columnWidth; }
2090  UInt     getTileColumnWidth        (UInt columnIdx) const                 { return  m_tileColumnWidth[columnIdx]; }
2091  Void     setNumTileRowsMinus1      (Int i)                                { m_numTileRowsMinus1 = i; }
2092  Int      getNumTileRowsMinus1      () const                               { return m_numTileRowsMinus1; }
2093  Void     setTileRowHeight          (const std::vector<Int>& rowHeight)    { m_tileRowHeight = rowHeight;  }
2094  UInt     getTileRowHeight          (UInt rowIdx) const                    { return m_tileRowHeight[rowIdx]; }
2095
2096  Void     setNumSubstreams    (Int numSubstreams)                     { m_numSubstreams = numSubstreams; }
2097  Int      getNumSubstreams    ()                                      { return m_numSubstreams; }
2098
2099  Void      setSignHideFlag( Int signHideFlag ) { m_signHideFlag = signHideFlag; }
2100  Int       getSignHideFlag()                    { return m_signHideFlag; }
2101
2102  Void     setCabacInitPresentFlag( Bool flag )     { m_cabacInitPresentFlag = flag;    }
2103  Void     setEncCABACTableIdx( Int idx )           { m_encCABACTableIdx = idx;         }
2104  Bool     getCabacInitPresentFlag()                { return m_cabacInitPresentFlag;    }
2105  UInt     getEncCABACTableIdx()                    { return m_encCABACTableIdx;        }
2106  Void     setDeblockingFilterControlPresentFlag( Bool val )  { m_deblockingFilterControlPresentFlag = val; }
2107  Bool     getDeblockingFilterControlPresentFlag()            { return m_deblockingFilterControlPresentFlag; }
2108  Void     setDeblockingFilterOverrideEnabledFlag( Bool val ) { m_deblockingFilterOverrideEnabledFlag = val; }
2109  Bool     getDeblockingFilterOverrideEnabledFlag()           { return m_deblockingFilterOverrideEnabledFlag; }
2110  Void     setPicDisableDeblockingFilterFlag(Bool val)        { m_picDisableDeblockingFilterFlag = val; }       //!< set offset for deblocking filter disabled
2111  Bool     getPicDisableDeblockingFilterFlag()                { return m_picDisableDeblockingFilterFlag; }      //!< get offset for deblocking filter disabled
2112  Void     setDeblockingFilterBetaOffsetDiv2(Int val)         { m_deblockingFilterBetaOffsetDiv2 = val; }       //!< set beta offset for deblocking filter
2113  Int      getDeblockingFilterBetaOffsetDiv2()                { return m_deblockingFilterBetaOffsetDiv2; }      //!< get beta offset for deblocking filter
2114  Void     setDeblockingFilterTcOffsetDiv2(Int val)           { m_deblockingFilterTcOffsetDiv2 = val; }               //!< set tc offset for deblocking filter
2115  Int      getDeblockingFilterTcOffsetDiv2()                  { return m_deblockingFilterTcOffsetDiv2; }              //!< get tc offset for deblocking filter
2116  Bool     getScalingListPresentFlag()         { return m_scalingListPresentFlag;     }
2117  Void     setScalingListPresentFlag( Bool b ) { m_scalingListPresentFlag  = b;       }
2118
2119#if SCALINGLIST_INFERRING
2120  Void     setScalingList( TComScalingList *scalingList ) { m_scalingList = scalingList; }
2121#else
2122  Void     setScalingList      ( TComScalingList *scalingList);
2123#endif
2124  TComScalingList* getScalingList ()          { return m_scalingList; }         //!< get ScalingList class pointer in PPS
2125  Bool getListsModificationPresentFlag ()          { return m_listsModificationPresentFlag; }
2126  Void setListsModificationPresentFlag ( Bool b )  { m_listsModificationPresentFlag = b;    }
2127  UInt getLog2ParallelMergeLevelMinus2      ()                    { return m_log2ParallelMergeLevelMinus2; }
2128  Void setLog2ParallelMergeLevelMinus2      (UInt mrgLevel)       { m_log2ParallelMergeLevelMinus2 = mrgLevel; }
2129  Int getNumExtraSliceHeaderBits() { return m_numExtraSliceHeaderBits; }
2130  Void setNumExtraSliceHeaderBits(Int i) { m_numExtraSliceHeaderBits = i; }
2131  Void      setLoopFilterAcrossSlicesEnabledFlag ( Bool   bValue  )    { m_loopFilterAcrossSlicesEnabledFlag = bValue; }
2132  Bool      getLoopFilterAcrossSlicesEnabledFlag ()                    { return m_loopFilterAcrossSlicesEnabledFlag;   }
2133    Bool getSliceHeaderExtensionPresentFlag   ()                    { return m_sliceHeaderExtensionPresentFlag; }
2134  Void setSliceHeaderExtensionPresentFlag   (Bool val)            { m_sliceHeaderExtensionPresentFlag = val; }
2135#if SVC_EXTENSION
2136  Int     getExtensionFlag()                { return m_extensionFlag;  }
2137  Void    setExtensionFlag(Int n)           { m_extensionFlag = n;     }
2138#if SCALINGLIST_INFERRING
2139  UInt     getLayerId() { return m_layerId; }
2140  Void     setLayerId( UInt layerId ) { m_layerId = layerId;            }
2141  Bool     getInferScalingListFlag()  { return m_inferScalingListFlag;  }
2142  UInt     getScalingListRefLayerId() { return m_scalingListRefLayerId; }
2143  Void     setInferScalingListFlag( Bool flag )     { m_inferScalingListFlag = flag;     }
2144  Void     setScalingListRefLayerId( UInt layerId ) { m_scalingListRefLayerId = layerId; }
2145#endif
2146#if POC_RESET_IDC
2147  Bool getPocResetInfoPresentFlag   ()                    { return m_pocResetInfoPresentFlag; }
2148  Void setPocResetInfoPresentFlag   (const Bool val)      { m_pocResetInfoPresentFlag = val; }
2149#endif
2150  UInt     getNumRefLayerLocationOffsets()       { return m_numRefLayerLocationOffsets; }
2151  Void     setNumRefLayerLocationOffsets(Int x)  { m_numRefLayerLocationOffsets = x;    }
2152#if O0098_SCALED_REF_LAYER_ID
2153  UInt     getRefLocationOffsetLayerId(Int x)          { return m_refLocationOffsetLayerId[x]; }
2154  Void     setRefLocationOffsetLayerId(Int x, UInt id) { m_refLocationOffsetLayerId[x] = id;   }
2155  Window&  getScaledRefLayerWindowForLayer( Int layerId );
2156#endif
2157  Window&  getScaledRefLayerWindow( Int x )   { return m_scaledRefLayerWindow[x]; }
2158  Window&  getRefLayerWindowForLayer( Int layerId );
2159  Window&  getRefLayerWindow( Int x )   { return m_refLayerWindow[x]; }
2160  Bool getScaledRefLayerOffsetPresentFlag(Int x) { return m_scaledRefLayerOffsetPresentFlag[x]; }
2161  Void setScaledRefLayerOffsetPresentFlag(Int x, Bool b) { m_scaledRefLayerOffsetPresentFlag[x] = b; }
2162  Bool getRefRegionOffsetPresentFlag(Int x) { return m_refRegionOffsetPresentFlag[x]; }
2163  Void setRefRegionOffsetPresentFlag(Int x, Bool b) { m_refRegionOffsetPresentFlag[x] = b; }
2164  Int getPhaseHorLuma(Int x) { return m_phaseHorLuma[x]; }
2165  Int getPhaseVerLuma(Int x) { return m_phaseVerLuma[x]; }
2166  Int getPhaseHorChroma(Int x) { return m_phaseHorChroma[x]; }
2167  Int getPhaseVerChroma(Int x) { return m_phaseVerChroma[x]; }
2168  Void setPhaseHorLuma(Int x, Int val) { m_phaseHorLuma[x] = val; }
2169  Void setPhaseVerLuma(Int x, Int val) { m_phaseVerLuma[x] = val; }
2170  Void setPhaseHorChroma(Int x, Int val) { m_phaseHorChroma[x] = val; }
2171  Void setPhaseVerChroma(Int x, Int val) { m_phaseVerChroma[x] = val; }
2172  Bool getResamplePhaseSetPresentFlag(Int x) { return m_resamplePhaseSetPresentFlag[x]; }
2173  Void setResamplePhaseSetPresentFlag(Int x, Bool b) { m_resamplePhaseSetPresentFlag[x] = b; }
2174  Bool hasZeroResamplingPhase(Int refLayerId);
2175  Void getResamplingPhase(Int refLayerId, Bool& phaseSetPresentFlag, Int& phaseHorLuma, Int& phaseVerLuma, Int& phaseHorChroma, Int& phaseVerChroma);
2176#if Q0048_CGS_3D_ASYMLUT
2177  Int     getCGSFlag()                { return m_nCGSFlag;  }
2178  Void    setCGSFlag(Int n)           { m_nCGSFlag = n;     }
2179  Int     getCGSOutputBitDepthY()     { return m_nCGSOutputBitDepthY;  }
2180  Void    setCGSOutputBitDepthY(Int n){ m_nCGSOutputBitDepthY = n;     }
2181  Int     getCGSOutputBitDepthC()     { return m_nCGSOutputBitDepthC;  }
2182  Void    setCGSOutputBitDepthC(Int n){ m_nCGSOutputBitDepthC = n;     }
2183#endif
2184#endif //SVC_EXTENSION
2185};
2186
2187struct WPScalingParam
2188{
2189  // Explicit weighted prediction parameters parsed in slice header,
2190  // or Implicit weighted prediction parameters (8 bits depth values).
2191  Bool bPresentFlag;
2192  UInt uiLog2WeightDenom;
2193  Int  iWeight;
2194  Int  iOffset;
2195
2196  // Weighted prediction scaling values built from above parameters (bitdepth scaled):
2197  Int  w;
2198  Int  o;
2199  Int  offset;
2200  Int  shift;
2201  Int  round;
2202};
2203
2204struct WPACDCParam
2205{
2206  Int64 iAC;
2207  Int64 iDC;
2208#if O0194_WEIGHTED_PREDICTION_CGS
2209  Int iSamples;
2210#endif
2211};
2212
2213/// slice header class
2214class TComSlice
2215{
2216 
2217private:
2218  //  Bitstream writing
2219  Bool        m_saoEnabledFlag[MAX_NUM_CHANNEL_TYPE];
2220  Int         m_iPPSId;               ///< picture parameter set ID
2221  Bool        m_PicOutputFlag;        ///< pic_output_flag
2222  Int         m_iPOC;
2223  Int         m_iLastIDR;
2224  Int         m_iAssociatedIRAP;
2225#if POC_RESET_IDC_ENCODER
2226  Int         m_associatedIrapPocBeforeReset;
2227#endif
2228  NalUnitType m_iAssociatedIRAPType;
2229  static Int  m_prevTid0POC;
2230  TComReferencePictureSet *m_pcRPS;
2231  TComReferencePictureSet m_LocalRPS;
2232  Int         m_iBDidx;
2233  TComRefPicListModification m_RefPicListModification;
2234  NalUnitType m_eNalUnitType;         ///< Nal unit type for the slice
2235  SliceType   m_eSliceType;
2236  Int         m_iSliceQp;
2237  Bool        m_dependentSliceSegmentFlag;
2238#if ADAPTIVE_QP_SELECTION
2239  Int         m_iSliceQpBase;
2240#endif
2241  Bool        m_ChromaQpAdjEnabled;
2242  Bool        m_deblockingFilterDisable;
2243  Bool        m_deblockingFilterOverrideFlag;      //< offsets for deblocking filter inherit from PPS
2244  Int         m_deblockingFilterBetaOffsetDiv2;    //< beta offset for deblocking filter
2245  Int         m_deblockingFilterTcOffsetDiv2;      //< tc offset for deblocking filter
2246  Int         m_list1IdxToList0Idx[MAX_NUM_REF];
2247  Int         m_aiNumRefIdx   [NUM_REF_PIC_LIST_01];    //  for multiple reference of current slice
2248
2249  Bool        m_bCheckLDC;
2250
2251  //  Data
2252  Int         m_iSliceQpDelta;
2253  Int         m_iSliceChromaQpDelta[MAX_NUM_COMPONENT];
2254  TComPic*    m_apcRefPicList [NUM_REF_PIC_LIST_01][MAX_NUM_REF+1];
2255  Int         m_aiRefPOCList  [NUM_REF_PIC_LIST_01][MAX_NUM_REF+1];
2256  Bool        m_bIsUsedAsLongTerm[NUM_REF_PIC_LIST_01][MAX_NUM_REF+1];
2257  Int         m_iDepth;
2258
2259  // referenced slice?
2260  Bool        m_bRefenced;
2261
2262  // access channel
2263  TComVPS*    m_pcVPS;
2264  TComSPS*    m_pcSPS;
2265  TComPPS*    m_pcPPS;
2266  TComPic*    m_pcPic;
2267#if ADAPTIVE_QP_SELECTION
2268  TComTrQuant* m_pcTrQuant;
2269#endif
2270  UInt        m_colFromL0Flag;  // collocated picture from List0 flag
2271
2272  Bool        m_noOutputPriorPicsFlag;
2273  Bool        m_noRaslOutputFlag;
2274  Bool        m_handleCraAsBlaFlag;
2275 
2276  UInt        m_colRefIdx;
2277  UInt        m_maxNumMergeCand;
2278
2279  Double      m_lambdas[MAX_NUM_COMPONENT];
2280
2281  Bool        m_abEqualRef  [NUM_REF_PIC_LIST_01][MAX_NUM_REF][MAX_NUM_REF];
2282  UInt        m_uiTLayer;
2283  Bool        m_bTLayerSwitchingFlag;
2284
2285  SliceConstraint m_sliceMode;
2286  UInt        m_sliceArgument;
2287  UInt        m_sliceCurStartCtuTsAddr;
2288  UInt        m_sliceCurEndCtuTsAddr;
2289  UInt        m_sliceIdx;
2290  SliceConstraint m_sliceSegmentMode;
2291  UInt        m_sliceSegmentArgument;
2292  UInt        m_sliceSegmentCurStartCtuTsAddr;
2293  UInt        m_sliceSegmentCurEndCtuTsAddr;
2294  Bool        m_nextSlice;
2295  Bool        m_nextSliceSegment;
2296  UInt        m_sliceBits;
2297  UInt        m_sliceSegmentBits;
2298  Bool        m_bFinalized;
2299
2300  WPScalingParam  m_weightPredTable[NUM_REF_PIC_LIST_01][MAX_NUM_REF][MAX_NUM_COMPONENT]; // [REF_PIC_LIST_0 or REF_PIC_LIST_1][refIdx][0:Y, 1:U, 2:V]
2301  WPACDCParam    m_weightACDCParam[MAX_NUM_COMPONENT];
2302
2303  std::vector<UInt> m_substreamSizes;
2304
2305  TComScalingList*     m_scalingList;                 //!< pointer of quantization matrix
2306  Bool        m_cabacInitFlag;
2307
2308  Bool       m_bLMvdL1Zero;
2309  Bool       m_temporalLayerNonReferenceFlag;
2310  Bool       m_LFCrossSliceBoundaryFlag;
2311
2312  Bool       m_enableTMVPFlag;
2313
2314#if SVC_EXTENSION
2315  Bool        m_firstSliceInPic;
2316#if R0226_SLICE_TMVP
2317  Bool        m_availableForTMVPRefFlag;
2318#endif
2319  UInt        m_layerId;
2320  TComPic*    m_pcBaseColPic[MAX_LAYERS];
2321  TComPicYuv* m_pcFullPelBaseRec[MAX_LAYERS];
2322  Int         m_numMotionPredRefLayers;
2323#if REF_IDX_MFM
2324  Bool        m_bMFMEnabledFlag;
2325  Int         m_colRefLayerIdx;
2326  Bool        m_altColIndicationFlag;
2327  TComPic*    m_pcIlpPic;
2328#endif
2329
2330  Bool        m_interLayerPredEnabledFlag;
2331  Int         m_activeNumILRRefIdx;        //< Active inter-layer reference pictures
2332  Int         m_interLayerPredLayerIdc  [MAX_VPS_LAYER_IDX_PLUS1];
2333  Bool        m_bDiscardableFlag;
2334#if O0149_CROSS_LAYER_BLA_FLAG
2335  Bool        m_bCrossLayerBLAFlag;
2336#endif
2337#if POC_RESET_IDC_SIGNALLING
2338  Int         m_pocResetIdc;
2339  Int         m_pocResetPeriodId;
2340  Bool        m_fullPocResetFlag;
2341  Int         m_pocLsbVal;
2342  Int         m_pocMsbVal;
2343  Bool        m_pocMsbValRequiredFlag;
2344  Bool        m_pocMsbValPresentFlag;
2345#if P0297_VPS_POC_LSB_ALIGNED_FLAG
2346  Bool        m_pocMsbValNeeded;
2347  Int         m_pocResetDeltaPoc;
2348#endif
2349#endif
2350#if POC_RESET_IDC_ENCODER
2351  Int         m_pocValueBeforeReset;
2352#endif
2353#if POC_RESET_IDC_DECODER || POC_RESET_IDC_ENCODER
2354  Int         m_picOrderCntLsb;
2355#endif
2356#if Q0048_CGS_3D_ASYMLUT
2357  Int        m_nCGSOverWritePPS;  // for optimization, not output to bitstream
2358#endif
2359#endif //SVC_EXTENSION
2360
2361public:
2362  TComSlice();
2363  virtual ~TComSlice();
2364#if SVC_EXTENSION
2365  Void      initSlice       ( UInt layerId );
2366#else
2367  Void      initSlice       ();
2368#endif
2369  Void      initTiles();
2370
2371  Void      setVPS          ( TComVPS* pcVPS ) { m_pcVPS = pcVPS; }
2372  TComVPS*  getVPS          () { return m_pcVPS; }
2373  Void      setSPS          ( TComSPS* pcSPS ) { m_pcSPS = pcSPS; }
2374  TComSPS*  getSPS          () { return m_pcSPS; }
2375  const TComSPS*  getSPS() const  { return m_pcSPS; }
2376
2377  Void      setPPS          ( TComPPS* pcPPS )         { assert(pcPPS!=NULL); m_pcPPS = pcPPS; m_iPPSId = pcPPS->getPPSId(); }
2378  TComPPS*  getPPS          () { return m_pcPPS; }
2379  const TComPPS*  getPPS() const { return m_pcPPS; }
2380
2381#if ADAPTIVE_QP_SELECTION
2382  Void          setTrQuant          ( TComTrQuant* pcTrQuant ) { m_pcTrQuant = pcTrQuant; }
2383  TComTrQuant*  getTrQuant          () { return m_pcTrQuant; }
2384#endif
2385
2386  Void      setPPSId        ( Int PPSId )         { m_iPPSId = PPSId; }
2387  Int       getPPSId        () { return m_iPPSId; }
2388  Void      setPicOutputFlag( Bool b )         { m_PicOutputFlag = b;    }
2389  Bool      getPicOutputFlag()                 { return m_PicOutputFlag; }
2390  Void      setSaoEnabledFlag(ChannelType chType, Bool s) {m_saoEnabledFlag[chType] =s; }
2391  Bool      getSaoEnabledFlag(ChannelType chType) { return m_saoEnabledFlag[chType]; }
2392  Void      setRPS          ( TComReferencePictureSet *pcRPS ) { m_pcRPS = pcRPS; }
2393  TComReferencePictureSet*  getRPS          () { return m_pcRPS; }
2394  TComReferencePictureSet*  getLocalRPS     () { return &m_LocalRPS; }
2395
2396  Void      setRPSidx          ( Int iBDidx ) { m_iBDidx = iBDidx; }
2397  Int       getRPSidx          () { return m_iBDidx; }
2398  Int       getPrevTid0POC      ()                        { return  m_prevTid0POC;       }
2399  TComRefPicListModification* getRefPicListModification() { return &m_RefPicListModification; }
2400  Void      setLastIDR(Int iIDRPOC)                       { m_iLastIDR = iIDRPOC; }
2401  Int       getLastIDR()                                  { return m_iLastIDR; }
2402  Void      setAssociatedIRAPPOC(Int iAssociatedIRAPPOC)             { m_iAssociatedIRAP = iAssociatedIRAPPOC; }
2403  Int       getAssociatedIRAPPOC()                        { return m_iAssociatedIRAP; }
2404  Void      setAssociatedIRAPType(NalUnitType associatedIRAPType)    { m_iAssociatedIRAPType = associatedIRAPType; }
2405  NalUnitType getAssociatedIRAPType()                        { return m_iAssociatedIRAPType; }
2406  SliceType getSliceType    ()                          { return  m_eSliceType;         }
2407  Int       getPOC          ()                          { return  m_iPOC;           }
2408  Int       getSliceQp      ()                          { return  m_iSliceQp;           }
2409  Bool      getDependentSliceSegmentFlag()             const { return m_dependentSliceSegmentFlag; }
2410  Void      setDependentSliceSegmentFlag(Bool val)           { m_dependentSliceSegmentFlag = val; }
2411#if ADAPTIVE_QP_SELECTION
2412  Int       getSliceQpBase  ()                         const { return  m_iSliceQpBase;       }
2413#endif
2414  Int       getSliceQpDelta ()                         const { return  m_iSliceQpDelta;      }
2415  Int       getSliceChromaQpDelta (ComponentID compID) const { return  isLuma(compID) ? 0 : m_iSliceChromaQpDelta[compID]; }
2416  Bool      getUseChromaQpAdj()                        const { return m_ChromaQpAdjEnabled; }
2417  Bool      getDeblockingFilterDisable()               const { return  m_deblockingFilterDisable; }
2418  Bool      getDeblockingFilterOverrideFlag()          const { return  m_deblockingFilterOverrideFlag; }
2419  Int       getDeblockingFilterBetaOffsetDiv2()        const { return  m_deblockingFilterBetaOffsetDiv2; }
2420  Int       getDeblockingFilterTcOffsetDiv2()          const { return  m_deblockingFilterTcOffsetDiv2; }
2421
2422  Int       getNumRefIdx        ( RefPicList e )       const    { return  m_aiNumRefIdx[e];             }
2423  TComPic*  getPic              ()                              { return  m_pcPic;                      }
2424  TComPic*  getRefPic           ( RefPicList e, Int iRefIdx)    { return  m_apcRefPicList[e][iRefIdx];  }
2425  Int       getRefPOC           ( RefPicList e, Int iRefIdx)    { return  m_aiRefPOCList[e][iRefIdx];   }
2426  Int       getDepth            ()                              { return  m_iDepth;                     }
2427  UInt      getColFromL0Flag    ()                              { return  m_colFromL0Flag;              }
2428  UInt      getColRefIdx        ()                              { return  m_colRefIdx;                  }
2429  Void      checkColRefIdx      (UInt curSliceIdx, TComPic* pic);
2430  Bool      getIsUsedAsLongTerm (Int i, Int j)                  { return m_bIsUsedAsLongTerm[i][j]; }
2431  Void      setIsUsedAsLongTerm (Int i, Int j, Bool value)      { m_bIsUsedAsLongTerm[i][j] = value; }
2432  Bool      getCheckLDC     ()                                  { return m_bCheckLDC; }
2433  Bool      getMvdL1ZeroFlag ()                                 { return m_bLMvdL1Zero;    }
2434  Int       getNumRpsCurrTempList();
2435  Int       getList1IdxToList0Idx ( Int list1Idx )              { return m_list1IdxToList0Idx[list1Idx]; }
2436  Void      setReferenced(Bool b)                               { m_bRefenced = b; }
2437  Bool      isReferenced()                                      { return m_bRefenced; }
2438  Bool      isReferenceNalu()                                   { return ((getNalUnitType() <= NAL_UNIT_RESERVED_VCL_R15) && (getNalUnitType()%2 != 0)) || ((getNalUnitType() >= NAL_UNIT_CODED_SLICE_BLA_W_LP) && (getNalUnitType() <= NAL_UNIT_RESERVED_IRAP_VCL23) ); }
2439  Void      setPOC              ( Int i )                       { m_iPOC              = i; if ((getTLayer()==0) && (isReferenceNalu() && (getNalUnitType()!=NAL_UNIT_CODED_SLICE_RASL_R)&& (getNalUnitType()!=NAL_UNIT_CODED_SLICE_RADL_R))) {m_prevTid0POC=i;} }
2440  Void      setNalUnitType      ( NalUnitType e )               { m_eNalUnitType      = e;      }
2441  NalUnitType getNalUnitType    () const                        { return m_eNalUnitType;        }
2442  Bool      getRapPicFlag       ();
2443  Bool      getIdrPicFlag       ()                              { return getNalUnitType() == NAL_UNIT_CODED_SLICE_IDR_W_RADL || getNalUnitType() == NAL_UNIT_CODED_SLICE_IDR_N_LP; }
2444  Bool      isIRAP              () const                        { return (getNalUnitType() >= 16) && (getNalUnitType() <= 23); }
2445  Void      checkCRA(TComReferencePictureSet *pReferencePictureSet, Int& pocCRA, NalUnitType& associatedIRAPType, TComList<TComPic *>& rcListPic);
2446#if NO_CLRAS_OUTPUT_FLAG
2447#if R0235_SMALLEST_LAYER_ID
2448  Void      decodingRefreshMarking( TComList<TComPic*>& rcListPic, Bool noClrasOutputFlag, UInt smallestLayerId = 0 );
2449#else
2450  Void      decodingRefreshMarking( TComList<TComPic*>& rcListPic, Bool noClrasOutputFlag );
2451#endif
2452  Void      decodingRefreshMarking(Int& pocCRA, Bool& bRefreshPending, TComList<TComPic*>& rcListPic, Bool noClrasOutputFlag);
2453#else
2454  Void      decodingRefreshMarking(Int& pocCRA, Bool& bRefreshPending, TComList<TComPic*>& rcListPic);
2455#endif
2456  Void      setSliceType        ( SliceType e )                 { m_eSliceType        = e;      }
2457  Void      setSliceQp          ( Int i )                       { m_iSliceQp          = i;      }
2458#if ADAPTIVE_QP_SELECTION
2459  Void      setSliceQpBase      ( Int i )                       { m_iSliceQpBase      = i;      }
2460#endif
2461  Void      setSliceQpDelta     ( Int i )                       { m_iSliceQpDelta     = i;      }
2462  Void      setSliceChromaQpDelta( ComponentID compID, Int i )  { m_iSliceChromaQpDelta[compID] = isLuma(compID) ? 0 : i;  }
2463  Void      setUseChromaQpAdj   ( Bool b )                      { m_ChromaQpAdjEnabled = b;     }
2464  Void      setDeblockingFilterDisable( Bool b )                { m_deblockingFilterDisable= b;      }
2465  Void      setDeblockingFilterOverrideFlag( Bool b )           { m_deblockingFilterOverrideFlag = b; }
2466  Void      setDeblockingFilterBetaOffsetDiv2( Int i )          { m_deblockingFilterBetaOffsetDiv2 = i; }
2467  Void      setDeblockingFilterTcOffsetDiv2( Int i )            { m_deblockingFilterTcOffsetDiv2 = i; }
2468
2469  Void      setRefPic           ( TComPic* p, RefPicList e, Int iRefIdx ) { m_apcRefPicList[e][iRefIdx] = p; }
2470  Void      setRefPOC           ( Int i, RefPicList e, Int iRefIdx ) { m_aiRefPOCList[e][iRefIdx] = i; }
2471  Void      setNumRefIdx        ( RefPicList e, Int i )         { m_aiNumRefIdx[e]    = i;      }
2472  Void      setPic              ( TComPic* p )                  { m_pcPic             = p;      }
2473  Void      setDepth            ( Int iDepth )                  { m_iDepth            = iDepth; }
2474
2475#if SVC_EXTENSION
2476#if POC_RESET_IDC_DECODER
2477  Void      setPrevTid0POC( Int x ) { m_prevTid0POC = x; }
2478#endif
2479#if POC_RESET_IDC_ENCODER
2480  Void      setAssociatedIrapPocBeforeReset(Int x) { m_associatedIrapPocBeforeReset = x; }
2481  Int       getAssociatedIrapPocBeforeReset(     ) { return m_associatedIrapPocBeforeReset; }
2482#endif
2483
2484  Void      setRefPicList       ( TComList<TComPic*>& rcListPic, Bool checkNumPocTotalCurr = false, TComPic** ilpPic = NULL );
2485#if Q0048_CGS_3D_ASYMLUT
2486  Int       getCGSOverWritePPS()              { return m_nCGSOverWritePPS;    }
2487  Void      setCGSOverWritePPS(Int n)         { m_nCGSOverWritePPS = n;       }
2488#endif
2489#else
2490  Void      setRefPicList       ( TComList<TComPic*>& rcListPic, Bool checkNumPocTotalCurr = false );
2491#endif
2492  Void      setRefPOCList       ();
2493  Void      setColFromL0Flag    ( UInt colFromL0 ) { m_colFromL0Flag = colFromL0; }
2494  Void      setColRefIdx        ( UInt refIdx) { m_colRefIdx = refIdx; }
2495  Void      setCheckLDC         ( Bool b )                      { m_bCheckLDC = b; }
2496  Void      setMvdL1ZeroFlag     ( Bool b)                       { m_bLMvdL1Zero = b; }
2497
2498  Bool      isIntra         ()                          { return  m_eSliceType == I_SLICE;  }
2499  Bool      isInterB        ()                          { return  m_eSliceType == B_SLICE;  }
2500  Bool      isInterP        ()                          { return  m_eSliceType == P_SLICE;  }
2501
2502  Void      setLambdas ( const Double lambdas[MAX_NUM_COMPONENT] ) { for (Int component = 0; component < MAX_NUM_COMPONENT; component++) m_lambdas[component] = lambdas[component]; }
2503  const Double* getLambdas() const { return m_lambdas; }
2504
2505  Void      initEqualRef();
2506  Bool      isEqualRef  ( RefPicList e, Int iRefIdx1, Int iRefIdx2 )
2507  {
2508    assert(e<NUM_REF_PIC_LIST_01);
2509    if (iRefIdx1 < 0 || iRefIdx2 < 0) return false;
2510    return m_abEqualRef[e][iRefIdx1][iRefIdx2];
2511  }
2512
2513  Void setEqualRef( RefPicList e, Int iRefIdx1, Int iRefIdx2, Bool b)
2514  {
2515    assert(e<NUM_REF_PIC_LIST_01);
2516    m_abEqualRef[e][iRefIdx1][iRefIdx2] = m_abEqualRef[e][iRefIdx2][iRefIdx1] = b;
2517  }
2518
2519  static Void      sortPicList         ( TComList<TComPic*>& rcListPic );
2520  Void setList1IdxToList0Idx();
2521
2522  UInt getTLayer             ()                            { return m_uiTLayer;                      }
2523  Void setTLayer             ( UInt uiTLayer )             { m_uiTLayer = uiTLayer;                  }
2524
2525  Void setTLayerInfo( UInt uiTLayer );
2526  Void decodingMarking( TComList<TComPic*>& rcListPic, Int iGOPSIze, Int& iMaxRefPicNum );
2527#if POC_RESET_IDC_ENCODER
2528  Void checkLeadingPictureRestrictions(TComList<TComPic*>& rcListPic, Bool usePocBeforeReset = false);
2529#else
2530  Void checkLeadingPictureRestrictions( TComList<TComPic*>& rcListPic );
2531#endif
2532  Void applyReferencePictureSet( TComList<TComPic*>& rcListPic, TComReferencePictureSet *RPSList);
2533  Bool isTemporalLayerSwitchingPoint( TComList<TComPic*>& rcListPic );
2534  Bool isStepwiseTemporalLayerSwitchingPointCandidate( TComList<TComPic*>& rcListPic );
2535#if ALLOW_RECOVERY_POINT_AS_RAP
2536  Int  checkThatAllRefPicsAreAvailable( TComList<TComPic*>& rcListPic, TComReferencePictureSet *pReferencePictureSet, Bool printErrors, Int pocRandomAccess = 0, Bool bUseRecoveryPoint = false);
2537  Void createExplicitReferencePictureSetFromReference( TComList<TComPic*>& rcListPic, TComReferencePictureSet *pReferencePictureSet, Bool isRAP, Int pocRandomAccess = 0, Bool bUseRecoveryPoint = false);
2538#else
2539  Int  checkThatAllRefPicsAreAvailable( TComList<TComPic*>& rcListPic, TComReferencePictureSet *pReferencePictureSet, Bool printErrors, Int pocRandomAccess = 0);
2540  Void createExplicitReferencePictureSetFromReference( TComList<TComPic*>& rcListPic, TComReferencePictureSet *pReferencePictureSet, Bool isRAP);
2541#endif
2542  Void setMaxNumMergeCand               (UInt val )          { m_maxNumMergeCand = val;                 }
2543  UInt getMaxNumMergeCand               ()                   { return m_maxNumMergeCand;                }
2544
2545  Void setNoOutputPriorPicsFlag         ( Bool val )         { m_noOutputPriorPicsFlag = val;           }
2546  Bool getNoOutputPriorPicsFlag         ()                   { return m_noOutputPriorPicsFlag;          }
2547
2548  Void setNoRaslOutputFlag              ( Bool val )         { m_noRaslOutputFlag = val;                }
2549  Bool getNoRaslOutputFlag              ()                   { return m_noRaslOutputFlag;               }
2550
2551  Void setHandleCraAsBlaFlag            ( Bool val )         { m_handleCraAsBlaFlag = val;              }
2552  Bool getHandleCraAsBlaFlag            ()                   { return m_handleCraAsBlaFlag;             }
2553
2554  Void setSliceMode                     ( SliceConstraint mode ) { m_sliceMode = mode;                  }
2555  SliceConstraint getSliceMode          () const            { return m_sliceMode;                       }
2556  Void setSliceArgument                 ( UInt uiArgument ) { m_sliceArgument = uiArgument;             }
2557  UInt getSliceArgument                 ()                  { return m_sliceArgument;                   }
2558  Void setSliceCurStartCtuTsAddr        ( UInt ctuTsAddr )  { m_sliceCurStartCtuTsAddr = ctuTsAddr;     } // CTU Tile-scan address (as opposed to raster-scan)
2559  UInt getSliceCurStartCtuTsAddr        () const            { return m_sliceCurStartCtuTsAddr;          } // CTU Tile-scan address (as opposed to raster-scan)
2560  Void setSliceCurEndCtuTsAddr          ( UInt ctuTsAddr )  { m_sliceCurEndCtuTsAddr = ctuTsAddr;       } // CTU Tile-scan address (as opposed to raster-scan)
2561  UInt getSliceCurEndCtuTsAddr          () const            { return m_sliceCurEndCtuTsAddr;            } // CTU Tile-scan address (as opposed to raster-scan)
2562  Void setSliceIdx                      ( UInt i)           { m_sliceIdx = i;                           }
2563  UInt getSliceIdx                      ()                  { return  m_sliceIdx;                       }
2564  Void copySliceInfo                    (TComSlice *pcSliceSrc);
2565  Void setSliceSegmentMode              ( SliceConstraint mode ) { m_sliceSegmentMode = mode;           }
2566  SliceConstraint getSliceSegmentMode   () const            { return m_sliceSegmentMode;                }
2567  Void setSliceSegmentArgument          ( UInt uiArgument ) { m_sliceSegmentArgument = uiArgument;      }
2568  UInt getSliceSegmentArgument          ()                  { return m_sliceSegmentArgument;            }
2569  Void setSliceSegmentCurStartCtuTsAddr ( UInt ctuTsAddr )  { m_sliceSegmentCurStartCtuTsAddr = ctuTsAddr; } // CTU Tile-scan address (as opposed to raster-scan)
2570  UInt getSliceSegmentCurStartCtuTsAddr () const            { return m_sliceSegmentCurStartCtuTsAddr;      } // CTU Tile-scan address (as opposed to raster-scan)
2571  Void setSliceSegmentCurEndCtuTsAddr   ( UInt ctuTsAddr )  { m_sliceSegmentCurEndCtuTsAddr = ctuTsAddr;   } // CTU Tile-scan address (as opposed to raster-scan)
2572  UInt getSliceSegmentCurEndCtuTsAddr   () const            { return m_sliceSegmentCurEndCtuTsAddr;        } // CTU Tile-scan address (as opposed to raster-scan)
2573  Void setSliceBits                     ( UInt uiVal )      { m_sliceBits = uiVal;                      }
2574  UInt getSliceBits                     ()                  { return m_sliceBits;                       }
2575  Void setSliceSegmentBits              ( UInt uiVal )      { m_sliceSegmentBits = uiVal;            }
2576  UInt getSliceSegmentBits              ()                  { return m_sliceSegmentBits;             }
2577  Void setFinalized                     ( Bool uiVal )      { m_bFinalized = uiVal;                       }
2578  Bool getFinalized                     ()                  { return m_bFinalized;                        }
2579  Void  setWpScaling    ( WPScalingParam  wp[NUM_REF_PIC_LIST_01][MAX_NUM_REF][MAX_NUM_COMPONENT] ) { memcpy(m_weightPredTable, wp, sizeof(WPScalingParam)*NUM_REF_PIC_LIST_01*MAX_NUM_REF*MAX_NUM_COMPONENT); }
2580  Void  getWpScaling    ( RefPicList e, Int iRefIdx, WPScalingParam *&wp);
2581
2582  Void  resetWpScaling  ();
2583  Void  initWpScaling   ();
2584  inline Bool applyWP   () { return( (m_eSliceType==P_SLICE && m_pcPPS->getUseWP()) || (m_eSliceType==B_SLICE && m_pcPPS->getWPBiPred()) ); }
2585
2586  Void  setWpAcDcParam  ( WPACDCParam wp[MAX_NUM_COMPONENT] ) { memcpy(m_weightACDCParam, wp, sizeof(WPACDCParam)*MAX_NUM_COMPONENT); }
2587  Void  getWpAcDcParam  ( WPACDCParam *&wp );
2588  Void  initWpAcDcParam ();
2589
2590  Void clearSubstreamSizes       ( )                        { return m_substreamSizes.clear();        }
2591  UInt getNumberOfSubstreamSizes ( )                        { return (UInt) m_substreamSizes.size();  }
2592  Void addSubstreamSize          ( UInt size )              { m_substreamSizes.push_back(size);       }
2593  UInt getSubstreamSize          ( Int idx )                { assert(idx<getNumberOfSubstreamSizes()); return m_substreamSizes[idx]; }
2594
2595  Void  setScalingList              ( TComScalingList* scalingList ) { m_scalingList = scalingList; }
2596  TComScalingList*   getScalingList ()                               { return m_scalingList; }
2597  Void  setDefaultScalingList       ();
2598  Bool  checkDefaultScalingList     ();
2599  Void      setCabacInitFlag  ( Bool val ) { m_cabacInitFlag = val;      }  //!< set CABAC initial flag
2600  Bool      getCabacInitFlag  ()           { return m_cabacInitFlag;     }  //!< get CABAC initial flag
2601  Bool      getTemporalLayerNonReferenceFlag()       { return m_temporalLayerNonReferenceFlag;}
2602  Void      setTemporalLayerNonReferenceFlag(Bool x) { m_temporalLayerNonReferenceFlag = x;}
2603  Void      setLFCrossSliceBoundaryFlag     ( Bool   val )    { m_LFCrossSliceBoundaryFlag = val; }
2604  Bool      getLFCrossSliceBoundaryFlag     ()                { return m_LFCrossSliceBoundaryFlag;}
2605
2606  Void      setEnableTMVPFlag     ( Bool   b )    { m_enableTMVPFlag = b; }
2607  Bool      getEnableTMVPFlag     ()              { return m_enableTMVPFlag;}
2608
2609#if SVC_EXTENSION
2610  Void      setFirstSliceInPic               ( Bool val )        { m_firstSliceInPic = val;                    }
2611  Bool      getFirstSliceInPic               ()                  { return m_firstSliceInPic;                   }
2612#if R0226_SLICE_TMVP
2613  Void      setAvailableForTMVPRefFlag     ( Bool   b )    { m_availableForTMVPRefFlag = b; }
2614  Bool      getAvailableForTMVPRefFlag     ()              { return m_availableForTMVPRefFlag;}
2615#endif
2616  Bool      setBaseColPic       ( TComList<TComPic*>& rcListPic , UInt refLayerIdc );
2617  Void      setBaseColPic       (UInt refLayerIdc, TComPic* p)     { m_pcBaseColPic[refLayerIdc] = p; }
2618  TComPic*  getBaseColPic       (UInt refLayerIdc)                { return m_pcBaseColPic[refLayerIdc]; }
2619  TComPic** getBaseColPic       ()                { return &m_pcBaseColPic[0]; }
2620#if MFM_ENCCONSTRAINT
2621  TComPic*  getBaseColPic( TComList<TComPic*>& rcListPic );
2622#endif
2623
2624  Void      setLayerId (UInt layerId)   { m_layerId = layerId; }
2625  UInt      getLayerId ()               { return m_layerId;    }
2626  UInt      getLayerIdx()               { return m_pcVPS->getLayerIdxInVps(m_layerId); }
2627
2628  Void        setFullPelBaseRec   (UInt refLayerIdc, TComPicYuv* p) { m_pcFullPelBaseRec[refLayerIdc] = p; }
2629  TComPicYuv* getFullPelBaseRec   (UInt refLayerIdc)               { return  m_pcFullPelBaseRec[refLayerIdc];  }
2630
2631  Void      setRefPicListModificationSvc();
2632  Int       getNumILRRefIdx     ( )                     { return  m_pcVPS->getNumDirectRefLayers( m_layerId ); }
2633
2634  Int       getActiveNumILRRefIdx     ( )               { return  m_activeNumILRRefIdx; }
2635  Void      setActiveNumILRRefIdx     ( Int i )         { m_activeNumILRRefIdx = i;     } 
2636
2637  Int       getInterLayerPredLayerIdc (UInt layerIdc)                        { return  m_interLayerPredLayerIdc[layerIdc];}
2638  Void      setInterLayerPredLayerIdc (UInt refLayerIdc, UInt layerIdc)      { m_interLayerPredLayerIdc[layerIdc] = refLayerIdc;  }
2639
2640  Void      setInterLayerPredEnabledFlag     ( Bool   val )    { m_interLayerPredEnabledFlag = val; }
2641  Bool      getInterLayerPredEnabledFlag     ()                { return m_interLayerPredEnabledFlag;}
2642
2643  Void      setNumMotionPredRefLayers(int i)            { m_numMotionPredRefLayers = i; }
2644  Int       getNumMotionPredRefLayers()                 { return m_numMotionPredRefLayers; }
2645#if REF_IDX_MFM
2646  Void      setMFMEnabledFlag(Bool flag)                { m_bMFMEnabledFlag = flag; }
2647  Bool      getMFMEnabledFlag()                         { return m_bMFMEnabledFlag; }
2648#endif
2649
2650  TComPic* getRefPic(TComList<TComPic*>& rcListPic, Int poc) { return xGetRefPic( rcListPic, poc ); } 
2651
2652  Bool     isRADL()   { return (m_eNalUnitType == NAL_UNIT_CODED_SLICE_RADL_N || m_eNalUnitType == NAL_UNIT_CODED_SLICE_RADL_R); }
2653  Bool     isRASL()   { return (m_eNalUnitType == NAL_UNIT_CODED_SLICE_RASL_N || m_eNalUnitType == NAL_UNIT_CODED_SLICE_RASL_R); }
2654
2655#if POC_RESET_RESTRICTIONS
2656  Bool     isIDR()    { return (m_eNalUnitType == NAL_UNIT_CODED_SLICE_IDR_W_RADL
2657                                  || m_eNalUnitType == NAL_UNIT_CODED_SLICE_IDR_N_LP); }
2658  Bool     isCRA()    { return m_eNalUnitType == NAL_UNIT_CODED_SLICE_CRA; }
2659  Bool     isBLA()    { return (m_eNalUnitType == NAL_UNIT_CODED_SLICE_BLA_W_LP
2660                                  || m_eNalUnitType == NAL_UNIT_CODED_SLICE_BLA_W_RADL
2661                                  || m_eNalUnitType == NAL_UNIT_CODED_SLICE_BLA_N_LP ); }
2662  Bool     isSLNR()   { return (m_eNalUnitType == NAL_UNIT_CODED_SLICE_TRAIL_N
2663                                  || m_eNalUnitType == NAL_UNIT_CODED_SLICE_TSA_N
2664                                  || m_eNalUnitType == NAL_UNIT_CODED_SLICE_STSA_N
2665                                  || m_eNalUnitType == NAL_UNIT_CODED_SLICE_RADL_N
2666                                  || m_eNalUnitType == NAL_UNIT_CODED_SLICE_RASL_N
2667                                  || m_eNalUnitType == NAL_UNIT_RESERVED_VCL_N10
2668                                  || m_eNalUnitType == NAL_UNIT_RESERVED_VCL_N12
2669                                  || m_eNalUnitType == NAL_UNIT_RESERVED_VCL_N14 ); }
2670#endif
2671  Bool      getDiscardableFlag  ()                           { return m_bDiscardableFlag;    }
2672  Void      setDiscardableFlag  (Bool b)                     { m_bDiscardableFlag = b;       }
2673#if O0149_CROSS_LAYER_BLA_FLAG
2674  Bool      getCrossLayerBLAFlag  ()                         { return m_bCrossLayerBLAFlag;  }
2675  Void      setCrossLayerBLAFlag  (Bool b)                   { m_bCrossLayerBLAFlag = b;     }
2676#endif
2677
2678#if RPL_INIT_N0316_N0082
2679  Int       getNumNegativeRpsCurrTempList();
2680#endif
2681
2682#if REPN_FORMAT_IN_VPS
2683  UInt getPicWidthInLumaSamples();
2684  UInt getPicHeightInLumaSamples();
2685#if AUXILIARY_PICTURES
2686  ChromaFormat getChromaFormatIdc();
2687#else
2688  UInt getChromaFormatIdc();
2689#endif
2690  UInt getBitDepthY();
2691  UInt getBitDepthC();
2692  Int  getQpBDOffsetY();
2693  Int  getQpBDOffsetC();
2694
2695#if R0156_CONF_WINDOW_IN_REP_FORMAT
2696  Window& getConformanceWindow();
2697#endif
2698#endif
2699
2700  Void setILRPic(TComPic **pcIlpPic);
2701#if POC_RESET_IDC_SIGNALLING
2702  Int       getPocResetIdc       ()                              { return m_pocResetIdc;       }
2703  Void      setPocResetIdc       (Int b)                         { m_pocResetIdc = b;          }
2704  Int       getPocResetPeriodId  ()                              { return m_pocResetPeriodId;       }
2705  Void      setPocResetPeriodId  (Int b)                         { m_pocResetPeriodId = b;          }
2706  Bool      getFullPocResetFlag  ()                              { return m_fullPocResetFlag;       }
2707  Void      setFullPocResetFlag  (Bool b)                        { m_fullPocResetFlag = b;          }
2708  Int       getPocLsbVal         ()                              { return m_pocLsbVal;       }
2709  Void      setPocLsbVal       (Int b)                           { m_pocLsbVal = b;          }
2710#if P0297_VPS_POC_LSB_ALIGNED_FLAG
2711  Void      setPocMsbNeeded      (Bool x)                        { m_pocMsbValNeeded = x; }
2712  Bool      getPocMsbNeeded      ()                              { return m_pocMsbValNeeded; }
2713  Int       getPocResetDeltaPoc  ()                              { return m_pocResetDeltaPoc; }
2714  Void      setPocResetDeltaPoc  (Int x)                         { m_pocResetDeltaPoc = x; }
2715#endif
2716  Int       getPocMsbVal         ()                              { return m_pocMsbVal;       }
2717  Void      setPocMsbVal       (Int b)                           { m_pocMsbVal = b;          }
2718  Bool      getPocMsbValPresentFlag ()                           { return m_pocMsbValPresentFlag; }
2719  Void      setPocMsbValPresentFlag (Bool x)                     { m_pocMsbValPresentFlag = x; }
2720  Bool      getPocMsbValRequiredFlag ()                           { return m_pocMsbValRequiredFlag; }
2721  Void      setPocMsbValRequiredFlag (Bool x)                     { m_pocMsbValRequiredFlag = x; }
2722#endif
2723
2724#if NO_OUTPUT_OF_PRIOR_PICS
2725  Bool      getBlaPicFlag       ();
2726  Bool      getCraPicFlag       ();
2727#endif
2728#if POC_RESET_IDC_DECODER
2729  Bool      getRaslPicFlag      ();
2730  Bool      getRadlPicFlag      ();
2731#endif
2732#if POC_RESET_IDC_DECODER || POC_RESET_IDC_ENCODER
2733  Int       getPicOrderCntLsb() { return m_picOrderCntLsb; }
2734  Void      setPicOrderCntLsb(Int x) { m_picOrderCntLsb = x; }
2735#endif
2736
2737#if POC_RESET_IDC_ENCODER
2738  Int       getPocValueBeforeReset ()                        { return m_pocValueBeforeReset; }
2739  Void      setPocValueBeforeReset (Int x)                   { m_pocValueBeforeReset = x ;   }
2740  Void      decrementRefPocValues(Int const decrementValue);
2741  Int       getCurrMsb( Int currLsb, Int prevLsb, Int prevMsb, Int maxLsbVal );
2742#endif
2743  Int       getReferenceLayerIdc( UInt refLayerId );
2744
2745#endif //SVC_EXTENSION
2746protected:
2747  TComPic*  xGetRefPic        (TComList<TComPic*>& rcListPic, Int poc);
2748  TComPic*  xGetLongTermRefPic(TComList<TComPic*>& rcListPic, Int poc, Bool pocHasMsb);
2749};// END CLASS DEFINITION TComSlice
2750
2751
2752template <class T> class ParameterSetMap
2753{
2754public:
2755  ParameterSetMap(Int maxId)
2756  :m_maxId (maxId)
2757  {}
2758
2759  ~ParameterSetMap()
2760  {
2761    for (typename std::map<Int,T *>::iterator i = m_paramsetMap.begin(); i!= m_paramsetMap.end(); i++)
2762    {
2763      delete (*i).second;
2764    }
2765  }
2766
2767  Void storePS(Int psId, T *ps)
2768  {
2769    assert ( psId < m_maxId );
2770    if ( m_paramsetMap.find(psId) != m_paramsetMap.end() )
2771    {
2772      delete m_paramsetMap[psId];
2773    }
2774    m_paramsetMap[psId] = ps;
2775  }
2776
2777  Void mergePSList(ParameterSetMap<T> &rPsList)
2778  {
2779    for (typename std::map<Int,T *>::iterator i = rPsList.m_paramsetMap.begin(); i!= rPsList.m_paramsetMap.end(); i++)
2780    {
2781      storePS(i->first, i->second);
2782    }
2783    rPsList.m_paramsetMap.clear();
2784  }
2785
2786
2787  T* getPS(Int psId)
2788  {
2789    return ( m_paramsetMap.find(psId) == m_paramsetMap.end() ) ? NULL : m_paramsetMap[psId];
2790  }
2791
2792  T* getFirstPS()
2793  {
2794    return (m_paramsetMap.begin() == m_paramsetMap.end() ) ? NULL : m_paramsetMap.begin()->second;
2795  }
2796
2797private:
2798  std::map<Int,T *> m_paramsetMap;
2799  Int               m_maxId;
2800};
2801
2802class ParameterSetManager
2803{
2804public:
2805  ParameterSetManager();
2806  virtual ~ParameterSetManager();
2807
2808  //! store sequence parameter set and take ownership of it
2809  Void storeVPS(TComVPS *vps) { m_vpsMap.storePS( vps->getVPSId(), vps); };
2810  //! get pointer to existing video parameter set
2811  TComVPS* getVPS(Int vpsId)  { return m_vpsMap.getPS(vpsId); };
2812  TComVPS* getFirstVPS()      { return m_vpsMap.getFirstPS(); };
2813
2814  //! store sequence parameter set and take ownership of it
2815  Void storeSPS(TComSPS *sps) { m_spsMap.storePS( sps->getSPSId(), sps); };
2816  //! get pointer to existing sequence parameter set
2817  TComSPS* getSPS(Int spsId)  { return m_spsMap.getPS(spsId); };
2818  TComSPS* getFirstSPS()      { return m_spsMap.getFirstPS(); };
2819
2820  //! store picture parameter set and take ownership of it
2821  Void storePPS(TComPPS *pps) { m_ppsMap.storePS( pps->getPPSId(), pps); };
2822  //! get pointer to existing picture parameter set
2823  TComPPS* getPPS(Int ppsId)  { return m_ppsMap.getPS(ppsId); };
2824  TComPPS* getFirstPPS()      { return m_ppsMap.getFirstPS(); };
2825
2826  //! activate a SPS from a active parameter sets SEI message
2827  //! \returns true, if activation is successful
2828  Bool activateSPSWithSEI(Int SPSId);
2829
2830  //! activate a PPS and depending on isIDR parameter also SPS and VPS
2831  //! \returns true, if activation is successful
2832  Bool activatePPS(Int ppsId, Bool isIRAP);
2833
2834  TComVPS* getActiveVPS(){ return m_vpsMap.getPS(m_activeVPSId); };
2835  TComSPS* getActiveSPS(){ return m_spsMap.getPS(m_activeSPSId); };
2836  TComPPS* getActivePPS(){ return m_ppsMap.getPS(m_activePPSId); };
2837
2838protected:
2839
2840#if SVC_EXTENSION
2841  static ParameterSetMap<TComVPS> m_vpsMap;
2842  static ParameterSetMap<TComSPS> m_spsMap; 
2843  static ParameterSetMap<TComPPS> m_ppsMap;
2844#else
2845  ParameterSetMap<TComVPS> m_vpsMap;
2846  ParameterSetMap<TComSPS> m_spsMap;
2847  ParameterSetMap<TComPPS> m_ppsMap;
2848#endif
2849
2850#if SVC_EXTENSION
2851  static Int m_activeVPSId;
2852#else
2853  Int m_activeVPSId;
2854#endif
2855  Int m_activeSPSId;
2856  Int m_activePPSId;
2857};
2858
2859//! \}
2860
2861#endif // __TCOMSLICE__
Note: See TracBrowser for help on using the repository browser.