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

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

software integration of N0147 changes

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