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

Last change on this file since 862 was 851, checked in by qualcomm, 10 years ago

R0223: Restrictions on POC reset-related syntax elements (Macro: POC_RESET_RESTRICTIONS)

Allow mixing of CRA and BLA pictures without requiring POC resetting (adoption) and other restrictions that were not implemented before.

From: Adarsh K. Ramasubramonian <aramasub@…>

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