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