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

Last change on this file since 794 was 791, checked in by seregin, 11 years ago

remove VPS_RENAME

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