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

Last change on this file since 557 was 556, checked in by qualcomm, 11 years ago

JCTVC-P0307. Removal of VPS VUI Offset and addition of new syntax element vps_non_vui_extension_length.

Macro: P0307_REMOVE_VPS_VUI_OFFSET and P0307_VPS_NON_VUI_EXTENSION
provided by Hendry <fhendry@…>

  • Property svn:eol-style set to native
File size: 116.0 KB
Line 
1/* The copyright in this software is being made available under the BSD
2 * License, included below. This software may be subject to other third party
3 * and contributor rights, including patent rights, and no such rights are
4 * granted under this license. 
5 *
6 * Copyright (c) 2010-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 VPS_EXTN_OFFSET
486  UInt        m_extensionOffset;
487#endif
488#if VPS_RENAME
489  UInt        m_maxLayerId;
490  UInt        m_numLayerSets;
491  Bool        m_layerIdIncludedFlag[MAX_VPS_LAYER_SETS_PLUS1][MAX_VPS_LAYER_ID_PLUS1];
492#endif
493
494  // ------------------------------------------
495  // Variables related to VPS extensions
496  // ------------------------------------------
497#if VPS_EXTN_MASK_AND_DIM_INFO
498  Bool       m_avcBaseLayerFlag;                                // For now, always set to true.
499  Bool       m_splittingFlag;
500  Bool       m_scalabilityMask[MAX_VPS_NUM_SCALABILITY_TYPES];
501  UInt       m_dimensionIdLen[MAX_VPS_NUM_SCALABILITY_TYPES];
502  Bool       m_nuhLayerIdPresentFlag;
503  UInt       m_layerIdInNuh[MAX_VPS_LAYER_ID_PLUS1];            // Maps layer ID in the VPS with layer_id_in_nuh
504  UInt       m_dimensionId[MAX_VPS_LAYER_ID_PLUS1][MAX_VPS_NUM_SCALABILITY_TYPES];
505
506  // Below are derived variables
507  UInt       m_numScalabilityTypes;
508  UInt       m_layerIdInVps[MAX_VPS_LAYER_ID_PLUS1];            // Maps layer_id_in_nuh with the layer ID in the VPS
509#endif
510#if ILP_SSH_SIG
511  Bool       m_ilpSshSignalingEnabledFlag;
512#endif
513#if VPS_EXTN_PROFILE_INFO
514  // Profile-tier-level signalling related
515  Bool       m_profilePresentFlag[MAX_VPS_LAYER_SETS_PLUS1];    // The value with index 0 will not be used.
516#if !P0048_REMOVE_PROFILE_REF
517  UInt       m_profileLayerSetRef[MAX_VPS_LAYER_SETS_PLUS1];    // The value with index 0 will not be used.
518#endif
519  std::vector<TComPTL>    m_pcPTLForExtn; 
520#endif
521#if VPS_EXTN_OP_LAYER_SETS
522  // .. More declarations here
523  // Target output layer signalling related
524  UInt       m_numOutputLayerSets;
525  UInt       m_outputLayerSetIdx[MAX_VPS_LAYER_SETS_PLUS1];
526  Bool       m_outputLayerFlag[MAX_VPS_LAYER_SETS_PLUS1][MAX_VPS_LAYER_ID_PLUS1];
527#endif
528#if VPS_EXTN_DIRECT_REF_LAYERS
529  Bool       m_directDependencyFlag[MAX_VPS_LAYER_ID_PLUS1][MAX_VPS_LAYER_ID_PLUS1];
530  UInt       m_numDirectRefLayers[MAX_VPS_LAYER_ID_PLUS1];
531  UInt       m_refLayerId[MAX_VPS_LAYER_ID_PLUS1][MAX_VPS_LAYER_ID_PLUS1];
532#if M0457_PREDICTION_INDICATIONS
533  UInt       m_directDepTypeLen;
534#if O0096_DEFAULT_DEPENDENCY_TYPE
535  Bool       m_defaultDirectDependencyTypeFlag;
536  UInt       m_defaultDirectDependencyType;
537#endif
538  UInt       m_directDependencyType[MAX_VPS_LAYER_ID_PLUS1][MAX_VPS_LAYER_ID_PLUS1];
539#endif
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#if JCTVC_M0458_INTERLAYER_RPS_SIG
551  Bool       m_maxOneActiveRefLayerFlag;
552#endif
553#if O0062_POC_LSB_NOT_PRESENT_FLAG
554  Bool       m_pocLsbNotPresentFlag[MAX_VPS_LAYER_ID_PLUS1];
555#endif
556#if O0223_PICTURE_TYPES_ALIGN_FLAG
557  Bool       m_crossLayerPictureTypeAlignFlag;
558#endif
559#if N0147_IRAP_ALIGN_FLAG
560  Bool       m_crossLayerIrapAlignFlag;
561#endif
562#if JCTVC_M0203_INTERLAYER_PRED_IDC
563#if O0225_MAX_TID_FOR_REF_LAYERS
564  UInt       m_maxTidIlRefPicsPlus1[MAX_VPS_LAYER_ID_PLUS1 - 1][MAX_VPS_LAYER_ID_PLUS1];
565#else
566  UInt       m_maxTidIlRefPicsPlus1[MAX_VPS_LAYER_ID_PLUS1 - 1];
567#endif
568#endif
569#if N0120_MAX_TID_REF_PRESENT_FLAG
570  Bool       m_maxTidRefPresentFlag;
571#endif
572#if VPS_TSLAYERS
573  Bool       m_maxTSLayersPresentFlag;
574  UInt       m_maxTSLayerMinus1[MAX_VPS_LAYER_ID_PLUS1 - 1];
575#endif
576#if M0040_ADAPTIVE_RESOLUTION_CHANGE
577  Bool       m_singleLayerForNonIrapFlag;
578#endif
579#if HIGHER_LAYER_IRAP_SKIP_FLAG
580  Bool       m_higherLayerIrapSkipFlag;
581#endif
582#if VPS_VUI_TILES_NOT_IN_USE__FLAG
583  Bool       m_tilesNotInUseFlag;
584  Bool       m_tilesInUseFlag[MAX_VPS_LAYER_ID_PLUS1];
585  Bool       m_loopFilterNotAcrossTilesFlag[MAX_VPS_LAYER_ID_PLUS1];
586#endif
587#if TILE_BOUNDARY_ALIGNED_FLAG
588  Bool       m_tileBoundariesAlignedFlag[MAX_VPS_LAYER_ID_PLUS1][MAX_VPS_LAYER_ID_PLUS1];
589#endif
590#if VPS_VUI_WPP_NOT_IN_USE__FLAG
591  Bool       m_wppNotInUseFlag;
592  Bool       m_wppInUseFlag[MAX_VPS_LAYER_ID_PLUS1];
593#endif
594#if N0160_VUI_EXT_ILP_REF   
595  Bool        m_ilpRestrictedRefLayersFlag;
596  Int         m_minSpatialSegmentOffsetPlus1[MAX_VPS_LAYER_ID_PLUS1][MAX_VPS_LAYER_ID_PLUS1];
597  Bool        m_ctuBasedOffsetEnabledFlag   [MAX_VPS_LAYER_ID_PLUS1][MAX_VPS_LAYER_ID_PLUS1];
598  Int         m_minHorizontalCtuOffsetPlus1 [MAX_VPS_LAYER_ID_PLUS1][MAX_VPS_LAYER_ID_PLUS1];
599#endif
600#if VPS_VUI_VIDEO_SIGNAL
601  Bool        m_vidSigPresentVpsFlag;
602  Int         m_vpsVidSigInfo;
603  Int         m_vpsVidSigIdx[MAX_VPS_LAYER_ID_PLUS1];
604  Int         m_vpsVidFormat[16];
605  Bool        m_vpsFullRangeFlag[16];
606  Int         m_vpsColorPrimaries[16];
607  Int         m_vpsTransChar[16];
608  Int         m_vpsMatCoeff[16];
609#endif
610#if VPS_VUI_BITRATE_PICRATE
611  Bool        m_bitRatePresentVpsFlag;
612  Bool        m_picRatePresentVpsFlag;
613  Bool        m_bitRatePresentFlag  [MAX_VPS_LAYER_SETS_PLUS1][MAX_TLAYER];
614  Bool        m_picRatePresentFlag  [MAX_VPS_LAYER_SETS_PLUS1][MAX_TLAYER];
615  Int         m_avgBitRate          [MAX_VPS_LAYER_SETS_PLUS1][MAX_TLAYER];
616  Int         m_maxBitRate          [MAX_VPS_LAYER_SETS_PLUS1][MAX_TLAYER];
617  Int         m_constPicRateIdc     [MAX_VPS_LAYER_SETS_PLUS1][MAX_TLAYER];
618  Int         m_avgPicRate          [MAX_VPS_LAYER_SETS_PLUS1][MAX_TLAYER];
619#endif
620#if O0153_ALT_OUTPUT_LAYER_FLAG
621  Bool       m_altOutputLayerFlag;
622#endif
623#if REPN_FORMAT_IN_VPS
624  Bool       m_repFormatIdxPresentFlag;
625  Int        m_vpsNumRepFormats;            // coded as minus1
626  RepFormat  m_vpsRepFormat[16];
627  Int        m_vpsRepFormatIdx[16];
628#endif
629#if VIEW_ID_RELATED_SIGNALING
630#if O0109_VIEW_ID_LEN
631  Int         m_viewIdLen;
632#else
633  Int         m_viewIdLenMinus1;
634#endif
635  Int         m_viewIdVal                [MAX_LAYERS];
636#endif
637
638#if O0215_PHASE_ALIGNMENT
639  Bool       m_phaseAlignFlag;
640#endif
641
642#if O0092_0094_DEPENDENCY_CONSTRAINT
643  Int        m_numberRefLayers[MAX_NUM_LAYER_IDS];  // number of direct and indirect reference layers of a coding layer
644  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
645#endif
646#if VPS_DPB_SIZE_TABLE
647  Bool    m_subLayerFlagInfoPresentFlag [MAX_VPS_OP_LAYER_SETS_PLUS1];
648  Bool    m_subLayerDpbInfoPresentFlag  [MAX_VPS_OP_LAYER_SETS_PLUS1][MAX_LAYERS];
649  Int     m_maxVpsDecPicBufferingMinus1 [MAX_VPS_OP_LAYER_SETS_PLUS1][MAX_LAYERS][MAX_TLAYER];
650  Int     m_maxVpsNumReorderPics        [MAX_VPS_OP_LAYER_SETS_PLUS1][MAX_LAYERS];
651  Int     m_maxVpsLatencyIncreasePlus1  [MAX_VPS_OP_LAYER_SETS_PLUS1][MAX_LAYERS];
652  Int     m_numSubDpbs                  [MAX_VPS_OP_LAYER_SETS_PLUS1];
653#endif
654
655#if O0109_MOVE_VPS_VUI_FLAG
656  Bool       m_vpsVuiPresentFlag;
657#endif
658
659#endif //SVC_EXTENSION
660#if !P0307_REMOVE_VPS_VUI_OFFSET
661#if VPS_VUI_OFFSET
662  Int     m_vpsVuiOffset;
663#endif
664#endif
665#if P0307_VPS_NON_VUI_EXTENSION
666  Int     m_vpsNonVuiExtLength;
667#endif
668public:
669  TComVPS();
670  virtual ~TComVPS();
671
672  Void    createHrdParamBuffer()
673  {
674    m_hrdParameters    = new TComHRD[ getNumHrdParameters() ];
675    m_hrdOpSetIdx      = new UInt   [ getNumHrdParameters() ];
676    m_cprmsPresentFlag = new Bool   [ getNumHrdParameters() ];
677  }
678
679  TComHRD* getHrdParameters   ( UInt i )             { return &m_hrdParameters[ i ]; }
680  UInt    getHrdOpSetIdx      ( UInt i )             { return m_hrdOpSetIdx[ i ]; }
681  Void    setHrdOpSetIdx      ( UInt val, UInt i )   { m_hrdOpSetIdx[ i ] = val;  }
682  Bool    getCprmsPresentFlag ( UInt i )             { return m_cprmsPresentFlag[ i ]; }
683  Void    setCprmsPresentFlag ( Bool val, UInt i )   { m_cprmsPresentFlag[ i ] = val;  }
684
685  Int     getVPSId       ()                   { return m_VPSId;          }
686  Void    setVPSId       (Int i)              { m_VPSId = i;             }
687
688  UInt    getMaxTLayers  ()                   { return m_uiMaxTLayers;   }
689  Void    setMaxTLayers  (UInt t)             { m_uiMaxTLayers = t; }
690 
691  UInt    getMaxLayers   ()                   { return m_uiMaxLayers;   }
692  Void    setMaxLayers   (UInt l)             { m_uiMaxLayers = l; }
693
694  Bool    getTemporalNestingFlag   ()         { return m_bTemporalIdNestingFlag;   }
695  Void    setTemporalNestingFlag   (Bool t)   { m_bTemporalIdNestingFlag = t; }
696 
697  Void    setNumReorderPics(UInt v, UInt tLayer)                { m_numReorderPics[tLayer] = v;    }
698  UInt    getNumReorderPics(UInt tLayer)                        { return m_numReorderPics[tLayer]; }
699 
700  Void    setMaxDecPicBuffering(UInt v, UInt tLayer)            { m_uiMaxDecPicBuffering[tLayer] = v;    }
701  UInt    getMaxDecPicBuffering(UInt tLayer)                    { return m_uiMaxDecPicBuffering[tLayer]; }
702 
703  Void    setMaxLatencyIncrease(UInt v, UInt tLayer)            { m_uiMaxLatencyIncrease[tLayer] = v;    }
704  UInt    getMaxLatencyIncrease(UInt tLayer)                    { return m_uiMaxLatencyIncrease[tLayer]; }
705
706  UInt    getNumHrdParameters()                                 { return m_numHrdParameters; }
707  Void    setNumHrdParameters(UInt v)                           { m_numHrdParameters = v;    }
708 
709#if !SVC_EXTENSION
710  UInt    getMaxNuhReservedZeroLayerId()                        { return m_maxNuhReservedZeroLayerId; }
711  Void    setMaxNuhReservedZeroLayerId(UInt v)                  { m_maxNuhReservedZeroLayerId = v;    }
712
713  UInt    getMaxOpSets()                                        { return m_numOpSets; }
714  Void    setMaxOpSets(UInt v)                                  { m_numOpSets = v;    }
715#endif
716  Bool    getLayerIdIncludedFlag(UInt opsIdx, UInt id)          { return m_layerIdIncludedFlag[opsIdx][id]; }
717  Void    setLayerIdIncludedFlag(Bool v, UInt opsIdx, UInt id)  { m_layerIdIncludedFlag[opsIdx][id] = v;    }
718
719  TComPTL* getPTL() { return &m_pcPTL; }
720  TimingInfo* getTimingInfo() { return &m_timingInfo; }
721
722#if SVC_EXTENSION
723#if DERIVE_LAYER_ID_LIST_VARIABLES
724  Int     getLayerSetLayerIdList(Int set, Int layerId)          { return m_layerSetLayerIdList[set][layerId]; }
725  Void    setLayerSetLayerIdList(Int set, Int layerId, Int x)   { m_layerSetLayerIdList[set][layerId] = x   ; }
726
727  Int     getNumLayersInIdList(Int set)                          { return m_numLayerInIdList[set]; }
728  Void    setNumLayersInIdList(Int set, Int x)                   { m_numLayerInIdList[set] = x   ; }
729
730  Void    deriveLayerIdListVariables();
731#endif
732#if VPS_DPB_SIZE_TABLE
733Void      deriveNumberOfSubDpbs();
734#endif
735
736#if O0092_0094_DEPENDENCY_CONSTRAINT
737  Void    setRefLayersFlags(Int currLayerId);
738  Bool    getRecursiveRefLayerFlag(Int currLayerId, Int refLayerId)              { return m_recursiveRefLayerFlag[currLayerId][refLayerId];}
739  Void    setRecursiveRefLayerFlag(Int currLayerId, Int refLayerId, Bool x)      { m_recursiveRefLayerFlag[currLayerId][refLayerId] = x;   }
740  Int     getNumRefLayers(Int currLayerId)                                       { return m_numberRefLayers[currLayerId];                  }
741  Void    setNumRefLayers(Int currLayerId);
742#endif
743#if VPS_RENAME
744  UInt    getMaxLayerId()                                       { return m_maxLayerId; }
745  Void    setMaxLayerId(UInt v)                                 { m_maxLayerId = v;    }
746
747  UInt    getNumLayerSets()                                     { return m_numLayerSets; }
748  Void    setNumLayerSets(UInt v)                               { m_numLayerSets = v;    }
749#endif
750#if VPS_EXTN_MASK_AND_DIM_INFO
751  Bool   getAvcBaseLayerFlag()                                  { return m_avcBaseLayerFlag;       }
752  Void   setAvcBaseLayerFlag(Bool x)                            { m_avcBaseLayerFlag = x;          }
753
754  Bool   getSplittingFlag()                                     { return m_splittingFlag;          }
755  Void   setSplittingFlag(Bool x)                               { m_splittingFlag = x;             }
756
757  Bool   getScalabilityMask(Int id)                             { return m_scalabilityMask[id];    }
758  Void   setScalabilityMask(Int id, Bool x)                     { m_scalabilityMask[id] = x;       }
759
760  UInt   getDimensionIdLen(Int id)                              { return m_dimensionIdLen[id];     }
761  Void   setDimensionIdLen(Int id, UInt x)                      { m_dimensionIdLen[id] = x;        }
762
763  Bool   getNuhLayerIdPresentFlag()                             { return m_nuhLayerIdPresentFlag;  }
764  Void   setNuhLayerIdPresentFlag(Bool x)                       { m_nuhLayerIdPresentFlag = x;     }
765
766  UInt   getLayerIdInNuh(Int id)                                { return m_layerIdInNuh[id];       }
767  Void   setLayerIdInNuh(Int id, UInt x)                        { m_layerIdInNuh[id] = x;          }
768
769  UInt   getDimensionId(Int lyrId, Int id)                      { return m_dimensionId[lyrId][id]; }
770  Void   setDimensionId(Int lyrId, Int id, UInt x)              { m_dimensionId[lyrId][id] = x;    }
771
772  UInt   getNumScalabilityTypes()                               { return m_numScalabilityTypes;    }
773  Void   setNumScalabilityTypes(UInt x)                         { m_numScalabilityTypes = x;       }
774
775  UInt   getLayerIdInVps(Int id)                                { return m_layerIdInVps[id];       }
776  Void   setLayerIdInVps(Int id, UInt x)                        { m_layerIdInVps[id] = x;          }
777#endif
778#if ILP_SSH_SIG
779    Bool   getIlpSshSignalingEnabledFlag()                      { return m_ilpSshSignalingEnabledFlag;}
780    Void   setIlpSshSignalingEnabledFlag(Bool x)                { m_ilpSshSignalingEnabledFlag = x;}
781#endif
782#if VPS_EXTN_PROFILE_INFO
783  Bool   getProfilePresentFlag(Int id)                          { return m_profilePresentFlag[id]; }
784  Void   setProfilePresentFlag(Int id, Bool x)                  { m_profilePresentFlag[id] = x;    }
785
786#if !P0048_REMOVE_PROFILE_REF
787  UInt   getProfileLayerSetRef(Int id)                          { return m_profileLayerSetRef[id]; }
788  Void   setProfileLayerSetRef(Int id, Bool x)                  { m_profileLayerSetRef[id] = x;    }
789#endif
790
791  std::vector<TComPTL>* getPTLForExtnPtr()                      { return &m_pcPTLForExtn;          }
792  TComPTL* getPTLForExtn(Int id)                                { return &m_pcPTLForExtn[id];      }
793#endif
794#if VPS_EXTN_OP_LAYER_SETS
795  // Target output layer signalling related
796  UInt   getNumOutputLayerSets()                                { return m_numOutputLayerSets;     } 
797  Void   setNumOutputLayerSets(Int x)                           { m_numOutputLayerSets = x;        }
798 
799  UInt   getOutputLayerSetIdx(Int idx)                          { return m_outputLayerSetIdx[idx]; }
800  Void   setOutputLayerSetIdx(Int idx, UInt x)                  { m_outputLayerSetIdx[idx] = x;    }
801
802  Bool   getOutputLayerFlag(Int layerSet, Int layerId)          { return m_outputLayerFlag[layerSet][layerId]; }
803  Void   setOutputLayerFlag(Int layerSet, Int layerId, Bool x)  { m_outputLayerFlag[layerSet][layerId] = x;    }
804#endif
805#if VPS_EXTN_DIRECT_REF_LAYERS
806  // Direct dependency of layers
807  Bool   getDirectDependencyFlag(Int currLayerId, Int refLayerId)               { return m_directDependencyFlag[currLayerId][refLayerId]; }
808  Void   setDirectDependencyFlag(Int currLayerId, Int refLayerId, Bool x)       { m_directDependencyFlag[currLayerId][refLayerId] = x;    }
809 
810  UInt   getNumDirectRefLayers(Int layerId)                                     { return m_numDirectRefLayers[layerId];                   }
811  Void   setNumDirectRefLayers(Int layerId, UInt refLayerNum)                   { m_numDirectRefLayers[layerId] = refLayerNum;            }
812
813  UInt   getRefLayerId(Int layerId, Int refLayerIdx)                            { return m_refLayerId[layerId][refLayerIdx];              }
814  Void   setRefLayerId(Int layerId, Int refLayerIdx, UInt refLayerId)           { m_refLayerId[layerId][refLayerIdx] = refLayerId;        }
815
816#if M0457_PREDICTION_INDICATIONS
817  UInt   getDirectDepTypeLen()                                                  { return m_directDepTypeLen;                              }
818  Void   setDirectDepTypeLen(UInt x)                                            { m_directDepTypeLen = x;                                 }
819#if O0096_DEFAULT_DEPENDENCY_TYPE
820  Bool   getDefaultDirectDependencyTypeFlag()                                   { return m_defaultDirectDependencyTypeFlag;               }
821  Void   setDefaultDirectDependecyTypeFlag(Bool x)                              { m_defaultDirectDependencyTypeFlag = x;                  }
822  UInt   getDefaultDirectDependencyType()                                       { return m_defaultDirectDependencyType;                   }
823  Void   setDefaultDirectDependecyType(UInt x)                                  { m_defaultDirectDependencyType = x;                      }
824#endif
825  UInt   getDirectDependencyType(Int currLayerId, Int refLayerId)               { return m_directDependencyType[currLayerId][refLayerId]; }
826  Void   setDirectDependencyType(Int currLayerId, Int refLayerId, UInt x)       { m_directDependencyType[currLayerId][refLayerId] = x;    }
827#endif
828#endif
829  UInt   getNumProfileTierLevel()                                { return m_numProfileTierLevel; }
830  Void   setNumProfileTierLevel(Int x)                           { m_numProfileTierLevel = x;    }
831
832  Bool   getMoreOutputLayerSetsThanDefaultFlag()                 { return m_moreOutputLayerSetsThanDefaultFlag;}
833  Void   setMoreOutputLayerSetsThanDefaultFlag(Bool x)           { m_moreOutputLayerSetsThanDefaultFlag = x   ;}
834
835  Int    getNumAddOutputLayerSets()                              { return m_numAddOutputLayerSets; }
836  Void   setNumAddOutputLayerSets(Int x)                         { m_numAddOutputLayerSets = x   ; }
837
838#if O0109_DEFAULT_ONE_OUT_LAYER_IDC
839  UInt   getDefaultOneTargetOutputLayerIdc()                 { return m_defaultOneTargetOutputLayerIdc;}
840  Void   setDefaultOneTargetOutputLayerIdc(UInt x)           { m_defaultOneTargetOutputLayerIdc= x    ;}
841#else
842  Bool   getDefaultOneTargetOutputLayerFlag()                 { return m_defaultOneTargetOutputLayerFlag;}
843  Void   setDefaultOneTargetOutputLayerFlag(Bool x)           { m_defaultOneTargetOutputLayerFlag= x    ;}
844#endif
845  Int    getProfileLevelTierIdx(Int i)                        { return m_profileLevelTierIdx[i]; }
846  Void   setProfileLevelTierIdx(Int i, Int x)                 { m_profileLevelTierIdx[i] = x   ; }
847#if JCTVC_M0458_INTERLAYER_RPS_SIG
848  Bool   getMaxOneActiveRefLayerFlag()                                          { return m_maxOneActiveRefLayerFlag;                      }
849  Void   setMaxOneActiveRefLayerFlag(Bool x)                                    { m_maxOneActiveRefLayerFlag = x;                         }
850#endif
851#if O0062_POC_LSB_NOT_PRESENT_FLAG
852  UInt   getPocLsbNotPresentFlag(Int i)                                         { return m_pocLsbNotPresentFlag[i]; }
853  Void   setPocLsbNotPresentFlag(Int i, Bool x)                                 { m_pocLsbNotPresentFlag[i] = x;    }
854#endif
855#if O0223_PICTURE_TYPES_ALIGN_FLAG
856  Bool   getCrossLayerPictureTypeAlignFlag()                                    { return m_crossLayerPictureTypeAlignFlag;                      }
857  Void   setCrossLayerPictureTypeAlignFlag(Bool x)                              { m_crossLayerPictureTypeAlignFlag = x;                         }
858#endif
859#if N0147_IRAP_ALIGN_FLAG
860  Bool   getCrossLayerIrapAlignFlag()                                           { return m_crossLayerIrapAlignFlag;                      }
861  Void   setCrossLayerIrapAlignFlag(Bool x)                                     { m_crossLayerIrapAlignFlag = x;                         }
862#endif
863#if JCTVC_M0203_INTERLAYER_PRED_IDC
864#if O0225_MAX_TID_FOR_REF_LAYERS
865  UInt   getMaxTidIlRefPicsPlus1(Int layerId, Int refLayerId)                     { return m_maxTidIlRefPicsPlus1[layerId][refLayerId];           }
866  Void   setMaxTidIlRefPicsPlus1(Int layerId, Int refLayerId, UInt maxSublayer)   { m_maxTidIlRefPicsPlus1[layerId][refLayerId] = maxSublayer;    }
867#else
868  UInt   getMaxTidIlRefPicsPlus1(Int layerId)                     { return m_maxTidIlRefPicsPlus1[layerId];                   }
869  Void   setMaxTidIlRefPicsPlus1(Int layerId, UInt maxSublayer)   { m_maxTidIlRefPicsPlus1[layerId] = maxSublayer;            }
870#endif
871#endif
872#if N0120_MAX_TID_REF_PRESENT_FLAG
873  Bool   getMaxTidRefPresentFlag()                                  { return m_maxTidRefPresentFlag ;}
874  Void   setMaxTidRefPresentFlag(Bool x)                            { m_maxTidRefPresentFlag = x;}
875#endif
876#if VPS_TSLAYERS
877    Bool   getMaxTSLayersPresentFlag()                                  { return m_maxTSLayersPresentFlag ;}
878    Void   setMaxTSLayersPresentFlag(Bool x)                            { m_maxTSLayersPresentFlag = x;}
879    UInt   getMaxTSLayersMinus1(Int layerId)                            { return m_maxTSLayerMinus1[layerId];}
880    Void   setMaxTSLayersMinus1(Int layerId, UInt maxTSublayer)         { m_maxTSLayerMinus1[layerId] = maxTSublayer;}
881#endif
882#if M0040_ADAPTIVE_RESOLUTION_CHANGE
883  Bool   getSingleLayerForNonIrapFlag()                             { return m_singleLayerForNonIrapFlag; }
884  Void   setSingleLayerForNonIrapFlag(Bool x)                       { m_singleLayerForNonIrapFlag = x;    }
885#endif
886#if HIGHER_LAYER_IRAP_SKIP_FLAG
887  Bool   getHigherLayerIrapSkipFlag()                             { return m_higherLayerIrapSkipFlag; }
888  Void   setHigherLayerIrapSkipFlag(Bool x)                       { m_higherLayerIrapSkipFlag = x;    }
889#endif
890#if VPS_VUI_TILES_NOT_IN_USE__FLAG 
891  Bool   getTilesNotInUseFlag()         { return m_tilesNotInUseFlag; }
892  Void   setTilesNotInUseFlag(Bool x); 
893  Bool   getTilesInUseFlag(Int currLayerId)    { return m_tilesInUseFlag[currLayerId]; }
894  Void   setTilesInUseFlag(Int currLayerId, Bool x)    { m_tilesInUseFlag[currLayerId] = x; } 
895  Bool   getLoopFilterNotAcrossTilesFlag(Int currLayerId)    { return m_loopFilterNotAcrossTilesFlag[currLayerId]; }
896  Void   setLoopFilterNotAcrossTilesFlag(Int currLayerId, Bool x)    { m_loopFilterNotAcrossTilesFlag[currLayerId] = x; } 
897#endif
898#if TILE_BOUNDARY_ALIGNED_FLAG 
899  Bool   getTileBoundariesAlignedFlag(Int currLayerId, Int refLayerId)           { return m_tileBoundariesAlignedFlag[currLayerId][refLayerId]; }
900  Void   setTileBoundariesAlignedFlag(Int currLayerId, Int refLayerId, Bool x)   { m_tileBoundariesAlignedFlag[currLayerId][refLayerId] = x; } 
901#endif
902#if VPS_VUI_WPP_NOT_IN_USE__FLAG 
903  Bool   getWppNotInUseFlag()         { return m_wppNotInUseFlag; }
904  Void   setWppNotInUseFlag(Bool x); 
905  Bool   getWppInUseFlag(Int currLayerId)    { return m_wppInUseFlag[currLayerId]; }
906  Void   setWppInUseFlag(Int currLayerId, Bool x)    { m_wppInUseFlag[currLayerId] = x; } 
907#endif
908#if N0160_VUI_EXT_ILP_REF 
909  Bool  getIlpRestrictedRefLayersFlag   ( )                                        { return m_ilpRestrictedRefLayersFlag        ;}
910  Void  setIlpRestrictedRefLayersFlag   ( Int val )                                { m_ilpRestrictedRefLayersFlag         = val;}
911 
912  Int  getMinSpatialSegmentOffsetPlus1( Int currLayerId, Int refLayerId )          { return m_minSpatialSegmentOffsetPlus1[currLayerId][refLayerId];}
913  Void setMinSpatialSegmentOffsetPlus1( Int currLayerId, Int refLayerId, Int val ) { m_minSpatialSegmentOffsetPlus1[currLayerId][refLayerId] = val;}
914 
915  Bool getCtuBasedOffsetEnabledFlag   ( Int currLayerId, Int refLayerId )            { return m_ctuBasedOffsetEnabledFlag[currLayerId][refLayerId];}
916  Void setCtuBasedOffsetEnabledFlag   ( Int currLayerId, Int refLayerId, Bool flag ) { m_ctuBasedOffsetEnabledFlag[currLayerId][refLayerId] = flag;}
917 
918  Int  getMinHorizontalCtuOffsetPlus1 ( Int currLayerId, Int refLayerId )            { return m_minHorizontalCtuOffsetPlus1[currLayerId][refLayerId];}
919  Void setMinHorizontalCtuOffsetPlus1 ( Int currLayerId, Int refLayerId, Int val )   { m_minHorizontalCtuOffsetPlus1[currLayerId][refLayerId] = val;} 
920#endif
921#if VPS_VUI_VIDEO_SIGNAL
922    Bool   getVideoSigPresentVpsFlag()           { return m_vidSigPresentVpsFlag; }
923    Void   setVideoSigPresentVpsFlag(Bool x)     { m_vidSigPresentVpsFlag = x;    }
924    Int    getNumVideoSignalInfo()               { return m_vpsVidSigInfo;        }
925    Void   setNumVideoSignalInfo(Int x)          { m_vpsVidSigInfo = x;           }
926    Int    getVideoSignalInfoIdx(Int idx)        { return m_vpsVidSigIdx[idx];    }
927    Void   setVideoSignalInfoIdx(Int idx, Int x) { m_vpsVidSigIdx[idx] = x;       }
928    Int    getVideoVPSFormat(Int idx)            { return m_vpsVidFormat[idx];    }
929    Void   setVideoVPSFormat(Int idx, Int x)     { m_vpsVidFormat[idx] = x;       }
930    Bool   getVideoFullRangeVpsFlag(Int idx)     { return m_vpsFullRangeFlag[idx];}
931    Void   setVideoFullRangeVpsFlag(Int idx, Bool x) { m_vpsFullRangeFlag[idx] = x;   }
932    Int    getColorPrimaries(Int idx)            { return m_vpsColorPrimaries[idx];   }
933    Void   setColorPrimaries(Int idx, Int x)     { m_vpsColorPrimaries[idx] = x;      }
934    Int    getTransCharacter(Int idx)            { return m_vpsTransChar[idx];    }
935    Void   setTransCharacter(Int idx, Int x)     { m_vpsTransChar[idx] = x;       }
936    Int    getMaxtrixCoeff(Int idx)              { return m_vpsMatCoeff[idx];     }
937    Void   setMaxtrixCoeff(Int idx, Int x)       { m_vpsMatCoeff[idx] = x;        }
938#endif
939#if VPS_VUI_BITRATE_PICRATE
940  Bool getBitRatePresentVpsFlag()       { return m_bitRatePresentVpsFlag; }
941  Void setBitRatePresentVpsFlag(Bool x) { m_bitRatePresentVpsFlag = x;    }
942  Bool getPicRatePresentVpsFlag()       { return m_picRatePresentVpsFlag; }
943  Void setPicRatePresentVpsFlag(Bool x) { m_picRatePresentVpsFlag = x;    }
944
945  Bool getBitRatePresentFlag(Int i, Int j)          { return m_bitRatePresentFlag[i][j]; }
946  Void setBitRatePresentFlag(Int i, Int j, Bool x)  { m_bitRatePresentFlag[i][j] = x;    }
947  Bool getPicRatePresentFlag(Int i, Int j)          { return m_picRatePresentFlag[i][j]; }
948  Void setPicRatePresentFlag(Int i, Int j, Bool x)  { m_picRatePresentFlag[i][j] = x;    }
949 
950  Int  getAvgBitRate(Int i, Int j)          { return m_avgBitRate[i][j]; }
951  Void setAvgBitRate(Int i, Int j, Int x)   { m_avgBitRate[i][j] = x;    }
952  Int  getMaxBitRate(Int i, Int j)          { return m_maxBitRate[i][j]; }
953  Void setMaxBitRate(Int i, Int j, Int x)   { m_maxBitRate[i][j] = x;    }
954 
955  Int  getConstPicRateIdc(Int i, Int j)          { return m_constPicRateIdc[i][j]; }
956  Void setConstPicRateIdc(Int i, Int j, Int x)   { m_constPicRateIdc[i][j] = x;    }
957  Int  getAvgPicRate(Int i, Int j)          { return m_avgPicRate[i][j]; }
958  Void setAvgPicRate(Int i, Int j, Int x)   { m_avgPicRate[i][j] = x;    }
959#endif
960#if O0153_ALT_OUTPUT_LAYER_FLAG
961  Bool   getAltOuputLayerFlag()             { return m_altOutputLayerFlag; }
962  Void   setAltOuputLayerFlag(Bool x)       { m_altOutputLayerFlag = x;    }
963#endif
964#if REPN_FORMAT_IN_VPS
965  Bool   getRepFormatIdxPresentFlag()       { return m_repFormatIdxPresentFlag; }
966  Void   setRepFormatIdxPresentFlag(Bool x) { m_repFormatIdxPresentFlag = x;    }
967
968  Int    getVpsNumRepFormats()              { return m_vpsNumRepFormats;        }
969  Void   setVpsNumRepFormats(Int x)         { m_vpsNumRepFormats = x;           }
970
971  RepFormat* getVpsRepFormat(Int idx)       { return &m_vpsRepFormat[idx];      }
972
973  Int    getVpsRepFormatIdx(Int idx)        { return m_vpsRepFormatIdx[idx];   }
974  Void   setVpsRepFormatIdx(Int idx, Int x) { m_vpsRepFormatIdx[idx] = x;      }         
975#endif
976#if VIEW_ID_RELATED_SIGNALING
977#if O0109_VIEW_ID_LEN
978  Void    setViewIdLen( Int  val )                                   { m_viewIdLen = val; } 
979  Int     getViewIdLen(  )                                           { return m_viewIdLen; } 
980#else
981  Void    setViewIdLenMinus1( Int  val )                                   { m_viewIdLenMinus1 = val; } 
982  Int     getViewIdLenMinus1(  )                                           { return m_viewIdLenMinus1; } 
983#endif
984
985  Void    setViewIdVal( Int viewOrderIndex, Int  val )                     { m_viewIdVal[viewOrderIndex] = val; } 
986  Int     getViewIdVal( Int viewOrderIndex )                               { return m_viewIdVal[viewOrderIndex]; } 
987  Int     getScalabilityId(Int, ScalabilityType scalType );
988
989  Int     getViewIndex    ( Int layerIdInNuh )                             { return getScalabilityId( getLayerIdInVps(layerIdInNuh), VIEW_ORDER_INDEX  ); }   
990
991  Int     getNumViews();
992  Int     scalTypeToScalIdx( ScalabilityType scalType );
993#endif
994#if VPS_EXTN_OFFSET
995  Int     getExtensionOffset()                 { return m_extensionOffset;   }
996  Void    setExtensionOffset( UInt offset )    { m_extensionOffset = offset; }
997#endif
998#if O0215_PHASE_ALIGNMENT
999  Bool   getPhaseAlignFlag()                             { return m_phaseAlignFlag; }
1000  Void   setPhaseAlignFlag(Bool x)                       { m_phaseAlignFlag = x;    }
1001#endif
1002#if VPS_DPB_SIZE_TABLE
1003  Bool    getSubLayerFlagInfoPresentFlag(Int i)         {return m_subLayerFlagInfoPresentFlag[i]; }
1004  Void    setSubLayerFlagInfoPresentFlag(Int i, Bool x) {m_subLayerFlagInfoPresentFlag[i] = x;    }
1005
1006  Bool    getSubLayerDpbInfoPresentFlag(Int i, Int j)         {return m_subLayerDpbInfoPresentFlag[i][j]; }
1007  Void    setSubLayerDpbInfoPresentFlag(Int i, Int j, Bool x) {m_subLayerDpbInfoPresentFlag[i][j] = x;    }
1008
1009  // For the 0-th output layer set, use the date from the active SPS for base layer.
1010  Int     getMaxVpsDecPicBufferingMinus1(Int i, Int k, Int j)         { assert(i != 0); return m_maxVpsDecPicBufferingMinus1[i][k][j]; }
1011  Void    setMaxVpsDecPicBufferingMinus1(Int i, Int k, Int j, Int x) { m_maxVpsDecPicBufferingMinus1[i][k][j] = x;    }
1012
1013  Int     getMaxVpsNumReorderPics(Int i, Int j)         { assert(i != 0); return m_maxVpsNumReorderPics[i][j]; }
1014  Void    setMaxVpsNumReorderPics(Int i, Int j, Int x) { m_maxVpsNumReorderPics[i][j] = x;    }
1015
1016  Int     getMaxVpsLatencyIncreasePlus1(Int i, Int j)         { assert(i != 0); return m_maxVpsLatencyIncreasePlus1[i][j]; }
1017  Void    setMaxVpsLatencyIncreasePlus1(Int i, Int j, Int x) { m_maxVpsLatencyIncreasePlus1[i][j] = x;    }
1018
1019  Int     getNumSubDpbs(Int i)                          { return m_numSubDpbs[i]; }
1020  Void    setNumSubDpbs(Int i, Int x)                   { m_numSubDpbs[i] = x;    }
1021#endif
1022
1023#if O0109_MOVE_VPS_VUI_FLAG
1024  Bool   getVpsVuiPresentFlag()                                 { return m_vpsVuiPresentFlag; }
1025  Void   setVpsVuiPresentFlag(Bool x)                           { m_vpsVuiPresentFlag = x; }
1026#endif
1027
1028#if !P0307_REMOVE_VPS_VUI_OFFSET
1029#if VPS_VUI_OFFSET
1030  Int     getVpsVuiOffset()         { return m_vpsVuiOffset; }
1031  Void    setVpsVuiOffset(Int x)    { m_vpsVuiOffset = x; }
1032#endif
1033#endif
1034#if P0307_VPS_NON_VUI_EXTENSION
1035  Int     getVpsNonVuiExtLength()         { return m_vpsNonVuiExtLength; }
1036  Void    setVpsNonVuiExtLength(Int x)    { m_vpsNonVuiExtLength = x; }
1037#endif
1038#endif //SVC_EXTENSION
1039};
1040
1041class Window
1042{
1043private:
1044  Bool          m_enabledFlag;
1045  Int           m_winLeftOffset;
1046  Int           m_winRightOffset;
1047  Int           m_winTopOffset;
1048  Int           m_winBottomOffset;
1049public:
1050  Window()
1051  : m_enabledFlag (false)
1052  , m_winLeftOffset     (0)
1053  , m_winRightOffset    (0)
1054  , m_winTopOffset      (0)
1055  , m_winBottomOffset   (0)
1056  { }
1057
1058  Bool          getWindowEnabledFlag() const      { return m_enabledFlag; }
1059  Void          resetWindow()                     { m_enabledFlag = false; m_winLeftOffset = m_winRightOffset = m_winTopOffset = m_winBottomOffset = 0; }
1060  Int           getWindowLeftOffset() const       { return m_enabledFlag ? m_winLeftOffset : 0; }
1061  Void          setWindowLeftOffset(Int val)      { m_winLeftOffset = val; m_enabledFlag = true; }
1062  Int           getWindowRightOffset() const      { return m_enabledFlag ? m_winRightOffset : 0; }
1063  Void          setWindowRightOffset(Int val)     { m_winRightOffset = val; m_enabledFlag = true; }
1064  Int           getWindowTopOffset() const        { return m_enabledFlag ? m_winTopOffset : 0; }
1065  Void          setWindowTopOffset(Int val)       { m_winTopOffset = val; m_enabledFlag = true; }
1066  Int           getWindowBottomOffset() const     { return m_enabledFlag ? m_winBottomOffset: 0; }
1067  Void          setWindowBottomOffset(Int val)    { m_winBottomOffset = val; m_enabledFlag = true; }
1068
1069  Void          setWindow(Int offsetLeft, Int offsetLRight, Int offsetLTop, Int offsetLBottom)
1070  {
1071    m_enabledFlag       = true;
1072    m_winLeftOffset     = offsetLeft;
1073    m_winRightOffset    = offsetLRight;
1074    m_winTopOffset      = offsetLTop;
1075    m_winBottomOffset   = offsetLBottom;
1076  }
1077};
1078
1079
1080class TComVUI
1081{
1082private:
1083  Bool m_aspectRatioInfoPresentFlag;
1084  Int  m_aspectRatioIdc;
1085  Int  m_sarWidth;
1086  Int  m_sarHeight;
1087  Bool m_overscanInfoPresentFlag;
1088  Bool m_overscanAppropriateFlag;
1089  Bool m_videoSignalTypePresentFlag;
1090  Int  m_videoFormat;
1091  Bool m_videoFullRangeFlag;
1092  Bool m_colourDescriptionPresentFlag;
1093  Int  m_colourPrimaries;
1094  Int  m_transferCharacteristics;
1095  Int  m_matrixCoefficients;
1096  Bool m_chromaLocInfoPresentFlag;
1097  Int  m_chromaSampleLocTypeTopField;
1098  Int  m_chromaSampleLocTypeBottomField;
1099  Bool m_neutralChromaIndicationFlag;
1100  Bool m_fieldSeqFlag;
1101
1102  Window m_defaultDisplayWindow;
1103  Bool m_frameFieldInfoPresentFlag;
1104  Bool m_hrdParametersPresentFlag;
1105  Bool m_bitstreamRestrictionFlag;
1106  Bool m_tilesFixedStructureFlag;
1107  Bool m_motionVectorsOverPicBoundariesFlag;
1108  Bool m_restrictedRefPicListsFlag;
1109  Int  m_minSpatialSegmentationIdc;
1110  Int  m_maxBytesPerPicDenom;
1111  Int  m_maxBitsPerMinCuDenom;
1112  Int  m_log2MaxMvLengthHorizontal;
1113  Int  m_log2MaxMvLengthVertical;
1114  TComHRD m_hrdParameters;
1115  TimingInfo m_timingInfo;
1116
1117public:
1118  TComVUI()
1119    :m_aspectRatioInfoPresentFlag(false)
1120    ,m_aspectRatioIdc(0)
1121    ,m_sarWidth(0)
1122    ,m_sarHeight(0)
1123    ,m_overscanInfoPresentFlag(false)
1124    ,m_overscanAppropriateFlag(false)
1125    ,m_videoSignalTypePresentFlag(false)
1126    ,m_videoFormat(5)
1127    ,m_videoFullRangeFlag(false)
1128    ,m_colourDescriptionPresentFlag(false)
1129    ,m_colourPrimaries(2)
1130    ,m_transferCharacteristics(2)
1131    ,m_matrixCoefficients(2)
1132    ,m_chromaLocInfoPresentFlag(false)
1133    ,m_chromaSampleLocTypeTopField(0)
1134    ,m_chromaSampleLocTypeBottomField(0)
1135    ,m_neutralChromaIndicationFlag(false)
1136    ,m_fieldSeqFlag(false)
1137    ,m_frameFieldInfoPresentFlag(false)
1138    ,m_hrdParametersPresentFlag(false)
1139    ,m_bitstreamRestrictionFlag(false)
1140    ,m_tilesFixedStructureFlag(false)
1141    ,m_motionVectorsOverPicBoundariesFlag(true)
1142    ,m_restrictedRefPicListsFlag(1)
1143    ,m_minSpatialSegmentationIdc(0)
1144    ,m_maxBytesPerPicDenom(2)
1145    ,m_maxBitsPerMinCuDenom(1)
1146    ,m_log2MaxMvLengthHorizontal(15)
1147    ,m_log2MaxMvLengthVertical(15)
1148  {}
1149
1150  virtual ~TComVUI() {}
1151
1152  Bool getAspectRatioInfoPresentFlag() { return m_aspectRatioInfoPresentFlag; }
1153  Void setAspectRatioInfoPresentFlag(Bool i) { m_aspectRatioInfoPresentFlag = i; }
1154
1155  Int getAspectRatioIdc() { return m_aspectRatioIdc; }
1156  Void setAspectRatioIdc(Int i) { m_aspectRatioIdc = i; }
1157
1158  Int getSarWidth() { return m_sarWidth; }
1159  Void setSarWidth(Int i) { m_sarWidth = i; }
1160
1161  Int getSarHeight() { return m_sarHeight; }
1162  Void setSarHeight(Int i) { m_sarHeight = i; }
1163
1164  Bool getOverscanInfoPresentFlag() { return m_overscanInfoPresentFlag; }
1165  Void setOverscanInfoPresentFlag(Bool i) { m_overscanInfoPresentFlag = i; }
1166
1167  Bool getOverscanAppropriateFlag() { return m_overscanAppropriateFlag; }
1168  Void setOverscanAppropriateFlag(Bool i) { m_overscanAppropriateFlag = i; }
1169
1170  Bool getVideoSignalTypePresentFlag() { return m_videoSignalTypePresentFlag; }
1171  Void setVideoSignalTypePresentFlag(Bool i) { m_videoSignalTypePresentFlag = i; }
1172
1173  Int getVideoFormat() { return m_videoFormat; }
1174  Void setVideoFormat(Int i) { m_videoFormat = i; }
1175
1176  Bool getVideoFullRangeFlag() { return m_videoFullRangeFlag; }
1177  Void setVideoFullRangeFlag(Bool i) { m_videoFullRangeFlag = i; }
1178
1179  Bool getColourDescriptionPresentFlag() { return m_colourDescriptionPresentFlag; }
1180  Void setColourDescriptionPresentFlag(Bool i) { m_colourDescriptionPresentFlag = i; }
1181
1182  Int getColourPrimaries() { return m_colourPrimaries; }
1183  Void setColourPrimaries(Int i) { m_colourPrimaries = i; }
1184
1185  Int getTransferCharacteristics() { return m_transferCharacteristics; }
1186  Void setTransferCharacteristics(Int i) { m_transferCharacteristics = i; }
1187
1188  Int getMatrixCoefficients() { return m_matrixCoefficients; }
1189  Void setMatrixCoefficients(Int i) { m_matrixCoefficients = i; }
1190
1191  Bool getChromaLocInfoPresentFlag() { return m_chromaLocInfoPresentFlag; }
1192  Void setChromaLocInfoPresentFlag(Bool i) { m_chromaLocInfoPresentFlag = i; }
1193
1194  Int getChromaSampleLocTypeTopField() { return m_chromaSampleLocTypeTopField; }
1195  Void setChromaSampleLocTypeTopField(Int i) { m_chromaSampleLocTypeTopField = i; }
1196
1197  Int getChromaSampleLocTypeBottomField() { return m_chromaSampleLocTypeBottomField; }
1198  Void setChromaSampleLocTypeBottomField(Int i) { m_chromaSampleLocTypeBottomField = i; }
1199
1200  Bool getNeutralChromaIndicationFlag() { return m_neutralChromaIndicationFlag; }
1201  Void setNeutralChromaIndicationFlag(Bool i) { m_neutralChromaIndicationFlag = i; }
1202
1203  Bool getFieldSeqFlag() { return m_fieldSeqFlag; }
1204  Void setFieldSeqFlag(Bool i) { m_fieldSeqFlag = i; }
1205
1206  Bool getFrameFieldInfoPresentFlag() { return m_frameFieldInfoPresentFlag; }
1207  Void setFrameFieldInfoPresentFlag(Bool i) { m_frameFieldInfoPresentFlag = i; }
1208
1209  Window& getDefaultDisplayWindow()                              { return m_defaultDisplayWindow;                }
1210  Void    setDefaultDisplayWindow(Window& defaultDisplayWindow ) { m_defaultDisplayWindow = defaultDisplayWindow; }
1211
1212  Bool getHrdParametersPresentFlag() { return m_hrdParametersPresentFlag; }
1213  Void setHrdParametersPresentFlag(Bool i) { m_hrdParametersPresentFlag = i; }
1214
1215  Bool getBitstreamRestrictionFlag() { return m_bitstreamRestrictionFlag; }
1216  Void setBitstreamRestrictionFlag(Bool i) { m_bitstreamRestrictionFlag = i; }
1217
1218  Bool getTilesFixedStructureFlag() { return m_tilesFixedStructureFlag; }
1219  Void setTilesFixedStructureFlag(Bool i) { m_tilesFixedStructureFlag = i; }
1220
1221  Bool getMotionVectorsOverPicBoundariesFlag() { return m_motionVectorsOverPicBoundariesFlag; }
1222  Void setMotionVectorsOverPicBoundariesFlag(Bool i) { m_motionVectorsOverPicBoundariesFlag = i; }
1223
1224  Bool getRestrictedRefPicListsFlag() { return m_restrictedRefPicListsFlag; }
1225  Void setRestrictedRefPicListsFlag(Bool b) { m_restrictedRefPicListsFlag = b; }
1226
1227  Int getMinSpatialSegmentationIdc() { return m_minSpatialSegmentationIdc; }
1228  Void setMinSpatialSegmentationIdc(Int i) { m_minSpatialSegmentationIdc = i; }
1229  Int getMaxBytesPerPicDenom() { return m_maxBytesPerPicDenom; }
1230  Void setMaxBytesPerPicDenom(Int i) { m_maxBytesPerPicDenom = i; }
1231
1232  Int getMaxBitsPerMinCuDenom() { return m_maxBitsPerMinCuDenom; }
1233  Void setMaxBitsPerMinCuDenom(Int i) { m_maxBitsPerMinCuDenom = i; }
1234
1235  Int getLog2MaxMvLengthHorizontal() { return m_log2MaxMvLengthHorizontal; }
1236  Void setLog2MaxMvLengthHorizontal(Int i) { m_log2MaxMvLengthHorizontal = i; }
1237
1238  Int getLog2MaxMvLengthVertical() { return m_log2MaxMvLengthVertical; }
1239  Void setLog2MaxMvLengthVertical(Int i) { m_log2MaxMvLengthVertical = i; }
1240
1241  TComHRD* getHrdParameters                 ()             { return &m_hrdParameters; }
1242  TimingInfo* getTimingInfo() { return &m_timingInfo; }
1243};
1244
1245/// SPS class
1246class TComSPS
1247{
1248private:
1249  Int         m_SPSId;
1250  Int         m_VPSId;
1251#if AUXILIARY_PICTURES
1252  ChromaFormat m_chromaFormatIdc;
1253#else
1254  Int         m_chromaFormatIdc;
1255#endif
1256
1257  UInt        m_uiMaxTLayers;           // maximum number of temporal layers
1258
1259  // Structure
1260  UInt        m_picWidthInLumaSamples;
1261  UInt        m_picHeightInLumaSamples;
1262 
1263  Int         m_log2MinCodingBlockSize;
1264  Int         m_log2DiffMaxMinCodingBlockSize;
1265  UInt        m_uiMaxCUWidth;
1266  UInt        m_uiMaxCUHeight;
1267  UInt        m_uiMaxCUDepth;
1268
1269  Window      m_conformanceWindow;
1270
1271  TComRPSList m_RPSList;
1272  Bool        m_bLongTermRefsPresent;
1273  Bool        m_TMVPFlagsPresent;
1274  Int         m_numReorderPics[MAX_TLAYER];
1275 
1276  // Tool list
1277  UInt        m_uiQuadtreeTULog2MaxSize;
1278  UInt        m_uiQuadtreeTULog2MinSize;
1279  UInt        m_uiQuadtreeTUMaxDepthInter;
1280  UInt        m_uiQuadtreeTUMaxDepthIntra;
1281  Bool        m_usePCM;
1282  UInt        m_pcmLog2MaxSize;
1283  UInt        m_uiPCMLog2MinSize;
1284  Bool        m_useAMP;
1285
1286  // Parameter
1287  Int         m_bitDepthY;
1288  Int         m_bitDepthC;
1289  Int         m_qpBDOffsetY;
1290  Int         m_qpBDOffsetC;
1291
1292  Bool        m_useLossless;
1293
1294  UInt        m_uiPCMBitDepthLuma;
1295  UInt        m_uiPCMBitDepthChroma;
1296  Bool        m_bPCMFilterDisableFlag;
1297
1298  UInt        m_uiBitsForPOC;
1299  UInt        m_numLongTermRefPicSPS;
1300  UInt        m_ltRefPicPocLsbSps[33];
1301  Bool        m_usedByCurrPicLtSPSFlag[33];
1302  // Max physical transform size
1303  UInt        m_uiMaxTrSize;
1304 
1305  Int m_iAMPAcc[MAX_CU_DEPTH];
1306  Bool        m_bUseSAO; 
1307
1308  Bool        m_bTemporalIdNestingFlag; // temporal_id_nesting_flag
1309
1310  Bool        m_scalingListEnabledFlag;
1311  Bool        m_scalingListPresentFlag;
1312
1313  TComScalingList*     m_scalingList;   //!< ScalingList class pointer
1314
1315  UInt        m_uiMaxDecPicBuffering[MAX_TLAYER]; 
1316  UInt        m_uiMaxLatencyIncrease[MAX_TLAYER];  // Really max latency increase plus 1 (value 0 expresses no limit)
1317
1318  Bool        m_useDF;
1319  Bool        m_useStrongIntraSmoothing;
1320
1321  Bool        m_vuiParametersPresentFlag;
1322  TComVUI     m_vuiParameters;
1323
1324  static const Int   m_winUnitX[MAX_CHROMA_FORMAT_IDC+1];
1325  static const Int   m_winUnitY[MAX_CHROMA_FORMAT_IDC+1];
1326  TComPTL     m_pcPTL;
1327
1328#if SVC_EXTENSION
1329#if M0463_VUI_EXT_ILP_REF
1330  Bool        m_interViewMvVertConstraintFlag;
1331  Int         m_numIlpRestrictedRefLayers        ;
1332  Int         m_minSpatialSegmentOffsetPlus1[MAX_LAYERS];
1333  Bool        m_ctuBasedOffsetEnabledFlag   [MAX_LAYERS];
1334  Int         m_minHorizontalCtuOffsetPlus1 [MAX_LAYERS];
1335#endif
1336
1337  UInt m_layerId;
1338
1339#if REF_IDX_MFM
1340#if !M0457_COL_PICTURE_SIGNALING
1341  Bool m_bMFMEnabledFlag;
1342#endif
1343#endif
1344  UInt        m_numScaledRefLayerOffsets;
1345#if O0098_SCALED_REF_LAYER_ID
1346  UInt        m_scaledRefLayerId[MAX_LAYERS];
1347#endif
1348  Window      m_scaledRefLayerWindow[MAX_LAYERS];
1349#if REPN_FORMAT_IN_VPS
1350  Bool m_updateRepFormatFlag;
1351#if O0096_REP_FORMAT_INDEX
1352  UInt m_updateRepFormatIndex;
1353#endif
1354#endif
1355#if SCALINGLIST_INFERRING
1356  Bool       m_inferScalingListFlag;
1357  UInt       m_scalingListRefLayerId;
1358#endif
1359#endif //SVC_EXTENSION
1360public:
1361  TComSPS();
1362  virtual ~TComSPS();
1363
1364  Int  getVPSId       ()         { return m_VPSId;          }
1365  Void setVPSId       (Int i)    { m_VPSId = i;             }
1366  Int  getSPSId       ()         { return m_SPSId;          }
1367  Void setSPSId       (Int i)    { m_SPSId = i;             }
1368
1369#if AUXILIARY_PICTURES
1370  ChromaFormat getChromaFormatIdc ()         { return m_chromaFormatIdc;       }
1371  Void setChromaFormatIdc (ChromaFormat i)   { m_chromaFormatIdc = i;          }
1372
1373  static Int getWinUnitX (Int chromaFormatIdc) { assert (chromaFormatIdc >= 0 && chromaFormatIdc <= MAX_CHROMA_FORMAT_IDC); return m_winUnitX[chromaFormatIdc];      }
1374  static Int getWinUnitY (Int chromaFormatIdc) { assert (chromaFormatIdc >= 0 && chromaFormatIdc <= MAX_CHROMA_FORMAT_IDC); return m_winUnitY[chromaFormatIdc];      }
1375#else
1376  Int  getChromaFormatIdc ()         { return m_chromaFormatIdc;       }
1377  Void setChromaFormatIdc (Int i)    { m_chromaFormatIdc = i;          }
1378
1379  static Int getWinUnitX (Int chromaFormatIdc) { assert (chromaFormatIdc > 0 && chromaFormatIdc <= MAX_CHROMA_FORMAT_IDC); return m_winUnitX[chromaFormatIdc];      }
1380  static Int getWinUnitY (Int chromaFormatIdc) { assert (chromaFormatIdc > 0 && chromaFormatIdc <= MAX_CHROMA_FORMAT_IDC); return m_winUnitY[chromaFormatIdc];      }
1381#endif
1382 
1383  // structure
1384  Void setPicWidthInLumaSamples       ( UInt u ) { m_picWidthInLumaSamples = u;        }
1385  UInt getPicWidthInLumaSamples       ()         { return  m_picWidthInLumaSamples;    }
1386  Void setPicHeightInLumaSamples      ( UInt u ) { m_picHeightInLumaSamples = u;       }
1387  UInt getPicHeightInLumaSamples      ()         { return  m_picHeightInLumaSamples;   }
1388
1389  Window& getConformanceWindow()                           { return  m_conformanceWindow;             }
1390  Void    setConformanceWindow(Window& conformanceWindow ) { m_conformanceWindow = conformanceWindow; }
1391
1392  UInt  getNumLongTermRefPicSPS()             { return m_numLongTermRefPicSPS; }
1393  Void  setNumLongTermRefPicSPS(UInt val)     { m_numLongTermRefPicSPS = val; }
1394
1395  UInt  getLtRefPicPocLsbSps(UInt index)             { return m_ltRefPicPocLsbSps[index]; }
1396  Void  setLtRefPicPocLsbSps(UInt index, UInt val)     { m_ltRefPicPocLsbSps[index] = val; }
1397
1398  Bool getUsedByCurrPicLtSPSFlag(Int i)        {return m_usedByCurrPicLtSPSFlag[i];}
1399  Void setUsedByCurrPicLtSPSFlag(Int i, Bool x)      { m_usedByCurrPicLtSPSFlag[i] = x;}
1400
1401  Int  getLog2MinCodingBlockSize() const           { return m_log2MinCodingBlockSize; }
1402  Void setLog2MinCodingBlockSize(Int val)          { m_log2MinCodingBlockSize = val; }
1403  Int  getLog2DiffMaxMinCodingBlockSize() const    { return m_log2DiffMaxMinCodingBlockSize; }
1404  Void setLog2DiffMaxMinCodingBlockSize(Int val)   { m_log2DiffMaxMinCodingBlockSize = val; }
1405
1406  Void setMaxCUWidth  ( UInt u ) { m_uiMaxCUWidth = u;      }
1407  UInt getMaxCUWidth  ()         { return  m_uiMaxCUWidth;  }
1408  Void setMaxCUHeight ( UInt u ) { m_uiMaxCUHeight = u;     }
1409  UInt getMaxCUHeight ()         { return  m_uiMaxCUHeight; }
1410  Void setMaxCUDepth  ( UInt u ) { m_uiMaxCUDepth = u;      }
1411  UInt getMaxCUDepth  ()         { return  m_uiMaxCUDepth;  }
1412  Void setUsePCM      ( Bool b ) { m_usePCM = b;           }
1413  Bool getUsePCM      ()         { return m_usePCM;        }
1414  Void setPCMLog2MaxSize  ( UInt u ) { m_pcmLog2MaxSize = u;      }
1415  UInt getPCMLog2MaxSize  ()         { return  m_pcmLog2MaxSize;  }
1416  Void setPCMLog2MinSize  ( UInt u ) { m_uiPCMLog2MinSize = u;      }
1417  UInt getPCMLog2MinSize  ()         { return  m_uiPCMLog2MinSize;  }
1418  Void setBitsForPOC  ( UInt u ) { m_uiBitsForPOC = u;      }
1419  UInt getBitsForPOC  ()         { return m_uiBitsForPOC;   }
1420  Bool getUseAMP() { return m_useAMP; }
1421  Void setUseAMP( Bool b ) { m_useAMP = b; }
1422  Void setQuadtreeTULog2MaxSize( UInt u ) { m_uiQuadtreeTULog2MaxSize = u;    }
1423  UInt getQuadtreeTULog2MaxSize()         { return m_uiQuadtreeTULog2MaxSize; }
1424  Void setQuadtreeTULog2MinSize( UInt u ) { m_uiQuadtreeTULog2MinSize = u;    }
1425  UInt getQuadtreeTULog2MinSize()         { return m_uiQuadtreeTULog2MinSize; }
1426  Void setQuadtreeTUMaxDepthInter( UInt u ) { m_uiQuadtreeTUMaxDepthInter = u;    }
1427  Void setQuadtreeTUMaxDepthIntra( UInt u ) { m_uiQuadtreeTUMaxDepthIntra = u;    }
1428  UInt getQuadtreeTUMaxDepthInter()         { return m_uiQuadtreeTUMaxDepthInter; }
1429  UInt getQuadtreeTUMaxDepthIntra()         { return m_uiQuadtreeTUMaxDepthIntra; }
1430  Void setNumReorderPics(Int i, UInt tlayer)              { m_numReorderPics[tlayer] = i;    }
1431  Int  getNumReorderPics(UInt tlayer)                     { return m_numReorderPics[tlayer]; }
1432  Void         createRPSList( Int numRPS );
1433  TComRPSList* getRPSList()                      { return &m_RPSList;          }
1434  Bool      getLongTermRefsPresent()         { return m_bLongTermRefsPresent; }
1435  Void      setLongTermRefsPresent(Bool b)   { m_bLongTermRefsPresent=b;      }
1436  Bool      getTMVPFlagsPresent()         { return m_TMVPFlagsPresent; }
1437  Void      setTMVPFlagsPresent(Bool b)   { m_TMVPFlagsPresent=b;      } 
1438  // physical transform
1439  Void setMaxTrSize   ( UInt u ) { m_uiMaxTrSize = u;       }
1440  UInt getMaxTrSize   ()         { return  m_uiMaxTrSize;   }
1441 
1442  // Tool list
1443  Bool getUseLossless ()         { return m_useLossless; }
1444  Void setUseLossless ( Bool b ) { m_useLossless  = b; }
1445 
1446  // AMP accuracy
1447  Int       getAMPAcc   ( UInt uiDepth ) { return m_iAMPAcc[uiDepth]; }
1448  Void      setAMPAcc   ( UInt uiDepth, Int iAccu ) { assert( uiDepth < g_uiMaxCUDepth);  m_iAMPAcc[uiDepth] = iAccu; }
1449
1450  // Bit-depth
1451  Int      getBitDepthY() { return m_bitDepthY; }
1452  Void     setBitDepthY(Int u) { m_bitDepthY = u; }
1453  Int      getBitDepthC() { return m_bitDepthC; }
1454  Void     setBitDepthC(Int u) { m_bitDepthC = u; }
1455  Int       getQpBDOffsetY  ()             { return m_qpBDOffsetY;   }
1456  Void      setQpBDOffsetY  ( Int value  ) { m_qpBDOffsetY = value;  }
1457  Int       getQpBDOffsetC  ()             { return m_qpBDOffsetC;   }
1458  Void      setQpBDOffsetC  ( Int value  ) { m_qpBDOffsetC = value;  }
1459  Void setUseSAO                  (Bool bVal)  {m_bUseSAO = bVal;}
1460  Bool getUseSAO                  ()           {return m_bUseSAO;}
1461
1462  UInt      getMaxTLayers()                           { return m_uiMaxTLayers; }
1463  Void      setMaxTLayers( UInt uiMaxTLayers )        { assert( uiMaxTLayers <= MAX_TLAYER ); m_uiMaxTLayers = uiMaxTLayers; }
1464
1465  Bool      getTemporalIdNestingFlag()                { return m_bTemporalIdNestingFlag; }
1466  Void      setTemporalIdNestingFlag( Bool bValue )   { m_bTemporalIdNestingFlag = bValue; }
1467  UInt      getPCMBitDepthLuma     ()         { return m_uiPCMBitDepthLuma;     }
1468  Void      setPCMBitDepthLuma     ( UInt u ) { m_uiPCMBitDepthLuma = u;        }
1469  UInt      getPCMBitDepthChroma   ()         { return m_uiPCMBitDepthChroma;   }
1470  Void      setPCMBitDepthChroma   ( UInt u ) { m_uiPCMBitDepthChroma = u;      }
1471  Void      setPCMFilterDisableFlag     ( Bool   bValue  )    { m_bPCMFilterDisableFlag = bValue; }
1472  Bool      getPCMFilterDisableFlag     ()                    { return m_bPCMFilterDisableFlag;   } 
1473
1474  Bool getScalingListFlag       ()         { return m_scalingListEnabledFlag;     }
1475  Void setScalingListFlag       ( Bool b ) { m_scalingListEnabledFlag  = b;       }
1476  Bool getScalingListPresentFlag()         { return m_scalingListPresentFlag;     }
1477  Void setScalingListPresentFlag( Bool b ) { m_scalingListPresentFlag  = b;       }
1478
1479#if SCALINGLIST_INFERRING
1480  Void setScalingList( TComScalingList *scalingList ) { m_scalingList = scalingList; }
1481#else
1482  Void setScalingList      ( TComScalingList *scalingList);
1483#endif
1484  TComScalingList* getScalingList ()       { return m_scalingList; }               //!< get ScalingList class pointer in SPS
1485
1486  UInt getMaxDecPicBuffering  (UInt tlayer)            { return m_uiMaxDecPicBuffering[tlayer]; }
1487  Void setMaxDecPicBuffering  ( UInt ui, UInt tlayer ) { m_uiMaxDecPicBuffering[tlayer] = ui;   }
1488  UInt getMaxLatencyIncrease  (UInt tlayer)            { return m_uiMaxLatencyIncrease[tlayer];   }
1489  Void setMaxLatencyIncrease  ( UInt ui , UInt tlayer) { m_uiMaxLatencyIncrease[tlayer] = ui;      }
1490
1491  Void setUseStrongIntraSmoothing (Bool bVal)  {m_useStrongIntraSmoothing = bVal;}
1492  Bool getUseStrongIntraSmoothing ()           {return m_useStrongIntraSmoothing;}
1493
1494  Bool getVuiParametersPresentFlag() { return m_vuiParametersPresentFlag; }
1495  Void setVuiParametersPresentFlag(Bool b) { m_vuiParametersPresentFlag = b; }
1496  TComVUI* getVuiParameters() { return &m_vuiParameters; }
1497  Void setHrdParameters( UInt frameRate, UInt numDU, UInt bitRate, Bool randomAccess );
1498
1499  TComPTL* getPTL()     { return &m_pcPTL; }
1500
1501#if SVC_EXTENSION
1502#if M0463_VUI_EXT_ILP_REF
1503  Void setInterViewMvVertConstraintFlag(Bool val) { m_interViewMvVertConstraintFlag = val; }
1504  Bool getInterViewMvVertConstraintFlag()         { return m_interViewMvVertConstraintFlag;}
1505
1506  ////  sps_extension_vui_parameters( )
1507  Void setNumIlpRestrictedRefLayers   ( Int val )        { m_numIlpRestrictedRefLayers         = val;}
1508  Int  getNumIlpRestrictedRefLayers   ( )                { return m_numIlpRestrictedRefLayers        ;}
1509
1510  Void setMinSpatialSegmentOffsetPlus1( Int i, Int val ) { m_minSpatialSegmentOffsetPlus1[ i ] = val;}
1511  Int  getMinSpatialSegmentOffsetPlus1( Int i )          { return m_minSpatialSegmentOffsetPlus1[ i ];}
1512
1513  Void setCtuBasedOffsetEnabledFlag   ( Int i, Bool flag ) { m_ctuBasedOffsetEnabledFlag   [ i ] = flag;}
1514  Bool getCtuBasedOffsetEnabledFlag   ( Int i )            { return m_ctuBasedOffsetEnabledFlag   [ i ];}
1515
1516  Void setMinHorizontalCtuOffsetPlus1 ( Int i, Int val )   { m_minHorizontalCtuOffsetPlus1 [ i ] = val;}
1517  Int  getMinHorizontalCtuOffsetPlus1 ( Int i )            { return m_minHorizontalCtuOffsetPlus1 [ i ];}
1518#endif
1519  Void     setLayerId(UInt layerId) { m_layerId = layerId; }
1520  UInt     getLayerId() { return m_layerId; }
1521#if REF_IDX_MFM
1522#if !M0457_COL_PICTURE_SIGNALING
1523  Void     setMFMEnabledFlag(Bool flag) {m_bMFMEnabledFlag = flag;}
1524  Bool     getMFMEnabledFlag()          {return m_bMFMEnabledFlag;}
1525#endif
1526#endif
1527  UInt     getNumScaledRefLayerOffsets()  { return m_numScaledRefLayerOffsets; }
1528  Void     setNumScaledRefLayerOffsets(Int x)  { m_numScaledRefLayerOffsets = x; }
1529#if O0098_SCALED_REF_LAYER_ID
1530  UInt     getScaledRefLayerId(Int x)          { return m_scaledRefLayerId[x]; }
1531  Void     setScaledRefLayerId(Int x, UInt id) { m_scaledRefLayerId[x] = id; }
1532  Window&  getScaledRefLayerWindowForLayer( Int layerId );
1533#endif
1534  Window&  getScaledRefLayerWindow( Int x )   { return m_scaledRefLayerWindow[x]; }
1535#if REPN_FORMAT_IN_VPS
1536  Bool     getUpdateRepFormatFlag()       { return m_updateRepFormatFlag; }
1537  Void     setUpdateRepFormatFlag(Bool x) { m_updateRepFormatFlag = x;    }
1538#if O0096_REP_FORMAT_INDEX
1539  Int      getUpdateRepFormatIndex()      { return m_updateRepFormatIndex; }
1540  Void     setUpdateRepFormatIndex(UInt index)  { m_updateRepFormatIndex = index; }
1541#endif
1542#endif
1543#if SCALINGLIST_INFERRING
1544  Bool     getInferScalingListFlag()  { return m_inferScalingListFlag;  }
1545  UInt     getScalingListRefLayerId() { return m_scalingListRefLayerId; }
1546  Void     setInferScalingListFlag( Bool flag )     { m_inferScalingListFlag = flag;     }
1547  Void     setScalingListRefLayerId( UInt layerId ) { m_scalingListRefLayerId = layerId; }
1548#endif
1549#endif //SVC_EXTENSION
1550};
1551
1552/// Reference Picture Lists class
1553class TComRefPicListModification
1554{
1555private:
1556  UInt      m_bRefPicListModificationFlagL0; 
1557  UInt      m_bRefPicListModificationFlagL1; 
1558  UInt      m_RefPicSetIdxL0[32];
1559  UInt      m_RefPicSetIdxL1[32];
1560   
1561public:
1562  TComRefPicListModification();
1563  virtual ~TComRefPicListModification();
1564 
1565  Void  create                    ();
1566  Void  destroy                   ();
1567
1568  Bool       getRefPicListModificationFlagL0() { return m_bRefPicListModificationFlagL0; }
1569  Void       setRefPicListModificationFlagL0(Bool flag) { m_bRefPicListModificationFlagL0 = flag; }
1570  Bool       getRefPicListModificationFlagL1() { return m_bRefPicListModificationFlagL1; }
1571  Void       setRefPicListModificationFlagL1(Bool flag) { m_bRefPicListModificationFlagL1 = flag; }
1572  Void       setRefPicSetIdxL0(UInt idx, UInt refPicSetIdx) { m_RefPicSetIdxL0[idx] = refPicSetIdx; }
1573  UInt       getRefPicSetIdxL0(UInt idx) { return m_RefPicSetIdxL0[idx]; }
1574  Void       setRefPicSetIdxL1(UInt idx, UInt refPicSetIdx) { m_RefPicSetIdxL1[idx] = refPicSetIdx; }
1575  UInt       getRefPicSetIdxL1(UInt idx) { return m_RefPicSetIdxL1[idx]; }
1576};
1577
1578/// PPS class
1579class TComPPS
1580{
1581private:
1582  Int         m_PPSId;                    // pic_parameter_set_id
1583  Int         m_SPSId;                    // seq_parameter_set_id
1584  Int         m_picInitQPMinus26;
1585  Bool        m_useDQP;
1586  Bool        m_bConstrainedIntraPred;    // constrained_intra_pred_flag
1587  Bool        m_bSliceChromaQpFlag;       // slicelevel_chroma_qp_flag
1588
1589  // access channel
1590  TComSPS*    m_pcSPS;
1591  UInt        m_uiMaxCuDQPDepth;
1592  UInt        m_uiMinCuDQPSize;
1593
1594  Int         m_chromaCbQpOffset;
1595  Int         m_chromaCrQpOffset;
1596
1597  UInt        m_numRefIdxL0DefaultActive;
1598  UInt        m_numRefIdxL1DefaultActive;
1599
1600  Bool        m_bUseWeightPred;           // Use of Weighting Prediction (P_SLICE)
1601  Bool        m_useWeightedBiPred;        // Use of Weighting Bi-Prediction (B_SLICE)
1602  Bool        m_OutputFlagPresentFlag;   // Indicates the presence of output_flag in slice header
1603
1604  Bool        m_TransquantBypassEnableFlag; // Indicates presence of cu_transquant_bypass_flag in CUs.
1605  Bool        m_useTransformSkip;
1606  Bool        m_dependentSliceSegmentsEnabledFlag;     //!< Indicates the presence of dependent slices
1607  Bool        m_tilesEnabledFlag;              //!< Indicates the presence of tiles
1608  Bool        m_entropyCodingSyncEnabledFlag;  //!< Indicates the presence of wavefronts
1609 
1610  Bool     m_loopFilterAcrossTilesEnabledFlag;
1611  Int      m_uniformSpacingFlag;
1612  Int      m_iNumColumnsMinus1;
1613  UInt*    m_puiColumnWidth;
1614  Int      m_iNumRowsMinus1;
1615  UInt*    m_puiRowHeight;
1616
1617  Int      m_iNumSubstreams;
1618
1619  Int      m_signHideFlag;
1620
1621  Bool     m_cabacInitPresentFlag;
1622  UInt     m_encCABACTableIdx;           // Used to transmit table selection across slices
1623
1624  Bool     m_sliceHeaderExtensionPresentFlag;
1625  Bool     m_loopFilterAcrossSlicesEnabledFlag;
1626  Bool     m_deblockingFilterControlPresentFlag;
1627  Bool     m_deblockingFilterOverrideEnabledFlag;
1628  Bool     m_picDisableDeblockingFilterFlag;
1629  Int      m_deblockingFilterBetaOffsetDiv2;    //< beta offset for deblocking filter
1630  Int      m_deblockingFilterTcOffsetDiv2;      //< tc offset for deblocking filter
1631  Bool     m_scalingListPresentFlag;
1632  TComScalingList*     m_scalingList;   //!< ScalingList class pointer
1633  Bool m_listsModificationPresentFlag;
1634  UInt m_log2ParallelMergeLevelMinus2;
1635  Int m_numExtraSliceHeaderBits;
1636
1637#if SVC_EXTENSION
1638#if SCALINGLIST_INFERRING
1639  UInt     m_layerId;
1640  Bool     m_inferScalingListFlag;
1641  UInt     m_scalingListRefLayerId;
1642#endif
1643#endif
1644
1645public:
1646  TComPPS();
1647  virtual ~TComPPS();
1648 
1649  Int       getPPSId ()      { return m_PPSId; }
1650  Void      setPPSId (Int i) { m_PPSId = i; }
1651  Int       getSPSId ()      { return m_SPSId; }
1652  Void      setSPSId (Int i) { m_SPSId = i; }
1653 
1654  Int       getPicInitQPMinus26 ()         { return  m_picInitQPMinus26; }
1655  Void      setPicInitQPMinus26 ( Int i )  { m_picInitQPMinus26 = i;     }
1656  Bool      getUseDQP ()                   { return m_useDQP;        }
1657  Void      setUseDQP ( Bool b )           { m_useDQP   = b;         }
1658  Bool      getConstrainedIntraPred ()         { return  m_bConstrainedIntraPred; }
1659  Void      setConstrainedIntraPred ( Bool b ) { m_bConstrainedIntraPred = b;     }
1660  Bool      getSliceChromaQpFlag ()         { return  m_bSliceChromaQpFlag; }
1661  Void      setSliceChromaQpFlag ( Bool b ) { m_bSliceChromaQpFlag = b;     }
1662
1663  Void      setSPS              ( TComSPS* pcSPS ) { m_pcSPS = pcSPS; }
1664  TComSPS*  getSPS              ()         { return m_pcSPS;          }
1665  Void      setMaxCuDQPDepth    ( UInt u ) { m_uiMaxCuDQPDepth = u;   }
1666  UInt      getMaxCuDQPDepth    ()         { return m_uiMaxCuDQPDepth;}
1667  Void      setMinCuDQPSize     ( UInt u ) { m_uiMinCuDQPSize = u;    }
1668  UInt      getMinCuDQPSize     ()         { return m_uiMinCuDQPSize; }
1669
1670  Void      setChromaCbQpOffset( Int i ) { m_chromaCbQpOffset = i;    }
1671  Int       getChromaCbQpOffset()        { return m_chromaCbQpOffset; }
1672  Void      setChromaCrQpOffset( Int i ) { m_chromaCrQpOffset = i;    }
1673  Int       getChromaCrQpOffset()        { return m_chromaCrQpOffset; }
1674
1675  Void      setNumRefIdxL0DefaultActive(UInt ui)    { m_numRefIdxL0DefaultActive=ui;     }
1676  UInt      getNumRefIdxL0DefaultActive()           { return m_numRefIdxL0DefaultActive; }
1677  Void      setNumRefIdxL1DefaultActive(UInt ui)    { m_numRefIdxL1DefaultActive=ui;     }
1678  UInt      getNumRefIdxL1DefaultActive()           { return m_numRefIdxL1DefaultActive; }
1679
1680  Bool getUseWP                     ()          { return m_bUseWeightPred;  }
1681  Bool getWPBiPred                  ()          { return m_useWeightedBiPred;     }
1682  Void setUseWP                     ( Bool b )  { m_bUseWeightPred = b;     }
1683  Void setWPBiPred                  ( Bool b )  { m_useWeightedBiPred = b;  }
1684  Void      setOutputFlagPresentFlag( Bool b )  { m_OutputFlagPresentFlag = b;    }
1685  Bool      getOutputFlagPresentFlag()          { return m_OutputFlagPresentFlag; }
1686  Void      setTransquantBypassEnableFlag( Bool b ) { m_TransquantBypassEnableFlag = b; }
1687  Bool      getTransquantBypassEnableFlag()         { return m_TransquantBypassEnableFlag; }
1688
1689  Bool      getUseTransformSkip       ()         { return m_useTransformSkip;     }
1690  Void      setUseTransformSkip       ( Bool b ) { m_useTransformSkip  = b;       }
1691
1692  Void    setLoopFilterAcrossTilesEnabledFlag  (Bool b)    { m_loopFilterAcrossTilesEnabledFlag = b; }
1693  Bool    getLoopFilterAcrossTilesEnabledFlag  ()          { return m_loopFilterAcrossTilesEnabledFlag;   }
1694  Bool    getDependentSliceSegmentsEnabledFlag() const     { return m_dependentSliceSegmentsEnabledFlag; }
1695  Void    setDependentSliceSegmentsEnabledFlag(Bool val)   { m_dependentSliceSegmentsEnabledFlag = val; }
1696  Bool    getTilesEnabledFlag() const                      { return m_tilesEnabledFlag; }
1697  Void    setTilesEnabledFlag(Bool val)                    { m_tilesEnabledFlag = val; }
1698  Bool    getEntropyCodingSyncEnabledFlag() const          { return m_entropyCodingSyncEnabledFlag; }
1699  Void    setEntropyCodingSyncEnabledFlag(Bool val)        { m_entropyCodingSyncEnabledFlag = val; }
1700  Void     setUniformSpacingFlag            ( Bool b )          { m_uniformSpacingFlag = b; }
1701  Bool     getUniformSpacingFlag            ()                  { return m_uniformSpacingFlag; }
1702  Void     setNumColumnsMinus1              ( Int i )           { m_iNumColumnsMinus1 = i; }
1703  Int      getNumColumnsMinus1              ()                  { return m_iNumColumnsMinus1; }
1704  Void     setColumnWidth ( UInt* columnWidth )
1705  {
1706    if( m_uniformSpacingFlag == 0 && m_iNumColumnsMinus1 > 0 )
1707    {
1708      m_puiColumnWidth = new UInt[ m_iNumColumnsMinus1 ];
1709
1710      for(Int i=0; i<m_iNumColumnsMinus1; i++)
1711      {
1712        m_puiColumnWidth[i] = columnWidth[i];
1713      }
1714    }
1715  }
1716  UInt     getColumnWidth  (UInt columnIdx) { return *( m_puiColumnWidth + columnIdx ); }
1717  Void     setNumRowsMinus1( Int i )        { m_iNumRowsMinus1 = i; }
1718  Int      getNumRowsMinus1()               { return m_iNumRowsMinus1; }
1719  Void     setRowHeight    ( UInt* rowHeight )
1720  {
1721    if( m_uniformSpacingFlag == 0 && m_iNumRowsMinus1 > 0 )
1722    {
1723      m_puiRowHeight = new UInt[ m_iNumRowsMinus1 ];
1724
1725      for(Int i=0; i<m_iNumRowsMinus1; i++)
1726      {
1727        m_puiRowHeight[i] = rowHeight[i];
1728      }
1729    }
1730  }
1731  UInt     getRowHeight           (UInt rowIdx)    { return *( m_puiRowHeight + rowIdx ); }
1732  Void     setNumSubstreams(Int iNumSubstreams)               { m_iNumSubstreams = iNumSubstreams; }
1733  Int      getNumSubstreams()                                 { return m_iNumSubstreams; }
1734
1735  Void      setSignHideFlag( Int signHideFlag ) { m_signHideFlag = signHideFlag; }
1736  Int       getSignHideFlag()                    { return m_signHideFlag; }
1737
1738  Void     setCabacInitPresentFlag( Bool flag )     { m_cabacInitPresentFlag = flag;    }
1739  Void     setEncCABACTableIdx( Int idx )           { m_encCABACTableIdx = idx;         }
1740  Bool     getCabacInitPresentFlag()                { return m_cabacInitPresentFlag;    }
1741  UInt     getEncCABACTableIdx()                    { return m_encCABACTableIdx;        }
1742  Void     setDeblockingFilterControlPresentFlag( Bool val )  { m_deblockingFilterControlPresentFlag = val; }
1743  Bool     getDeblockingFilterControlPresentFlag()            { return m_deblockingFilterControlPresentFlag; }
1744  Void     setDeblockingFilterOverrideEnabledFlag( Bool val ) { m_deblockingFilterOverrideEnabledFlag = val; }
1745  Bool     getDeblockingFilterOverrideEnabledFlag()           { return m_deblockingFilterOverrideEnabledFlag; }
1746  Void     setPicDisableDeblockingFilterFlag(Bool val)        { m_picDisableDeblockingFilterFlag = val; }       //!< set offset for deblocking filter disabled
1747  Bool     getPicDisableDeblockingFilterFlag()                { return m_picDisableDeblockingFilterFlag; }      //!< get offset for deblocking filter disabled
1748  Void     setDeblockingFilterBetaOffsetDiv2(Int val)         { m_deblockingFilterBetaOffsetDiv2 = val; }       //!< set beta offset for deblocking filter
1749  Int      getDeblockingFilterBetaOffsetDiv2()                { return m_deblockingFilterBetaOffsetDiv2; }      //!< get beta offset for deblocking filter
1750  Void     setDeblockingFilterTcOffsetDiv2(Int val)           { m_deblockingFilterTcOffsetDiv2 = val; }               //!< set tc offset for deblocking filter
1751  Int      getDeblockingFilterTcOffsetDiv2()                  { return m_deblockingFilterTcOffsetDiv2; }              //!< get tc offset for deblocking filter
1752  Bool     getScalingListPresentFlag()         { return m_scalingListPresentFlag;     }
1753  Void     setScalingListPresentFlag( Bool b ) { m_scalingListPresentFlag  = b;       }
1754
1755#if SCALINGLIST_INFERRING
1756  UInt     getLayerId() { return m_layerId; }
1757  Void     setLayerId( UInt layerId ) { m_layerId = layerId;            }
1758  Bool     getInferScalingListFlag()  { return m_inferScalingListFlag;  }
1759  UInt     getScalingListRefLayerId() { return m_scalingListRefLayerId; }
1760  Void     setInferScalingListFlag( Bool flag )     { m_inferScalingListFlag = flag;     }
1761  Void     setScalingListRefLayerId( UInt layerId ) { m_scalingListRefLayerId = layerId; }
1762#endif
1763
1764#if SCALINGLIST_INFERRING
1765  Void     setScalingList( TComScalingList *scalingList ) { m_scalingList = scalingList; }
1766#else
1767  Void     setScalingList      ( TComScalingList *scalingList);
1768#endif
1769  TComScalingList* getScalingList ()          { return m_scalingList; }         //!< get ScalingList class pointer in PPS
1770  Bool getListsModificationPresentFlag ()          { return m_listsModificationPresentFlag; }
1771  Void setListsModificationPresentFlag ( Bool b )  { m_listsModificationPresentFlag = b;    }
1772  UInt getLog2ParallelMergeLevelMinus2      ()                    { return m_log2ParallelMergeLevelMinus2; }
1773  Void setLog2ParallelMergeLevelMinus2      (UInt mrgLevel)       { m_log2ParallelMergeLevelMinus2 = mrgLevel; }
1774  Int getNumExtraSliceHeaderBits() { return m_numExtraSliceHeaderBits; }
1775  Void setNumExtraSliceHeaderBits(Int i) { m_numExtraSliceHeaderBits = i; }
1776  Void      setLoopFilterAcrossSlicesEnabledFlag ( Bool   bValue  )    { m_loopFilterAcrossSlicesEnabledFlag = bValue; }
1777  Bool      getLoopFilterAcrossSlicesEnabledFlag ()                    { return m_loopFilterAcrossSlicesEnabledFlag;   } 
1778  Bool getSliceHeaderExtensionPresentFlag   ()                    { return m_sliceHeaderExtensionPresentFlag; }
1779  Void setSliceHeaderExtensionPresentFlag   (Bool val)            { m_sliceHeaderExtensionPresentFlag = val; }
1780};
1781
1782typedef struct
1783{
1784  // Explicit weighted prediction parameters parsed in slice header,
1785  // or Implicit weighted prediction parameters (8 bits depth values).
1786  Bool        bPresentFlag;
1787  UInt        uiLog2WeightDenom;
1788  Int         iWeight;
1789  Int         iOffset;
1790
1791  // Weighted prediction scaling values built from above parameters (bitdepth scaled):
1792  Int         w, o, offset, shift, round;
1793} wpScalingParam;
1794
1795typedef struct
1796{
1797  Int64 iAC;
1798  Int64 iDC;
1799#if O0194_WEIGHTED_PREDICTION_CGS
1800  Int iSamples;
1801#endif
1802} wpACDCParam;
1803
1804/// slice header class
1805class TComSlice
1806{
1807 
1808private:
1809  //  Bitstream writing
1810  Bool       m_saoEnabledFlag;
1811  Bool       m_saoEnabledFlagChroma;      ///< SAO Cb&Cr enabled flag
1812  Int         m_iPPSId;               ///< picture parameter set ID
1813  Bool        m_PicOutputFlag;        ///< pic_output_flag
1814  Int         m_iPOC;
1815  Int         m_iLastIDR;
1816  Int         m_iAssociatedIRAP;
1817  NalUnitType m_iAssociatedIRAPType;
1818  static Int  m_prevTid0POC;
1819  TComReferencePictureSet *m_pcRPS;
1820  TComReferencePictureSet m_LocalRPS;
1821  Int         m_iBDidx; 
1822  TComRefPicListModification m_RefPicListModification;
1823  NalUnitType m_eNalUnitType;         ///< Nal unit type for the slice
1824  SliceType   m_eSliceType;
1825  Int         m_iSliceQp;
1826  Bool        m_dependentSliceSegmentFlag;
1827#if ADAPTIVE_QP_SELECTION
1828  Int         m_iSliceQpBase;
1829#endif
1830  Bool        m_deblockingFilterDisable;
1831  Bool        m_deblockingFilterOverrideFlag;      //< offsets for deblocking filter inherit from PPS
1832  Int         m_deblockingFilterBetaOffsetDiv2;    //< beta offset for deblocking filter
1833  Int         m_deblockingFilterTcOffsetDiv2;      //< tc offset for deblocking filter
1834  Int         m_list1IdxToList0Idx[MAX_NUM_REF];
1835  Int         m_aiNumRefIdx   [2];    //  for multiple reference of current slice
1836
1837  Bool        m_bCheckLDC;
1838
1839  //  Data
1840  Int         m_iSliceQpDelta;
1841  Int         m_iSliceQpDeltaCb;
1842  Int         m_iSliceQpDeltaCr;
1843  TComPic*    m_apcRefPicList [2][MAX_NUM_REF+1];
1844  Int         m_aiRefPOCList  [2][MAX_NUM_REF+1];
1845  Bool        m_bIsUsedAsLongTerm[2][MAX_NUM_REF+1];
1846  Int         m_iDepth;
1847 
1848  // referenced slice?
1849  Bool        m_bRefenced;
1850
1851  // access channel
1852  TComVPS*    m_pcVPS;
1853  TComSPS*    m_pcSPS;
1854  TComPPS*    m_pcPPS;
1855  TComPic*    m_pcPic;
1856#if ADAPTIVE_QP_SELECTION
1857  TComTrQuant* m_pcTrQuant;
1858#endif 
1859  UInt        m_colFromL0Flag;  // collocated picture from List0 flag
1860 
1861  UInt        m_colRefIdx;
1862  UInt        m_maxNumMergeCand;
1863
1864  Double      m_lambdas[3];
1865
1866  Bool        m_abEqualRef  [2][MAX_NUM_REF][MAX_NUM_REF];
1867  UInt        m_uiTLayer;
1868  Bool        m_bTLayerSwitchingFlag;
1869
1870  UInt        m_sliceMode;
1871  UInt        m_sliceArgument;
1872  UInt        m_sliceCurStartCUAddr;
1873  UInt        m_sliceCurEndCUAddr;
1874  UInt        m_sliceIdx;
1875  UInt        m_sliceSegmentMode;
1876  UInt        m_sliceSegmentArgument;
1877  UInt        m_sliceSegmentCurStartCUAddr;
1878  UInt        m_sliceSegmentCurEndCUAddr;
1879  Bool        m_nextSlice;
1880  Bool        m_nextSliceSegment;
1881  UInt        m_sliceBits;
1882  UInt        m_sliceSegmentBits;
1883  Bool        m_bFinalized;
1884
1885  wpScalingParam  m_weightPredTable[2][MAX_NUM_REF][3]; // [REF_PIC_LIST_0 or REF_PIC_LIST_1][refIdx][0:Y, 1:U, 2:V]
1886  wpACDCParam    m_weightACDCParam[3];                 // [0:Y, 1:U, 2:V]
1887
1888  std::vector<UInt> m_tileByteLocation;
1889  UInt        m_uiTileOffstForMultES;
1890
1891  UInt*       m_puiSubstreamSizes;
1892  TComScalingList*     m_scalingList;                 //!< pointer of quantization matrix
1893  Bool        m_cabacInitFlag; 
1894
1895  Bool       m_bLMvdL1Zero;
1896  Int         m_numEntryPointOffsets;
1897  Bool       m_temporalLayerNonReferenceFlag;
1898  Bool       m_LFCrossSliceBoundaryFlag;
1899
1900  Bool       m_enableTMVPFlag;
1901
1902#if SVC_EXTENSION
1903  UInt        m_layerId;
1904  TComPic*    m_pcBaseColPic[MAX_LAYERS];
1905  TComPicYuv* m_pcFullPelBaseRec[MAX_LAYERS];
1906#if M0457_COL_PICTURE_SIGNALING
1907  Int         m_numMotionPredRefLayers;
1908#if REF_IDX_MFM
1909  Bool        m_bMFMEnabledFlag;
1910  Int         m_colRefLayerIdx;
1911  Bool        m_altColIndicationFlag;
1912  TComPic*    m_pcIlpPic;
1913#endif
1914#endif
1915
1916#if JCTVC_M0458_INTERLAYER_RPS_SIG
1917  Bool        m_interLayerPredEnabledFlag;
1918  Int         m_activeNumILRRefIdx;        //< Active inter-layer reference pictures
1919  Int         m_interLayerPredLayerIdc  [MAX_VPS_LAYER_ID_PLUS1];
1920#else
1921#if SVC_EXTENSION
1922  Int         m_numILRRefIdx;       //< for inter-layer reference picture ser
1923#endif
1924#endif
1925#if M0457_IL_SAMPLE_PRED_ONLY_FLAG
1926  Int         m_numSamplePredRefLayers;
1927  Bool        m_interLayerSamplePredOnlyFlag;
1928#endif
1929#if POC_RESET_FLAG
1930  Bool        m_bPocResetFlag;
1931  Int         m_pocValueBeforeReset;
1932#endif 
1933  Bool        m_bDiscardableFlag;
1934#if O0149_CROSS_LAYER_BLA_FLAG
1935  Bool        m_bCrossLayerBLAFlag;
1936#endif
1937#endif //SVC_EXTENSION
1938
1939public:
1940  TComSlice();
1941  virtual ~TComSlice(); 
1942#if SVC_EXTENSION
1943  Void      initSlice       ( UInt layerId );
1944#else
1945  Void      initSlice       ();
1946#endif
1947
1948  Void      setVPS          ( TComVPS* pcVPS ) { m_pcVPS = pcVPS; }
1949  TComVPS*  getVPS          () { return m_pcVPS; }
1950  Void      setSPS          ( TComSPS* pcSPS ) { m_pcSPS = pcSPS; }
1951  TComSPS*  getSPS          () { return m_pcSPS; }
1952 
1953  Void      setPPS          ( TComPPS* pcPPS )         { assert(pcPPS!=NULL); m_pcPPS = pcPPS; m_iPPSId = pcPPS->getPPSId(); }
1954  TComPPS*  getPPS          () { return m_pcPPS; }
1955
1956#if ADAPTIVE_QP_SELECTION
1957  Void          setTrQuant          ( TComTrQuant* pcTrQuant ) { m_pcTrQuant = pcTrQuant; }
1958  TComTrQuant*  getTrQuant          () { return m_pcTrQuant; }
1959#endif
1960
1961  Void      setPPSId        ( Int PPSId )         { m_iPPSId = PPSId; }
1962  Int       getPPSId        () { return m_iPPSId; }
1963  Void      setPicOutputFlag( Bool b )         { m_PicOutputFlag = b;    }
1964  Bool      getPicOutputFlag()                 { return m_PicOutputFlag; }
1965  Void      setSaoEnabledFlag(Bool s) {m_saoEnabledFlag =s; }
1966  Bool      getSaoEnabledFlag() { return m_saoEnabledFlag; }
1967  Void      setSaoEnabledFlagChroma(Bool s) {m_saoEnabledFlagChroma =s; }       //!< set SAO Cb&Cr enabled flag
1968  Bool      getSaoEnabledFlagChroma() { return m_saoEnabledFlagChroma; }        //!< get SAO Cb&Cr enabled flag
1969  Void      setRPS          ( TComReferencePictureSet *pcRPS ) { m_pcRPS = pcRPS; }
1970  TComReferencePictureSet*  getRPS          () { return m_pcRPS; }
1971  TComReferencePictureSet*  getLocalRPS     () { return &m_LocalRPS; }
1972
1973  Void      setRPSidx          ( Int iBDidx ) { m_iBDidx = iBDidx; }
1974  Int       getRPSidx          () { return m_iBDidx; }
1975  Int       getPrevTid0POC      ()                        { return  m_prevTid0POC;       }
1976#if PREVTID0_POC_RESET
1977    Void     adjustPrevTid0POC      (Int adj)             { m_prevTid0POC=m_prevTid0POC-adj; }
1978#endif
1979  TComRefPicListModification* getRefPicListModification() { return &m_RefPicListModification; }
1980  Void      setLastIDR(Int iIDRPOC)                       { m_iLastIDR = iIDRPOC; }
1981  Int       getLastIDR()                                  { return m_iLastIDR; }
1982  Void      setAssociatedIRAPPOC(Int iAssociatedIRAPPOC)             { m_iAssociatedIRAP = iAssociatedIRAPPOC; }
1983  Int       getAssociatedIRAPPOC()                        { return m_iAssociatedIRAP; }
1984  Void      setAssociatedIRAPType(NalUnitType associatedIRAPType)    { m_iAssociatedIRAPType = associatedIRAPType; }
1985  NalUnitType getAssociatedIRAPType()                        { return m_iAssociatedIRAPType; }
1986  SliceType getSliceType    ()                          { return  m_eSliceType;         }
1987  Int       getPOC          ()                          { return  m_iPOC;           }
1988  Int       getSliceQp      ()                          { return  m_iSliceQp;           }
1989  Bool      getDependentSliceSegmentFlag() const        { return m_dependentSliceSegmentFlag; }
1990  void      setDependentSliceSegmentFlag(Bool val)      { m_dependentSliceSegmentFlag = val; }
1991#if ADAPTIVE_QP_SELECTION
1992  Int       getSliceQpBase  ()                          { return  m_iSliceQpBase;       }
1993#endif
1994  Int       getSliceQpDelta ()                          { return  m_iSliceQpDelta;      }
1995  Int       getSliceQpDeltaCb ()                          { return  m_iSliceQpDeltaCb;      }
1996  Int       getSliceQpDeltaCr ()                          { return  m_iSliceQpDeltaCr;      }
1997  Bool      getDeblockingFilterDisable()                { return  m_deblockingFilterDisable; }
1998  Bool      getDeblockingFilterOverrideFlag()           { return  m_deblockingFilterOverrideFlag; }
1999  Int       getDeblockingFilterBetaOffsetDiv2()         { return  m_deblockingFilterBetaOffsetDiv2; }
2000  Int       getDeblockingFilterTcOffsetDiv2()           { return  m_deblockingFilterTcOffsetDiv2; }
2001
2002  Int       getNumRefIdx        ( RefPicList e )                { return  m_aiNumRefIdx[e];             }
2003  TComPic*  getPic              ()                              { return  m_pcPic;                      }
2004  TComPic*  getRefPic           ( RefPicList e, Int iRefIdx)    { return  m_apcRefPicList[e][iRefIdx];  }
2005  Int       getRefPOC           ( RefPicList e, Int iRefIdx)    { return  m_aiRefPOCList[e][iRefIdx];   }
2006  Int       getDepth            ()                              { return  m_iDepth;                     }
2007  UInt      getColFromL0Flag    ()                              { return  m_colFromL0Flag;              }
2008  UInt      getColRefIdx        ()                              { return  m_colRefIdx;                  }
2009  Void      checkColRefIdx      (UInt curSliceIdx, TComPic* pic);
2010  Bool      getIsUsedAsLongTerm (Int i, Int j)                  { return m_bIsUsedAsLongTerm[i][j]; }
2011  Void      setIsUsedAsLongTerm (Int i, Int j, Bool value)      { m_bIsUsedAsLongTerm[i][j] = value; }
2012  Bool      getCheckLDC     ()                                  { return m_bCheckLDC; }
2013  Bool      getMvdL1ZeroFlag ()                                  { return m_bLMvdL1Zero;    }
2014  Int       getNumRpsCurrTempList();
2015  Int       getList1IdxToList0Idx ( Int list1Idx )               { return m_list1IdxToList0Idx[list1Idx]; }
2016  Void      setReferenced(Bool b)                               { m_bRefenced = b; }
2017  Bool      isReferenced()                                      { return m_bRefenced; }
2018  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) ); }
2019  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;} }
2020  Void      setNalUnitType      ( NalUnitType e )               { m_eNalUnitType      = e;      }
2021  NalUnitType getNalUnitType    () const                        { return m_eNalUnitType;        }
2022  Bool      getRapPicFlag       (); 
2023  Bool      getIdrPicFlag       ()                              { return getNalUnitType() == NAL_UNIT_CODED_SLICE_IDR_W_RADL || getNalUnitType() == NAL_UNIT_CODED_SLICE_IDR_N_LP; }
2024  Bool      isIRAP              () const                        { return (getNalUnitType() >= 16) && (getNalUnitType() <= 23); } 
2025  Void      checkCRA(TComReferencePictureSet *pReferencePictureSet, Int& pocCRA, NalUnitType& associatedIRAPType, TComList<TComPic *>& rcListPic);
2026#if NO_CLRAS_OUTPUT_FLAG
2027  Void      decodingRefreshMarking(Int& pocCRA, Bool& bRefreshPending, TComList<TComPic*>& rcListPic, Bool noClrasOutputFlag);
2028#else
2029  Void      decodingRefreshMarking(Int& pocCRA, Bool& bRefreshPending, TComList<TComPic*>& rcListPic);
2030#endif
2031  Void      setSliceType        ( SliceType e )                 { m_eSliceType        = e;      }
2032  Void      setSliceQp          ( Int i )                       { m_iSliceQp          = i;      }
2033#if ADAPTIVE_QP_SELECTION
2034  Void      setSliceQpBase      ( Int i )                       { m_iSliceQpBase      = i;      }
2035#endif
2036  Void      setSliceQpDelta     ( Int i )                       { m_iSliceQpDelta     = i;      }
2037  Void      setSliceQpDeltaCb   ( Int i )                       { m_iSliceQpDeltaCb   = i;      }
2038  Void      setSliceQpDeltaCr   ( Int i )                       { m_iSliceQpDeltaCr   = i;      }
2039  Void      setDeblockingFilterDisable( Bool b )                { m_deblockingFilterDisable= b;      }
2040  Void      setDeblockingFilterOverrideFlag( Bool b )           { m_deblockingFilterOverrideFlag = b; }
2041  Void      setDeblockingFilterBetaOffsetDiv2( Int i )          { m_deblockingFilterBetaOffsetDiv2 = i; }
2042  Void      setDeblockingFilterTcOffsetDiv2( Int i )            { m_deblockingFilterTcOffsetDiv2 = i; }
2043 
2044  Void      setRefPic           ( TComPic* p, RefPicList e, Int iRefIdx ) { m_apcRefPicList[e][iRefIdx] = p; }
2045  Void      setRefPOC           ( Int i, RefPicList e, Int iRefIdx ) { m_aiRefPOCList[e][iRefIdx] = i; }
2046  Void      setNumRefIdx        ( RefPicList e, Int i )         { m_aiNumRefIdx[e]    = i;      }
2047  Void      setPic              ( TComPic* p )                  { m_pcPic             = p;      }
2048  Void      setDepth            ( Int iDepth )                  { m_iDepth            = iDepth; }
2049
2050#if SVC_EXTENSION
2051  Void      setRefPicList       ( TComList<TComPic*>& rcListPic, Bool checkNumPocTotalCurr = false, TComPic** ilpPic = NULL );
2052#else
2053  Void      setRefPicList       ( TComList<TComPic*>& rcListPic, Bool checkNumPocTotalCurr = false );
2054#endif
2055  Void      setRefPOCList       ();
2056  Void      setColFromL0Flag    ( UInt colFromL0 ) { m_colFromL0Flag = colFromL0; }
2057  Void      setColRefIdx        ( UInt refIdx) { m_colRefIdx = refIdx; }
2058  Void      setCheckLDC         ( Bool b )                      { m_bCheckLDC = b; }
2059  Void      setMvdL1ZeroFlag     ( Bool b)                       { m_bLMvdL1Zero = b; }
2060
2061  Bool      isIntra         ()                          { return  m_eSliceType == I_SLICE;  }
2062  Bool      isInterB        ()                          { return  m_eSliceType == B_SLICE;  }
2063  Bool      isInterP        ()                          { return  m_eSliceType == P_SLICE;  }
2064 
2065  Void      setLambdas ( const Double lambdas[3] ) { for (Int component = 0; component < 3; component++) m_lambdas[component] = lambdas[component]; }
2066  const Double* getLambdas() const { return m_lambdas; }
2067 
2068  Void      initEqualRef();
2069  Bool      isEqualRef  ( RefPicList e, Int iRefIdx1, Int iRefIdx2 )
2070  {
2071    if (iRefIdx1 < 0 || iRefIdx2 < 0) return false;
2072    return m_abEqualRef[e][iRefIdx1][iRefIdx2];
2073  }
2074 
2075  Void setEqualRef( RefPicList e, Int iRefIdx1, Int iRefIdx2, Bool b)
2076  {
2077    m_abEqualRef[e][iRefIdx1][iRefIdx2] = m_abEqualRef[e][iRefIdx2][iRefIdx1] = b;
2078  }
2079 
2080  static Void      sortPicList         ( TComList<TComPic*>& rcListPic );
2081  Void setList1IdxToList0Idx();
2082
2083  UInt getTLayer             ()                            { return m_uiTLayer;                      }
2084  Void setTLayer             ( UInt uiTLayer )             { m_uiTLayer = uiTLayer;                  }
2085
2086  Void setTLayerInfo( UInt uiTLayer );
2087  Void decodingMarking( TComList<TComPic*>& rcListPic, Int iGOPSIze, Int& iMaxRefPicNum ); 
2088  Void checkLeadingPictureRestrictions( TComList<TComPic*>& rcListPic );
2089  Void applyReferencePictureSet( TComList<TComPic*>& rcListPic, TComReferencePictureSet *RPSList);
2090  Bool isTemporalLayerSwitchingPoint( TComList<TComPic*>& rcListPic );
2091  Bool isStepwiseTemporalLayerSwitchingPointCandidate( TComList<TComPic*>& rcListPic );
2092  Int       checkThatAllRefPicsAreAvailable( TComList<TComPic*>& rcListPic, TComReferencePictureSet *pReferencePictureSet, Bool printErrors, Int pocRandomAccess = 0);
2093  Void      createExplicitReferencePictureSetFromReference( TComList<TComPic*>& rcListPic, TComReferencePictureSet *pReferencePictureSet, Bool isRAP);
2094
2095  Void setMaxNumMergeCand               (UInt val )         { m_maxNumMergeCand = val;                    }
2096  UInt getMaxNumMergeCand               ()                  { return m_maxNumMergeCand;                   }
2097
2098  Void setSliceMode                     ( UInt uiMode )     { m_sliceMode = uiMode;                     }
2099  UInt getSliceMode                     ()                  { return m_sliceMode;                       }
2100  Void setSliceArgument                 ( UInt uiArgument ) { m_sliceArgument = uiArgument;             }
2101  UInt getSliceArgument                 ()                  { return m_sliceArgument;                   }
2102  Void setSliceCurStartCUAddr           ( UInt uiAddr )     { m_sliceCurStartCUAddr = uiAddr;           }
2103  UInt getSliceCurStartCUAddr           ()                  { return m_sliceCurStartCUAddr;             }
2104  Void setSliceCurEndCUAddr             ( UInt uiAddr )     { m_sliceCurEndCUAddr = uiAddr;             }
2105  UInt getSliceCurEndCUAddr             ()                  { return m_sliceCurEndCUAddr;               }
2106  Void setSliceIdx                      ( UInt i)           { m_sliceIdx = i;                           }
2107  UInt getSliceIdx                      ()                  { return  m_sliceIdx;                       }
2108  Void copySliceInfo                    (TComSlice *pcSliceSrc);
2109  Void setSliceSegmentMode              ( UInt uiMode )     { m_sliceSegmentMode = uiMode;              }
2110  UInt getSliceSegmentMode              ()                  { return m_sliceSegmentMode;                }
2111  Void setSliceSegmentArgument          ( UInt uiArgument ) { m_sliceSegmentArgument = uiArgument;      }
2112  UInt getSliceSegmentArgument          ()                  { return m_sliceSegmentArgument;            }
2113  Void setSliceSegmentCurStartCUAddr    ( UInt uiAddr )     { m_sliceSegmentCurStartCUAddr = uiAddr;    }
2114  UInt getSliceSegmentCurStartCUAddr    ()                  { return m_sliceSegmentCurStartCUAddr;      }
2115  Void setSliceSegmentCurEndCUAddr      ( UInt uiAddr )     { m_sliceSegmentCurEndCUAddr = uiAddr;      }
2116  UInt getSliceSegmentCurEndCUAddr      ()                  { return m_sliceSegmentCurEndCUAddr;        }
2117  Void setNextSlice                     ( Bool b )          { m_nextSlice = b;                           }
2118  Bool isNextSlice                      ()                  { return m_nextSlice;                        }
2119  Void setNextSliceSegment              ( Bool b )          { m_nextSliceSegment = b;                    }
2120  Bool isNextSliceSegment               ()                  { return m_nextSliceSegment;                 }
2121  Void setSliceBits                     ( UInt uiVal )      { m_sliceBits = uiVal;                      }
2122  UInt getSliceBits                     ()                  { return m_sliceBits;                       } 
2123  Void setSliceSegmentBits              ( UInt uiVal )      { m_sliceSegmentBits = uiVal;            }
2124  UInt getSliceSegmentBits              ()                  { return m_sliceSegmentBits;             }
2125  Void setFinalized                     ( Bool uiVal )      { m_bFinalized = uiVal;                       }
2126  Bool getFinalized                     ()                  { return m_bFinalized;                        }
2127  Void  setWpScaling    ( wpScalingParam  wp[2][MAX_NUM_REF][3] ) { memcpy(m_weightPredTable, wp, sizeof(wpScalingParam)*2*MAX_NUM_REF*3); }
2128  Void  getWpScaling    ( RefPicList e, Int iRefIdx, wpScalingParam *&wp);
2129
2130  Void  resetWpScaling  ();
2131  Void  initWpScaling   ();
2132  inline Bool applyWP   () { return( (m_eSliceType==P_SLICE && m_pcPPS->getUseWP()) || (m_eSliceType==B_SLICE && m_pcPPS->getWPBiPred()) ); }
2133
2134  Void  setWpAcDcParam  ( wpACDCParam wp[3] ) { memcpy(m_weightACDCParam, wp, sizeof(wpACDCParam)*3); }
2135  Void  getWpAcDcParam  ( wpACDCParam *&wp );
2136  Void  initWpAcDcParam ();
2137 
2138  Void setTileLocationCount             ( UInt cnt )               { return m_tileByteLocation.resize(cnt);    }
2139  UInt getTileLocationCount             ()                         { return (UInt) m_tileByteLocation.size();  }
2140  Void setTileLocation                  ( Int idx, UInt location ) { assert (idx<m_tileByteLocation.size());
2141                                                                     m_tileByteLocation[idx] = location;       }
2142  Void addTileLocation                  ( UInt location )          { m_tileByteLocation.push_back(location);   }
2143  UInt getTileLocation                  ( Int idx )                { return m_tileByteLocation[idx];           }
2144
2145  Void setTileOffstForMultES            (UInt uiOffset )      { m_uiTileOffstForMultES = uiOffset;        }
2146  UInt getTileOffstForMultES            ()                    { return m_uiTileOffstForMultES;            }
2147  Void allocSubstreamSizes              ( UInt uiNumSubstreams );
2148  UInt* getSubstreamSizes               ()                  { return m_puiSubstreamSizes; }
2149  Void  setScalingList              ( TComScalingList* scalingList ) { m_scalingList = scalingList; }
2150  TComScalingList*   getScalingList ()                               { return m_scalingList; }
2151  Void  setDefaultScalingList       ();
2152  Bool  checkDefaultScalingList     ();
2153  Void      setCabacInitFlag  ( Bool val ) { m_cabacInitFlag = val;      }  //!< set CABAC initial flag
2154  Bool      getCabacInitFlag  ()           { return m_cabacInitFlag;     }  //!< get CABAC initial flag
2155  Void      setNumEntryPointOffsets(Int val)  { m_numEntryPointOffsets = val;     }
2156  Int       getNumEntryPointOffsets()         { return m_numEntryPointOffsets;    }
2157  Bool      getTemporalLayerNonReferenceFlag()       { return m_temporalLayerNonReferenceFlag;}
2158  Void      setTemporalLayerNonReferenceFlag(Bool x) { m_temporalLayerNonReferenceFlag = x;}
2159  Void      setLFCrossSliceBoundaryFlag     ( Bool   val )    { m_LFCrossSliceBoundaryFlag = val; }
2160  Bool      getLFCrossSliceBoundaryFlag     ()                { return m_LFCrossSliceBoundaryFlag;} 
2161
2162  Void      setEnableTMVPFlag     ( Bool   b )    { m_enableTMVPFlag = b; }
2163  Bool      getEnableTMVPFlag     ()              { return m_enableTMVPFlag;}
2164
2165#if SVC_EXTENSION
2166  Bool      setBaseColPic       ( TComList<TComPic*>& rcListPic , UInt refLayerIdc );
2167  Void      setBaseColPic       (UInt refLayerIdc, TComPic* p)     { m_pcBaseColPic[refLayerIdc] = p; }
2168  TComPic*  getBaseColPic       (UInt refLayerIdc)                { return m_pcBaseColPic[refLayerIdc]; }
2169  TComPic** getBaseColPic       ()                { return &m_pcBaseColPic[0]; }
2170#if MFM_ENCCONSTRAINT
2171  TComPic*  getBaseColPic( TComList<TComPic*>& rcListPic );
2172#endif
2173
2174  Void      setLayerId (UInt layerId)   { m_layerId = layerId; }
2175  UInt      getLayerId ()               { return m_layerId;    }
2176
2177  Void        setFullPelBaseRec   (UInt refLayerIdc, TComPicYuv* p) { m_pcFullPelBaseRec[refLayerIdc] = p; }
2178  TComPicYuv* getFullPelBaseRec   (UInt refLayerIdc)               { return  m_pcFullPelBaseRec[refLayerIdc];  }
2179
2180#if AVC_SYNTAX
2181  Void      initBaseLayerRPL( TComSlice *pcSlice );
2182#endif
2183
2184  Void      setRefPicListModificationSvc();
2185  Int       getNumILRRefIdx     ( )                     { return  m_pcVPS->getNumDirectRefLayers( m_layerId ); }
2186
2187#if REF_IDX_MFM
2188  Void      setRefPOCListILP(TComPic** ilpPic, TComPic** pcRefPicRL);
2189#endif
2190
2191#if JCTVC_M0458_INTERLAYER_RPS_SIG
2192  Int       getActiveNumILRRefIdx     ( )               { return  m_activeNumILRRefIdx; }
2193  Void      setActiveNumILRRefIdx     ( Int i )         { m_activeNumILRRefIdx = i;     } 
2194
2195  Int       getInterLayerPredLayerIdc (UInt layerIdx)                        { return  m_interLayerPredLayerIdc[layerIdx];}
2196  Void      setInterLayerPredLayerIdc (UInt refLayerIdc, UInt layerIdx)      { m_interLayerPredLayerIdc[layerIdx] = refLayerIdc;  }
2197
2198  Void      setInterLayerPredEnabledFlag     ( Bool   val )    { m_interLayerPredEnabledFlag = val; }
2199  Bool      getInterLayerPredEnabledFlag     ()                { return m_interLayerPredEnabledFlag;}
2200#else
2201  Void      setNumILRRefIdx     ( Int i )               { m_numILRRefIdx = i;     }
2202#endif
2203
2204#if M0457_IL_SAMPLE_PRED_ONLY_FLAG
2205  Int       getNumSamplePredRefLayers      ( )          { return  m_numSamplePredRefLayers;       }
2206  Void      setNumSamplePredRefLayers      ( Int i )    { m_numSamplePredRefLayers = i;           }
2207  Bool      getInterLayerSamplePredOnlyFlag( )          { return  m_interLayerSamplePredOnlyFlag; }
2208  Void      setInterLayerSamplePredOnlyFlag( Bool val ) { m_interLayerSamplePredOnlyFlag = val;   }
2209#endif
2210
2211#if M0457_COL_PICTURE_SIGNALING
2212  Void      setNumMotionPredRefLayers(int i)            { m_numMotionPredRefLayers = i; }
2213  Int       getNumMotionPredRefLayers()                 { return m_numMotionPredRefLayers; }
2214#if REF_IDX_MFM
2215  Void      setMFMEnabledFlag(Bool flag)                { m_bMFMEnabledFlag = flag; }
2216  Bool      getMFMEnabledFlag()                         { return m_bMFMEnabledFlag; }
2217#if !REMOVE_COL_PICTURE_SIGNALING
2218  Void      setColRefLayerIdx(Int i)                    { m_colRefLayerIdx = i;     }
2219  Int       getColRefLayerIdx()                         { return m_colRefLayerIdx;  }
2220  Void      setAltColIndicationFlag(Bool i)             { m_altColIndicationFlag = i; }
2221  Bool      getAltColIndicationFlag()                   { return m_altColIndicationFlag; }
2222  Void      setMotionPredIlp(TComPic *ilpPic)           { m_pcIlpPic = ilpPic; }
2223  TComPic*  getMotionPredIlp()                          { return m_pcIlpPic; }
2224#endif
2225#endif
2226#endif
2227
2228  TComPic* getRefPic(TComList<TComPic*>& rcListPic, Int poc) { return xGetRefPic( rcListPic, poc ); } 
2229
2230#if RESTR_CHK
2231  Bool     isRADL() {  return (m_eNalUnitType == NAL_UNIT_CODED_SLICE_RADL_N || m_eNalUnitType == NAL_UNIT_CODED_SLICE_RADL_R); }
2232  Bool     isRASL()   {   return (m_eNalUnitType == NAL_UNIT_CODED_SLICE_RASL_N || m_eNalUnitType == NAL_UNIT_CODED_SLICE_RASL_R); }
2233#endif
2234
2235#if POC_RESET_FLAG
2236  Bool      getPocResetFlag  ()                              { return m_bPocResetFlag;       }
2237  Void      setPocResetFlag  (Bool b)                        { m_bPocResetFlag = b;          }
2238  Int       getPocValueBeforeReset ()                        { return m_pocValueBeforeReset; }
2239  Void      setPocValueBeforeReset (Int x)                   { m_pocValueBeforeReset = x ;   }
2240#endif
2241  Bool      getDiscardableFlag  ()                           { return m_bDiscardableFlag;    }
2242  Void      setDiscardableFlag  (Bool b)                     { m_bDiscardableFlag = b;       }
2243#if O0149_CROSS_LAYER_BLA_FLAG
2244  Bool      getCrossLayerBLAFlag  ()                         { return m_bCrossLayerBLAFlag;  }
2245  Void      setCrossLayerBLAFlag  (Bool b)                   { m_bCrossLayerBLAFlag = b;     }
2246#endif
2247
2248#if RPL_INIT_N0316_N0082
2249  Int       getNumNegativeRpsCurrTempList();
2250#endif
2251
2252#if REPN_FORMAT_IN_VPS
2253  UInt getPicWidthInLumaSamples();
2254  UInt getPicHeightInLumaSamples();
2255#if AUXILIARY_PICTURES
2256  ChromaFormat getChromaFormatIdc();
2257#else
2258  UInt getChromaFormatIdc();
2259#endif
2260  UInt getBitDepthY();
2261  UInt getBitDepthC();
2262  Int  getQpBDOffsetY();
2263  Int  getQpBDOffsetC();
2264#endif
2265
2266  Void setILRPic(TComPic **pcIlpPic);
2267
2268#endif //SVC_EXTENSION
2269protected:
2270  TComPic*  xGetRefPic  (TComList<TComPic*>& rcListPic,
2271                         Int                 poc);
2272  TComPic*  xGetLongTermRefPic(TComList<TComPic*>& rcListPic, Int poc, Bool pocHasMsb);
2273};// END CLASS DEFINITION TComSlice
2274
2275
2276template <class T> class ParameterSetMap
2277{
2278public:
2279  ParameterSetMap(Int maxId)
2280  :m_maxId (maxId)
2281  {}
2282
2283  ~ParameterSetMap()
2284  {
2285    for (typename std::map<Int,T *>::iterator i = m_paramsetMap.begin(); i!= m_paramsetMap.end(); i++)
2286    {
2287      delete (*i).second;
2288    }
2289  }
2290
2291  Void storePS(Int psId, T *ps)
2292  {
2293    assert ( psId < m_maxId );
2294    if ( m_paramsetMap.find(psId) != m_paramsetMap.end() )
2295    {
2296      delete m_paramsetMap[psId];
2297    }
2298    m_paramsetMap[psId] = ps; 
2299  }
2300
2301  Void mergePSList(ParameterSetMap<T> &rPsList)
2302  {
2303    for (typename std::map<Int,T *>::iterator i = rPsList.m_paramsetMap.begin(); i!= rPsList.m_paramsetMap.end(); i++)
2304    {
2305      storePS(i->first, i->second);
2306    }
2307    rPsList.m_paramsetMap.clear();
2308  }
2309
2310
2311  T* getPS(Int psId)
2312  {
2313    return ( m_paramsetMap.find(psId) == m_paramsetMap.end() ) ? NULL : m_paramsetMap[psId];
2314  }
2315
2316  T* getFirstPS()
2317  {
2318    return (m_paramsetMap.begin() == m_paramsetMap.end() ) ? NULL : m_paramsetMap.begin()->second;
2319  }
2320
2321private:
2322  std::map<Int,T *> m_paramsetMap;
2323  Int               m_maxId;
2324};
2325
2326class ParameterSetManager
2327{
2328public:
2329  ParameterSetManager();
2330  virtual ~ParameterSetManager();
2331
2332  //! store sequence parameter set and take ownership of it
2333  Void storeVPS(TComVPS *vps) { m_vpsMap.storePS( vps->getVPSId(), vps); };
2334  //! get pointer to existing video parameter set 
2335  TComVPS* getVPS(Int vpsId)  { return m_vpsMap.getPS(vpsId); };
2336  TComVPS* getFirstVPS()      { return m_vpsMap.getFirstPS(); };
2337 
2338  //! store sequence parameter set and take ownership of it
2339  Void storeSPS(TComSPS *sps) { m_spsMap.storePS( sps->getSPSId(), sps); };
2340  //! get pointer to existing sequence parameter set 
2341  TComSPS* getSPS(Int spsId)  { return m_spsMap.getPS(spsId); };
2342  TComSPS* getFirstSPS()      { return m_spsMap.getFirstPS(); };
2343
2344  //! store picture parameter set and take ownership of it
2345  Void storePPS(TComPPS *pps) { m_ppsMap.storePS( pps->getPPSId(), pps); };
2346  //! get pointer to existing picture parameter set 
2347  TComPPS* getPPS(Int ppsId)  { return m_ppsMap.getPS(ppsId); };
2348  TComPPS* getFirstPPS()      { return m_ppsMap.getFirstPS(); };
2349
2350  //! activate a SPS from a active parameter sets SEI message
2351  //! \returns true, if activation is successful
2352  Bool activateSPSWithSEI(Int SPSId);
2353
2354  //! activate a PPS and depending on isIDR parameter also SPS and VPS
2355  //! \returns true, if activation is successful
2356  Bool activatePPS(Int ppsId, Bool isIRAP);
2357
2358  TComVPS* getActiveVPS(){ return m_vpsMap.getPS(m_activeVPSId); };
2359  TComSPS* getActiveSPS(){ return m_spsMap.getPS(m_activeSPSId); };
2360  TComPPS* getActivePPS(){ return m_ppsMap.getPS(m_activePPSId); };
2361
2362protected:
2363
2364#if SVC_EXTENSION
2365  static ParameterSetMap<TComVPS> m_vpsMap;
2366#else
2367  ParameterSetMap<TComVPS> m_vpsMap;
2368#endif
2369  ParameterSetMap<TComSPS> m_spsMap; 
2370  ParameterSetMap<TComPPS> m_ppsMap;
2371
2372#if SVC_EXTENSION
2373  static Int m_activeVPSId;
2374#else
2375  Int m_activeVPSId;
2376#endif
2377  Int m_activeSPSId;
2378  Int m_activePPSId;
2379};
2380
2381//! \}
2382
2383#endif // __TCOMSLICE__
Note: See TracBrowser for help on using the repository browser.