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