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

Last change on this file since 569 was 568, checked in by qualcomm, 11 years ago

JCTVC-P0125 -- Revert vps_extension_offset back to vps_reserved_0xffff_16bits

One macro (P0125_REVERT_VPS_EXTN_OFFSET_TO_RESERVED) is defined and it negate the following two macros (VPS_EXTN_OFFSET & VPS_EXTN_OFFSET_CALC).

Contact fhendry@…

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