[5] | 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 |
---|
[1313] | 4 | * granted under this license. |
---|
[5] | 5 | * |
---|
[1313] | 6 | * Copyright (c) 2010-2015, ITU/ISO/IEC |
---|
[5] | 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. |
---|
[56] | 17 | * * Neither the name of the ITU/ISO/IEC nor the names of its contributors may |
---|
[5] | 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 | */ |
---|
[2] | 33 | |
---|
| 34 | /** \file TEncCfg.h |
---|
| 35 | \brief encoder configuration class (header) |
---|
| 36 | */ |
---|
| 37 | |
---|
| 38 | #ifndef __TENCCFG__ |
---|
| 39 | #define __TENCCFG__ |
---|
| 40 | |
---|
| 41 | #if _MSC_VER > 1000 |
---|
| 42 | #pragma once |
---|
| 43 | #endif // _MSC_VER > 1000 |
---|
| 44 | |
---|
[56] | 45 | #include "TLibCommon/CommonDef.h" |
---|
[608] | 46 | #include "TLibCommon/TComSlice.h" |
---|
[2] | 47 | #include <assert.h> |
---|
[1313] | 48 | #if NH_3D |
---|
[608] | 49 | #include "TAppCommon/TAppComCamPara.h" |
---|
| 50 | #include "TLibRenderer/TRenModSetupStrParser.h" |
---|
| 51 | #endif |
---|
[2] | 52 | |
---|
[608] | 53 | struct GOPEntry |
---|
[56] | 54 | { |
---|
| 55 | Int m_POC; |
---|
| 56 | Int m_QPOffset; |
---|
| 57 | Double m_QPFactor; |
---|
[608] | 58 | Int m_tcOffsetDiv2; |
---|
| 59 | Int m_betaOffsetDiv2; |
---|
[56] | 60 | Int m_temporalId; |
---|
| 61 | Bool m_refPic; |
---|
| 62 | Int m_numRefPicsActive; |
---|
| 63 | Char m_sliceType; |
---|
| 64 | Int m_numRefPics; |
---|
| 65 | Int m_referencePics[MAX_NUM_REF_PICS]; |
---|
| 66 | Int m_usedByCurrPic[MAX_NUM_REF_PICS]; |
---|
[608] | 67 | Int m_interRPSPrediction; |
---|
[56] | 68 | Int m_deltaRPS; |
---|
| 69 | Int m_numRefIdc; |
---|
| 70 | Int m_refIdc[MAX_NUM_REF_PICS+1]; |
---|
[1313] | 71 | Bool m_isEncoded; |
---|
| 72 | #if NH_MV |
---|
[608] | 73 | Int m_numActiveRefLayerPics; |
---|
| 74 | Int m_interLayerPredLayerIdc [MAX_NUM_REF_PICS]; |
---|
| 75 | Int m_interViewRefPosL[2][MAX_NUM_REF_PICS]; |
---|
| 76 | #endif |
---|
[1313] | 77 | #if NH_3D |
---|
[1179] | 78 | Bool m_interCompPredFlag; |
---|
| 79 | #endif |
---|
[1313] | 80 | |
---|
| 81 | GOPEntry() |
---|
[56] | 82 | : m_POC(-1) |
---|
[608] | 83 | , m_QPOffset(0) |
---|
| 84 | , m_QPFactor(0) |
---|
| 85 | , m_tcOffsetDiv2(0) |
---|
| 86 | , m_betaOffsetDiv2(0) |
---|
| 87 | , m_temporalId(0) |
---|
| 88 | , m_refPic(false) |
---|
| 89 | , m_numRefPicsActive(0) |
---|
| 90 | , m_sliceType('P') |
---|
| 91 | , m_numRefPics(0) |
---|
| 92 | , m_interRPSPrediction(false) |
---|
| 93 | , m_deltaRPS(0) |
---|
| 94 | , m_numRefIdc(0) |
---|
[1313] | 95 | , m_isEncoded(false) |
---|
| 96 | #if NH_MV |
---|
[608] | 97 | , m_numActiveRefLayerPics(0) |
---|
| 98 | #endif |
---|
[1313] | 99 | #if NH_3D |
---|
[1179] | 100 | , m_interCompPredFlag(false) |
---|
| 101 | #endif |
---|
[1313] | 102 | |
---|
[56] | 103 | { |
---|
| 104 | ::memset( m_referencePics, 0, sizeof(m_referencePics) ); |
---|
| 105 | ::memset( m_usedByCurrPic, 0, sizeof(m_usedByCurrPic) ); |
---|
| 106 | ::memset( m_refIdc, 0, sizeof(m_refIdc) ); |
---|
[1313] | 107 | #if NH_MV |
---|
[608] | 108 | ::memset( m_interLayerPredLayerIdc, 0, sizeof(m_interLayerPredLayerIdc) ); |
---|
| 109 | ::memset( m_interViewRefPosL[0], -1, sizeof(m_interViewRefPosL[0]) ); |
---|
| 110 | ::memset( m_interViewRefPosL[1], -1, sizeof(m_interViewRefPosL[1]) ); |
---|
| 111 | #endif |
---|
[56] | 112 | } |
---|
| 113 | }; |
---|
[2] | 114 | |
---|
[608] | 115 | std::istringstream &operator>>(std::istringstream &in, GOPEntry &entry); //input |
---|
[56] | 116 | //! \ingroup TLibEncoder |
---|
| 117 | //! \{ |
---|
| 118 | |
---|
[2] | 119 | // ==================================================================================================================== |
---|
| 120 | // Class definition |
---|
| 121 | // ==================================================================================================================== |
---|
| 122 | |
---|
| 123 | /// encoder configuration class |
---|
| 124 | class TEncCfg |
---|
| 125 | { |
---|
| 126 | protected: |
---|
| 127 | //==== File I/O ======== |
---|
| 128 | Int m_iFrameRate; |
---|
| 129 | Int m_FrameSkip; |
---|
| 130 | Int m_iSourceWidth; |
---|
| 131 | Int m_iSourceHeight; |
---|
[608] | 132 | Window m_conformanceWindow; |
---|
| 133 | Int m_framesToBeEncoded; |
---|
[56] | 134 | Double m_adLambdaModifier[ MAX_TLAYER ]; |
---|
[2] | 135 | |
---|
[1313] | 136 | Bool m_printMSEBasedSequencePSNR; |
---|
| 137 | Bool m_printFrameMSE; |
---|
| 138 | Bool m_printSequenceMSE; |
---|
| 139 | Bool m_cabacZeroWordPaddingEnabled; |
---|
| 140 | |
---|
[608] | 141 | /* profile & level */ |
---|
| 142 | Profile::Name m_profile; |
---|
| 143 | Level::Tier m_levelTier; |
---|
| 144 | Level::Name m_level; |
---|
| 145 | Bool m_progressiveSourceFlag; |
---|
| 146 | Bool m_interlacedSourceFlag; |
---|
| 147 | Bool m_nonPackedConstraintFlag; |
---|
| 148 | Bool m_frameOnlyConstraintFlag; |
---|
[1313] | 149 | UInt m_bitDepthConstraintValue; |
---|
| 150 | ChromaFormat m_chromaFormatConstraintValue; |
---|
| 151 | Bool m_intraConstraintFlag; |
---|
| 152 | Bool m_onePictureOnlyConstraintFlag; |
---|
| 153 | Bool m_lowerBitRateConstraintFlag; |
---|
[608] | 154 | |
---|
[2] | 155 | //====== Coding Structure ======== |
---|
[56] | 156 | UInt m_uiIntraPeriod; |
---|
[2] | 157 | UInt m_uiDecodingRefreshType; ///< the type of decoding refresh employed for the random access. |
---|
[56] | 158 | Int m_iGOPSize; |
---|
[1313] | 159 | #if NH_MV |
---|
[608] | 160 | GOPEntry m_GOPList[MAX_GOP+1]; |
---|
| 161 | #else |
---|
| 162 | GOPEntry m_GOPList[MAX_GOP]; |
---|
| 163 | #endif |
---|
[56] | 164 | Int m_extraRPSs; |
---|
| 165 | Int m_maxDecPicBuffering[MAX_TLAYER]; |
---|
| 166 | Int m_numReorderPics[MAX_TLAYER]; |
---|
[1313] | 167 | |
---|
[2] | 168 | Int m_iQP; // if (AdaptiveQP == OFF) |
---|
[1313] | 169 | |
---|
[2] | 170 | Int m_aiPad[2]; |
---|
| 171 | |
---|
[1313] | 172 | |
---|
[56] | 173 | Int m_iMaxRefPicNum; ///< this is used to mimic the sliding mechanism used by the decoder |
---|
| 174 | // TODO: We need to have a common sliding mechanism used by both the encoder and decoder |
---|
| 175 | |
---|
| 176 | Int m_maxTempLayer; ///< Max temporal layer |
---|
[1313] | 177 | Bool m_useAMP; |
---|
| 178 | UInt m_maxCUWidth; |
---|
| 179 | UInt m_maxCUHeight; |
---|
| 180 | UInt m_maxTotalCUDepth; |
---|
| 181 | UInt m_log2DiffMaxMinCodingBlockSize; |
---|
| 182 | |
---|
[2] | 183 | //======= Transform ============= |
---|
| 184 | UInt m_uiQuadtreeTULog2MaxSize; |
---|
| 185 | UInt m_uiQuadtreeTULog2MinSize; |
---|
| 186 | UInt m_uiQuadtreeTUMaxDepthInter; |
---|
| 187 | UInt m_uiQuadtreeTUMaxDepthIntra; |
---|
[1313] | 188 | |
---|
[2] | 189 | //====== Loop/Deblock Filter ======== |
---|
| 190 | Bool m_bLoopFilterDisable; |
---|
[608] | 191 | Bool m_loopFilterOffsetInPPS; |
---|
[56] | 192 | Int m_loopFilterBetaOffsetDiv2; |
---|
| 193 | Int m_loopFilterTcOffsetDiv2; |
---|
[608] | 194 | Bool m_DeblockingFilterMetric; |
---|
[2] | 195 | Bool m_bUseSAO; |
---|
[1313] | 196 | Bool m_bTestSAODisableAtPictureLevel; |
---|
| 197 | Double m_saoEncodingRate; // When non-0 SAO early picture termination is enabled for luma and chroma |
---|
| 198 | Double m_saoEncodingRateChroma; // The SAO early picture termination rate to use for chroma (when m_SaoEncodingRate is >0). If <=0, use results for luma. |
---|
[56] | 199 | Int m_maxNumOffsetsPerPic; |
---|
[1313] | 200 | Bool m_saoCtuBoundary; |
---|
| 201 | |
---|
[2] | 202 | //====== Motion search ======== |
---|
[1313] | 203 | Bool m_bDisableIntraPUsInInterSlices; |
---|
[2] | 204 | Int m_iFastSearch; // 0:Full search 1:Diamond 2:PMVFAST |
---|
| 205 | Int m_iSearchRange; // 0:Full frame |
---|
| 206 | Int m_bipredSearchRange; |
---|
[1313] | 207 | Bool m_bClipForBiPredMeEnabled; |
---|
| 208 | Bool m_bFastMEAssumingSmootherMVEnabled; |
---|
| 209 | |
---|
| 210 | #if NH_MV |
---|
[1179] | 211 | Bool m_bUseDisparitySearchRangeRestriction; |
---|
| 212 | Int m_iVerticalDisparitySearchRange; |
---|
| 213 | #endif |
---|
[56] | 214 | //====== Quality control ======== |
---|
[2] | 215 | Int m_iMaxDeltaQP; // Max. absolute delta QP (1:default) |
---|
[56] | 216 | Int m_iMaxCuDQPDepth; // Max. depth for a minimum CuDQP (0:default) |
---|
[1313] | 217 | Int m_diffCuChromaQpOffsetDepth; ///< If negative, then do not apply chroma qp offsets. |
---|
[2] | 218 | |
---|
[608] | 219 | Int m_chromaCbQpOffset; // Chroma Cb QP Offset (0:default) |
---|
| 220 | Int m_chromaCrQpOffset; // Chroma Cr Qp Offset (0:default) |
---|
[1313] | 221 | ChromaFormat m_chromaFormatIDC; |
---|
[56] | 222 | |
---|
| 223 | #if ADAPTIVE_QP_SELECTION |
---|
| 224 | Bool m_bUseAdaptQpSelect; |
---|
| 225 | #endif |
---|
[1313] | 226 | Bool m_extendedPrecisionProcessingFlag; |
---|
| 227 | Bool m_highPrecisionOffsetsEnabledFlag; |
---|
[56] | 228 | Bool m_bUseAdaptiveQP; |
---|
| 229 | Int m_iQPAdaptationRange; |
---|
[1313] | 230 | |
---|
[2] | 231 | //====== Tool list ======== |
---|
[1313] | 232 | Int m_bitDepth[MAX_NUM_CHANNEL_TYPE]; |
---|
[2] | 233 | Bool m_bUseASR; |
---|
| 234 | Bool m_bUseHADME; |
---|
[608] | 235 | Bool m_useRDOQ; |
---|
| 236 | Bool m_useRDOQTS; |
---|
[1313] | 237 | #if T0196_SELECTIVE_RDOQ |
---|
| 238 | Bool m_useSelectiveRDOQ; |
---|
| 239 | #endif |
---|
[608] | 240 | UInt m_rdPenalty; |
---|
[2] | 241 | Bool m_bUseFastEnc; |
---|
[56] | 242 | Bool m_bUseEarlyCU; |
---|
| 243 | Bool m_useFastDecisionForMerge; |
---|
| 244 | Bool m_bUseCbfFastMode; |
---|
[608] | 245 | Bool m_useEarlySkipDetection; |
---|
[1313] | 246 | Bool m_crossComponentPredictionEnabledFlag; |
---|
| 247 | Bool m_reconBasedCrossCPredictionEstimate; |
---|
| 248 | UInt m_log2SaoOffsetScale[MAX_NUM_CHANNEL_TYPE]; |
---|
[608] | 249 | Bool m_useTransformSkip; |
---|
| 250 | Bool m_useTransformSkipFast; |
---|
[1313] | 251 | UInt m_log2MaxTransformSkipBlockSize; |
---|
| 252 | Bool m_transformSkipRotationEnabledFlag; |
---|
| 253 | Bool m_transformSkipContextEnabledFlag; |
---|
| 254 | Bool m_persistentRiceAdaptationEnabledFlag; |
---|
| 255 | Bool m_cabacBypassAlignmentEnabledFlag; |
---|
| 256 | Bool m_rdpcmEnabledFlag[NUMBER_OF_RDPCM_SIGNALLING_MODES]; |
---|
[2] | 257 | Int* m_aidQP; |
---|
| 258 | UInt m_uiDeltaQpRD; |
---|
[1313] | 259 | Bool m_bFastDeltaQP; |
---|
| 260 | |
---|
[2] | 261 | Bool m_bUseConstrainedIntraPred; |
---|
[1313] | 262 | Bool m_bFastUDIUseMPMEnabled; |
---|
| 263 | Bool m_bFastMEForGenBLowDelayEnabled; |
---|
| 264 | Bool m_bUseBLambdaForNonKeyLowDelayPictures; |
---|
[56] | 265 | Bool m_usePCM; |
---|
[1313] | 266 | Int m_PCMBitDepth[MAX_NUM_CHANNEL_TYPE]; |
---|
[56] | 267 | UInt m_pcmLog2MaxSize; |
---|
| 268 | UInt m_uiPCMLog2MinSize; |
---|
[2] | 269 | //====== Slice ======== |
---|
[1313] | 270 | SliceConstraint m_sliceMode; |
---|
| 271 | Int m_sliceArgument; |
---|
[608] | 272 | //====== Dependent Slice ======== |
---|
[1313] | 273 | SliceConstraint m_sliceSegmentMode; |
---|
[608] | 274 | Int m_sliceSegmentArgument; |
---|
[2] | 275 | Bool m_bLFCrossSliceBoundaryFlag; |
---|
| 276 | |
---|
[56] | 277 | Bool m_bPCMInputBitDepthFlag; |
---|
| 278 | Bool m_bPCMFilterDisableFlag; |
---|
[1313] | 279 | Bool m_intraSmoothingDisabledFlag; |
---|
[608] | 280 | Bool m_loopFilterAcrossTilesEnabledFlag; |
---|
[1084] | 281 | Bool m_tileUniformSpacingFlag; |
---|
[56] | 282 | Int m_iNumColumnsMinus1; |
---|
| 283 | Int m_iNumRowsMinus1; |
---|
[1084] | 284 | std::vector<Int> m_tileColumnWidth; |
---|
| 285 | std::vector<Int> m_tileRowHeight; |
---|
[56] | 286 | |
---|
| 287 | Int m_iWaveFrontSynchro; |
---|
| 288 | |
---|
[608] | 289 | Int m_decodedPictureHashSEIEnabled; ///< Checksum(3)/CRC(2)/MD5(1)/disable(0) acting on decoded picture hash SEI message |
---|
| 290 | Int m_bufferingPeriodSEIEnabled; |
---|
| 291 | Int m_pictureTimingSEIEnabled; |
---|
| 292 | Int m_recoveryPointSEIEnabled; |
---|
| 293 | Bool m_toneMappingInfoSEIEnabled; |
---|
| 294 | Int m_toneMapId; |
---|
| 295 | Bool m_toneMapCancelFlag; |
---|
| 296 | Bool m_toneMapPersistenceFlag; |
---|
| 297 | Int m_codedDataBitDepth; |
---|
| 298 | Int m_targetBitDepth; |
---|
[1313] | 299 | Int m_modelId; |
---|
[608] | 300 | Int m_minValue; |
---|
| 301 | Int m_maxValue; |
---|
| 302 | Int m_sigmoidMidpoint; |
---|
| 303 | Int m_sigmoidWidth; |
---|
| 304 | Int m_numPivots; |
---|
| 305 | Int m_cameraIsoSpeedIdc; |
---|
| 306 | Int m_cameraIsoSpeedValue; |
---|
[964] | 307 | Int m_exposureIndexIdc; |
---|
| 308 | Int m_exposureIndexValue; |
---|
[1313] | 309 | Bool m_exposureCompensationValueSignFlag; |
---|
[608] | 310 | Int m_exposureCompensationValueNumerator; |
---|
| 311 | Int m_exposureCompensationValueDenomIdc; |
---|
| 312 | Int m_refScreenLuminanceWhite; |
---|
| 313 | Int m_extendedRangeWhiteLevel; |
---|
| 314 | Int m_nominalBlackLevelLumaCodeValue; |
---|
| 315 | Int m_nominalWhiteLevelLumaCodeValue; |
---|
| 316 | Int m_extendedWhiteLevelLumaCodeValue; |
---|
| 317 | Int* m_startOfCodedInterval; |
---|
| 318 | Int* m_codedPivotValue; |
---|
| 319 | Int* m_targetPivotValue; |
---|
| 320 | Int m_framePackingSEIEnabled; |
---|
| 321 | Int m_framePackingSEIType; |
---|
| 322 | Int m_framePackingSEIId; |
---|
| 323 | Int m_framePackingSEIQuincunx; |
---|
| 324 | Int m_framePackingSEIInterpretation; |
---|
[1313] | 325 | Int m_segmentedRectFramePackingSEIEnabled; |
---|
| 326 | Bool m_segmentedRectFramePackingSEICancel; |
---|
| 327 | Int m_segmentedRectFramePackingSEIType; |
---|
| 328 | Bool m_segmentedRectFramePackingSEIPersistence; |
---|
[608] | 329 | Int m_displayOrientationSEIAngle; |
---|
| 330 | Int m_temporalLevel0IndexSEIEnabled; |
---|
| 331 | Int m_gradualDecodingRefreshInfoEnabled; |
---|
[1313] | 332 | Int m_noDisplaySEITLayer; |
---|
[608] | 333 | Int m_decodingUnitInfoSEIEnabled; |
---|
| 334 | Int m_SOPDescriptionSEIEnabled; |
---|
| 335 | Int m_scalableNestingSEIEnabled; |
---|
[1313] | 336 | Bool m_tmctsSEIEnabled; |
---|
| 337 | Bool m_timeCodeSEIEnabled; |
---|
| 338 | Int m_timeCodeSEINumTs; |
---|
| 339 | TComSEITimeSet m_timeSetArray[MAX_TIMECODE_SEI_SETS]; |
---|
| 340 | Bool m_kneeSEIEnabled; |
---|
| 341 | Int m_kneeSEIId; |
---|
| 342 | Bool m_kneeSEICancelFlag; |
---|
| 343 | Bool m_kneeSEIPersistenceFlag; |
---|
| 344 | Int m_kneeSEIInputDrange; |
---|
| 345 | Int m_kneeSEIInputDispLuminance; |
---|
| 346 | Int m_kneeSEIOutputDrange; |
---|
| 347 | Int m_kneeSEIOutputDispLuminance; |
---|
| 348 | Int m_kneeSEINumKneePointsMinus1; |
---|
| 349 | Int* m_kneeSEIInputKneePoint; |
---|
| 350 | Int* m_kneeSEIOutputKneePoint; |
---|
| 351 | TComSEIMasteringDisplay m_masteringDisplay; |
---|
[2] | 352 | //====== Weighted Prediction ======== |
---|
[608] | 353 | Bool m_useWeightedPred; //< Use of Weighting Prediction (P_SLICE) |
---|
| 354 | Bool m_useWeightedBiPred; //< Use of Bi-directional Weighting Prediction (B_SLICE) |
---|
| 355 | UInt m_log2ParallelMergeLevelMinus2; ///< Parallel merge estimation region |
---|
| 356 | UInt m_maxNumMergeCand; ///< Maximum number of merge candidates |
---|
[1313] | 357 | ScalingListMode m_useScalingListId; ///< Using quantization matrix i.e. 0=off, 1=default, 2=file. |
---|
[608] | 358 | Char* m_scalingListFile; ///< quantization matrix file name |
---|
| 359 | Int m_TMVPModeId; |
---|
[1313] | 360 | Bool m_signHideFlag; |
---|
[608] | 361 | Bool m_RCEnableRateControl; |
---|
| 362 | Int m_RCTargetBitrate; |
---|
| 363 | Int m_RCKeepHierarchicalBit; |
---|
| 364 | Bool m_RCLCULevelRC; |
---|
| 365 | Bool m_RCUseLCUSeparateModel; |
---|
| 366 | Int m_RCInitialQP; |
---|
| 367 | Bool m_RCForceIntraQP; |
---|
[655] | 368 | |
---|
| 369 | #if KWU_RC_MADPRED_E0227 |
---|
| 370 | UInt m_depthMADPred; |
---|
| 371 | #endif |
---|
| 372 | #if KWU_RC_VIEWRC_E0227 |
---|
| 373 | Bool m_bViewWiseRateCtrl; |
---|
| 374 | #endif |
---|
[608] | 375 | Bool m_TransquantBypassEnableFlag; ///< transquant_bypass_enable_flag setting in PPS. |
---|
[872] | 376 | Bool m_CUTransquantBypassFlagForce; ///< if transquant_bypass_enable_flag, then, if true, all CU transquant bypass flags will be set to true. |
---|
[1313] | 377 | |
---|
| 378 | CostMode m_costMode; ///< The cost function to use, primarily when considering lossless coding. |
---|
| 379 | #if NH_MV |
---|
[608] | 380 | TComVPS* m_cVPS; ///< pointer to VPS, same for all layers |
---|
| 381 | #else |
---|
[1313] | 382 | |
---|
| 383 | TComVPS m_cVPS; |
---|
[56] | 384 | #endif |
---|
[758] | 385 | |
---|
[1313] | 386 | #if NH_3D_DLT |
---|
| 387 | TComDLT m_cDLT; |
---|
[758] | 388 | #endif |
---|
[608] | 389 | Bool m_recalculateQPAccordingToLambda; ///< recalculate QP value according to the lambda value |
---|
[1313] | 390 | Int m_activeParameterSetsSEIEnabled; ///< enable active parameter set SEI message |
---|
[608] | 391 | Bool m_vuiParametersPresentFlag; ///< enable generation of VUI parameters |
---|
| 392 | Bool m_aspectRatioInfoPresentFlag; ///< Signals whether aspect_ratio_idc is present |
---|
[1313] | 393 | Bool m_chromaSamplingFilterHintEnabled; ///< Signals whether chroma sampling filter hint data is present |
---|
| 394 | Int m_chromaSamplingHorFilterIdc; ///< Specifies the Index of filter to use |
---|
| 395 | Int m_chromaSamplingVerFilterIdc; ///< Specifies the Index of filter to use |
---|
[608] | 396 | Int m_aspectRatioIdc; ///< aspect_ratio_idc |
---|
| 397 | Int m_sarWidth; ///< horizontal size of the sample aspect ratio |
---|
| 398 | Int m_sarHeight; ///< vertical size of the sample aspect ratio |
---|
| 399 | Bool m_overscanInfoPresentFlag; ///< Signals whether overscan_appropriate_flag is present |
---|
| 400 | Bool m_overscanAppropriateFlag; ///< Indicates whether conformant decoded pictures are suitable for display using overscan |
---|
| 401 | Bool m_videoSignalTypePresentFlag; ///< Signals whether video_format, video_full_range_flag, and colour_description_present_flag are present |
---|
| 402 | Int m_videoFormat; ///< Indicates representation of pictures |
---|
| 403 | Bool m_videoFullRangeFlag; ///< Indicates the black level and range of luma and chroma signals |
---|
| 404 | Bool m_colourDescriptionPresentFlag; ///< Signals whether colour_primaries, transfer_characteristics and matrix_coefficients are present |
---|
| 405 | Int m_colourPrimaries; ///< Indicates chromaticity coordinates of the source primaries |
---|
| 406 | Int m_transferCharacteristics; ///< Indicates the opto-electronic transfer characteristics of the source |
---|
| 407 | Int m_matrixCoefficients; ///< Describes the matrix coefficients used in deriving luma and chroma from RGB primaries |
---|
| 408 | Bool m_chromaLocInfoPresentFlag; ///< Signals whether chroma_sample_loc_type_top_field and chroma_sample_loc_type_bottom_field are present |
---|
| 409 | Int m_chromaSampleLocTypeTopField; ///< Specifies the location of chroma samples for top field |
---|
| 410 | Int m_chromaSampleLocTypeBottomField; ///< Specifies the location of chroma samples for bottom field |
---|
| 411 | Bool m_neutralChromaIndicationFlag; ///< Indicates that the value of all decoded chroma samples is equal to 1<<(BitDepthCr-1) |
---|
| 412 | Window m_defaultDisplayWindow; ///< Represents the default display window parameters |
---|
| 413 | Bool m_frameFieldInfoPresentFlag; ///< Indicates that pic_struct and other field coding related values are present in picture timing SEI messages |
---|
| 414 | Bool m_pocProportionalToTimingFlag; ///< Indicates that the POC value is proportional to the output time w.r.t. first picture in CVS |
---|
| 415 | Int m_numTicksPocDiffOneMinus1; ///< Number of ticks minus 1 that for a POC difference of one |
---|
| 416 | Bool m_bitstreamRestrictionFlag; ///< Signals whether bitstream restriction parameters are present |
---|
| 417 | Bool m_tilesFixedStructureFlag; ///< Indicates that each active picture parameter set has the same values of the syntax elements related to tiles |
---|
| 418 | Bool m_motionVectorsOverPicBoundariesFlag; ///< Indicates that no samples outside the picture boundaries are used for inter prediction |
---|
| 419 | Int m_minSpatialSegmentationIdc; ///< Indicates the maximum size of the spatial segments in the pictures in the coded video sequence |
---|
| 420 | Int m_maxBytesPerPicDenom; ///< Indicates a number of bytes not exceeded by the sum of the sizes of the VCL NAL units associated with any coded picture |
---|
| 421 | Int m_maxBitsPerMinCuDenom; ///< Indicates an upper bound for the number of bits of coding_unit() data |
---|
| 422 | Int m_log2MaxMvLengthHorizontal; ///< Indicate the maximum absolute value of a decoded horizontal MV component in quarter-pel luma units |
---|
| 423 | Int m_log2MaxMvLengthVertical; ///< Indicate the maximum absolute value of a decoded vertical MV component in quarter-pel luma units |
---|
[2] | 424 | |
---|
[608] | 425 | Bool m_useStrongIntraSmoothing; ///< enable the use of strong intra smoothing (bi_linear interpolation) for 32x32 blocks when reference samples are flat. |
---|
[1313] | 426 | Bool m_bEfficientFieldIRAPEnabled; ///< enable to code fields in a specific, potentially more efficient, order. |
---|
| 427 | Bool m_bHarmonizeGopFirstFieldCoupleEnabled; |
---|
| 428 | |
---|
| 429 | std::string m_summaryOutFilename; ///< filename to use for producing summary output file. |
---|
| 430 | std::string m_summaryPicFilenameBase; ///< Base filename to use for producing summary picture output files. The actual filenames used will have I.txt, P.txt and B.txt appended. |
---|
| 431 | UInt m_summaryVerboseness; ///< Specifies the level of the verboseness of the text output. |
---|
| 432 | |
---|
| 433 | #if NH_MV |
---|
[872] | 434 | Bool m_subBistreamPropSEIEnabled; |
---|
| 435 | Int m_numAdditionalSubStreams; |
---|
| 436 | std::vector<Int> m_subBitstreamMode; |
---|
| 437 | std::vector<Int> m_outputLayerSetIdxToVps; |
---|
| 438 | std::vector<Int> m_highestSublayerId; |
---|
| 439 | std::vector<Int> m_avgBitRate; |
---|
| 440 | std::vector<Int> m_maxBitRate; |
---|
| 441 | #endif |
---|
[210] | 442 | |
---|
[1313] | 443 | #if NH_MV |
---|
[608] | 444 | Int m_layerId; |
---|
| 445 | Int m_layerIdInVps; |
---|
| 446 | Int m_viewId; |
---|
[622] | 447 | Int m_viewIndex; |
---|
[608] | 448 | #endif |
---|
[115] | 449 | |
---|
[1313] | 450 | #if NH_3D |
---|
[608] | 451 | Bool m_isDepth; |
---|
[56] | 452 | |
---|
[608] | 453 | //====== Camera Parameters ====== |
---|
| 454 | TAppComCamPara* m_cameraParameters; |
---|
| 455 | |
---|
[1313] | 456 | #if NH_3D_VSO |
---|
[608] | 457 | //====== View Synthesis Optimization ====== |
---|
| 458 | TRenModSetupStrParser* m_renderModelParameters; |
---|
| 459 | Bool m_bUseVSO; |
---|
| 460 | Bool m_bForceLambdaScale; |
---|
| 461 | Bool m_bAllowNegDist; |
---|
| 462 | Double m_dLambdaScaleVSO; |
---|
| 463 | UInt m_uiVSOMode; |
---|
| 464 | // LGE_WVSO_A0119 |
---|
| 465 | Bool m_bUseWVSO; |
---|
| 466 | Int m_iVSOWeight; |
---|
| 467 | Int m_iVSDWeight; |
---|
| 468 | Int m_iDWeight; |
---|
| 469 | // SAIT_VSO_EST_A0033 |
---|
| 470 | Bool m_bUseEstimatedVSD; |
---|
| 471 | Double m_dDispCoeff; |
---|
[5] | 472 | #endif |
---|
[1313] | 473 | |
---|
[608] | 474 | Bool m_bUseIC; |
---|
[1313] | 475 | Bool m_bUseICLowLatencyEnc; |
---|
[608] | 476 | Bool m_useDMM; |
---|
| 477 | Bool m_useSDC; |
---|
| 478 | Bool m_useDLT; |
---|
| 479 | Bool m_bUseQTL; |
---|
[1313] | 480 | Int m_profileIdc; |
---|
[1196] | 481 | |
---|
[1179] | 482 | #endif |
---|
[608] | 483 | public: |
---|
| 484 | TEncCfg() |
---|
[1084] | 485 | : m_tileColumnWidth() |
---|
| 486 | , m_tileRowHeight() |
---|
[1313] | 487 | #if NH_MV |
---|
[608] | 488 | , m_layerId(-1) |
---|
| 489 | , m_layerIdInVps(-1) |
---|
| 490 | , m_viewId(-1) |
---|
[622] | 491 | , m_viewIndex(-1) |
---|
[1313] | 492 | #if NH_3D |
---|
[608] | 493 | , m_isDepth(false) |
---|
[1313] | 494 | #if NH_3D_VSO |
---|
[608] | 495 | , m_bUseVSO(false) |
---|
[1313] | 496 | #endif |
---|
[1179] | 497 | , m_profileIdc( -1 ) |
---|
[608] | 498 | #endif |
---|
| 499 | #endif |
---|
[443] | 500 | |
---|
[1313] | 501 | { |
---|
| 502 | m_PCMBitDepth[CHANNEL_TYPE_LUMA]=8; |
---|
| 503 | m_PCMBitDepth[CHANNEL_TYPE_CHROMA]=8; |
---|
| 504 | } |
---|
| 505 | |
---|
[56] | 506 | virtual ~TEncCfg() |
---|
[1084] | 507 | {} |
---|
[1313] | 508 | |
---|
[608] | 509 | Void setProfile(Profile::Name profile) { m_profile = profile; } |
---|
| 510 | Void setLevel(Level::Tier tier, Level::Name level) { m_levelTier = tier; m_level = level; } |
---|
| 511 | |
---|
[2] | 512 | Void setFrameRate ( Int i ) { m_iFrameRate = i; } |
---|
[608] | 513 | Void setFrameSkip ( UInt i ) { m_FrameSkip = i; } |
---|
[2] | 514 | Void setSourceWidth ( Int i ) { m_iSourceWidth = i; } |
---|
| 515 | Void setSourceHeight ( Int i ) { m_iSourceHeight = i; } |
---|
[608] | 516 | |
---|
| 517 | Window &getConformanceWindow() { return m_conformanceWindow; } |
---|
| 518 | Void setConformanceWindow (Int confLeft, Int confRight, Int confTop, Int confBottom ) { m_conformanceWindow.setWindow (confLeft, confRight, confTop, confBottom); } |
---|
| 519 | |
---|
| 520 | Void setFramesToBeEncoded ( Int i ) { m_framesToBeEncoded = i; } |
---|
[1313] | 521 | |
---|
| 522 | Bool getPrintMSEBasedSequencePSNR () const { return m_printMSEBasedSequencePSNR; } |
---|
| 523 | Void setPrintMSEBasedSequencePSNR (Bool value) { m_printMSEBasedSequencePSNR = value; } |
---|
| 524 | |
---|
| 525 | Bool getPrintFrameMSE () const { return m_printFrameMSE; } |
---|
| 526 | Void setPrintFrameMSE (Bool value) { m_printFrameMSE = value; } |
---|
| 527 | |
---|
| 528 | Bool getPrintSequenceMSE () const { return m_printSequenceMSE; } |
---|
| 529 | Void setPrintSequenceMSE (Bool value) { m_printSequenceMSE = value; } |
---|
| 530 | |
---|
| 531 | Bool getCabacZeroWordPaddingEnabled() const { return m_cabacZeroWordPaddingEnabled; } |
---|
| 532 | Void setCabacZeroWordPaddingEnabled(Bool value) { m_cabacZeroWordPaddingEnabled = value; } |
---|
| 533 | #if NH_MV |
---|
[608] | 534 | Void setLayerId ( Int layerId ) { m_layerId = layerId; } |
---|
| 535 | Int getLayerId () { return m_layerId; } |
---|
| 536 | Int getLayerIdInVps () { return m_layerIdInVps; } |
---|
| 537 | Void setLayerIdInVps ( Int layerIdInVps) { m_layerIdInVps = layerIdInVps; } |
---|
| 538 | Void setViewId ( Int viewId ) { m_viewId = viewId; } |
---|
| 539 | Int getViewId () { return m_viewId; } |
---|
[622] | 540 | Void setViewIndex ( Int viewIndex ) { m_viewIndex = viewIndex; } |
---|
| 541 | Int getViewIndex () { return m_viewIndex; } |
---|
[1313] | 542 | #if NH_3D |
---|
[608] | 543 | Void setIsDepth ( Bool isDepth ) { m_isDepth = isDepth; } |
---|
| 544 | Bool getIsDepth () { return m_isDepth; } |
---|
| 545 | #endif |
---|
| 546 | #endif |
---|
[2] | 547 | //====== Coding Structure ======== |
---|
[56] | 548 | Void setIntraPeriod ( Int i ) { m_uiIntraPeriod = (UInt)i; } |
---|
[2] | 549 | Void setDecodingRefreshType ( Int i ) { m_uiDecodingRefreshType = (UInt)i; } |
---|
[56] | 550 | Void setGOPSize ( Int i ) { m_iGOPSize = i; } |
---|
[1313] | 551 | #if NH_MV |
---|
[608] | 552 | Void setGopList ( GOPEntry* GOPList ) { for ( Int i = 0; i < MAX_GOP+1; i++ ) m_GOPList[i] = GOPList[i]; } |
---|
| 553 | #else |
---|
| 554 | Void setGopList ( GOPEntry* GOPList ) { for ( Int i = 0; i < MAX_GOP; i++ ) m_GOPList[i] = GOPList[i]; } |
---|
| 555 | #endif |
---|
[56] | 556 | Void setExtraRPSs ( Int i ) { m_extraRPSs = i; } |
---|
[608] | 557 | GOPEntry getGOPEntry ( Int i ) { return m_GOPList[i]; } |
---|
[1313] | 558 | Void setEncodedFlag ( Int i, Bool value ) { m_GOPList[i].m_isEncoded = value; } |
---|
[56] | 559 | Void setMaxDecPicBuffering ( UInt u, UInt tlayer ) { m_maxDecPicBuffering[tlayer] = u; } |
---|
| 560 | Void setNumReorderPics ( Int i, UInt tlayer ) { m_numReorderPics[tlayer] = i; } |
---|
[1313] | 561 | |
---|
[56] | 562 | Void setQP ( Int i ) { m_iQP = i; } |
---|
[1313] | 563 | |
---|
[56] | 564 | Void setPad ( Int* iPad ) { for ( Int i = 0; i < 2; i++ ) m_aiPad[i] = iPad[i]; } |
---|
[1313] | 565 | |
---|
[56] | 566 | Int getMaxRefPicNum () { return m_iMaxRefPicNum; } |
---|
| 567 | Void setMaxRefPicNum ( Int iMaxRefPicNum ) { m_iMaxRefPicNum = iMaxRefPicNum; } |
---|
[2] | 568 | |
---|
[964] | 569 | Int getMaxTempLayer () { return m_maxTempLayer; } |
---|
[56] | 570 | Void setMaxTempLayer ( Int maxTempLayer ) { m_maxTempLayer = maxTempLayer; } |
---|
[1313] | 571 | Void setMaxCUWidth ( UInt u ) { m_maxCUWidth = u; } |
---|
| 572 | Void setMaxCUHeight ( UInt u ) { m_maxCUHeight = u; } |
---|
| 573 | Void setMaxTotalCUDepth ( UInt u ) { m_maxTotalCUDepth = u; } |
---|
| 574 | Void setLog2DiffMaxMinCodingBlockSize( UInt u ) { m_log2DiffMaxMinCodingBlockSize = u; } |
---|
| 575 | #if NH_3D_IC |
---|
[608] | 576 | Void setUseIC ( Bool bVal ) { m_bUseIC = bVal; } |
---|
| 577 | Bool getUseIC () { return m_bUseIC; } |
---|
[950] | 578 | Void setUseICLowLatencyEnc ( Bool bVal ) { m_bUseICLowLatencyEnc = bVal; } |
---|
| 579 | Bool getUseICLowLatencyEnc () { return m_bUseICLowLatencyEnc; } |
---|
[5] | 580 | #endif |
---|
[1313] | 581 | |
---|
[2] | 582 | //======== Transform ============= |
---|
| 583 | Void setQuadtreeTULog2MaxSize ( UInt u ) { m_uiQuadtreeTULog2MaxSize = u; } |
---|
| 584 | Void setQuadtreeTULog2MinSize ( UInt u ) { m_uiQuadtreeTULog2MinSize = u; } |
---|
| 585 | Void setQuadtreeTUMaxDepthInter ( UInt u ) { m_uiQuadtreeTUMaxDepthInter = u; } |
---|
| 586 | Void setQuadtreeTUMaxDepthIntra ( UInt u ) { m_uiQuadtreeTUMaxDepthIntra = u; } |
---|
[1313] | 587 | |
---|
[56] | 588 | Void setUseAMP( Bool b ) { m_useAMP = b; } |
---|
[1313] | 589 | |
---|
[2] | 590 | //====== Loop/Deblock Filter ======== |
---|
| 591 | Void setLoopFilterDisable ( Bool b ) { m_bLoopFilterDisable = b; } |
---|
[608] | 592 | Void setLoopFilterOffsetInPPS ( Bool b ) { m_loopFilterOffsetInPPS = b; } |
---|
[56] | 593 | Void setLoopFilterBetaOffset ( Int i ) { m_loopFilterBetaOffsetDiv2 = i; } |
---|
| 594 | Void setLoopFilterTcOffset ( Int i ) { m_loopFilterTcOffsetDiv2 = i; } |
---|
[608] | 595 | Void setDeblockingFilterMetric ( Bool b ) { m_DeblockingFilterMetric = b; } |
---|
[2] | 596 | |
---|
| 597 | //====== Motion search ======== |
---|
[1313] | 598 | Void setDisableIntraPUsInInterSlices ( Bool b ) { m_bDisableIntraPUsInInterSlices = b; } |
---|
[2] | 599 | Void setFastSearch ( Int i ) { m_iFastSearch = i; } |
---|
| 600 | Void setSearchRange ( Int i ) { m_iSearchRange = i; } |
---|
| 601 | Void setBipredSearchRange ( Int i ) { m_bipredSearchRange = i; } |
---|
[1313] | 602 | Void setClipForBiPredMeEnabled ( Bool b ) { m_bClipForBiPredMeEnabled = b; } |
---|
| 603 | Void setFastMEAssumingSmootherMVEnabled ( Bool b ) { m_bFastMEAssumingSmootherMVEnabled = b; } |
---|
| 604 | #if NH_MV |
---|
[1179] | 605 | Void setUseDisparitySearchRangeRestriction ( Bool b ) { m_bUseDisparitySearchRangeRestriction = b; } |
---|
| 606 | Void setVerticalDisparitySearchRange ( Int i ) { m_iVerticalDisparitySearchRange = i; } |
---|
| 607 | #endif |
---|
[56] | 608 | |
---|
| 609 | //====== Quality control ======== |
---|
| 610 | Void setMaxDeltaQP ( Int i ) { m_iMaxDeltaQP = i; } |
---|
| 611 | Void setMaxCuDQPDepth ( Int i ) { m_iMaxCuDQPDepth = i; } |
---|
| 612 | |
---|
[1313] | 613 | Int getDiffCuChromaQpOffsetDepth () const { return m_diffCuChromaQpOffsetDepth; } |
---|
| 614 | Void setDiffCuChromaQpOffsetDepth (Int value) { m_diffCuChromaQpOffsetDepth = value; } |
---|
| 615 | |
---|
[608] | 616 | Void setChromaCbQpOffset ( Int i ) { m_chromaCbQpOffset = i; } |
---|
| 617 | Void setChromaCrQpOffset ( Int i ) { m_chromaCrQpOffset = i; } |
---|
[56] | 618 | |
---|
[1313] | 619 | Void setChromaFormatIdc ( ChromaFormat cf ) { m_chromaFormatIDC = cf; } |
---|
| 620 | ChromaFormat getChromaFormatIdc ( ) { return m_chromaFormatIDC; } |
---|
| 621 | |
---|
[56] | 622 | #if ADAPTIVE_QP_SELECTION |
---|
| 623 | Void setUseAdaptQpSelect ( Bool i ) { m_bUseAdaptQpSelect = i; } |
---|
| 624 | Bool getUseAdaptQpSelect () { return m_bUseAdaptQpSelect; } |
---|
| 625 | #endif |
---|
| 626 | |
---|
[1313] | 627 | Bool getExtendedPrecisionProcessingFlag () const { return m_extendedPrecisionProcessingFlag; } |
---|
| 628 | Void setExtendedPrecisionProcessingFlag (Bool value) { m_extendedPrecisionProcessingFlag = value; } |
---|
| 629 | |
---|
| 630 | Bool getHighPrecisionOffsetsEnabledFlag() const { return m_highPrecisionOffsetsEnabledFlag; } |
---|
| 631 | Void setHighPrecisionOffsetsEnabledFlag(Bool value) { m_highPrecisionOffsetsEnabledFlag = value; } |
---|
| 632 | |
---|
[56] | 633 | Void setUseAdaptiveQP ( Bool b ) { m_bUseAdaptiveQP = b; } |
---|
| 634 | Void setQPAdaptationRange ( Int i ) { m_iQPAdaptationRange = i; } |
---|
[1313] | 635 | |
---|
[2] | 636 | //====== Sequence ======== |
---|
| 637 | Int getFrameRate () { return m_iFrameRate; } |
---|
[608] | 638 | UInt getFrameSkip () { return m_FrameSkip; } |
---|
[2] | 639 | Int getSourceWidth () { return m_iSourceWidth; } |
---|
| 640 | Int getSourceHeight () { return m_iSourceHeight; } |
---|
[608] | 641 | Int getFramesToBeEncoded () { return m_framesToBeEncoded; } |
---|
[1313] | 642 | Void setLambdaModifier ( UInt uiIndex, Double dValue ) { m_adLambdaModifier[ uiIndex ] = dValue; } |
---|
[56] | 643 | Double getLambdaModifier ( UInt uiIndex ) const { return m_adLambdaModifier[ uiIndex ]; } |
---|
[2] | 644 | |
---|
| 645 | //==== Coding Structure ======== |
---|
[56] | 646 | UInt getIntraPeriod () { return m_uiIntraPeriod; } |
---|
[2] | 647 | UInt getDecodingRefreshType () { return m_uiDecodingRefreshType; } |
---|
[56] | 648 | Int getGOPSize () { return m_iGOPSize; } |
---|
| 649 | Int getMaxDecPicBuffering (UInt tlayer) { return m_maxDecPicBuffering[tlayer]; } |
---|
| 650 | Int getNumReorderPics (UInt tlayer) { return m_numReorderPics[tlayer]; } |
---|
[2] | 651 | Int getQP () { return m_iQP; } |
---|
[1313] | 652 | |
---|
[2] | 653 | Int getPad ( Int i ) { assert (i < 2 ); return m_aiPad[i]; } |
---|
[1313] | 654 | |
---|
[2] | 655 | //======== Transform ============= |
---|
| 656 | UInt getQuadtreeTULog2MaxSize () const { return m_uiQuadtreeTULog2MaxSize; } |
---|
| 657 | UInt getQuadtreeTULog2MinSize () const { return m_uiQuadtreeTULog2MinSize; } |
---|
| 658 | UInt getQuadtreeTUMaxDepthInter () const { return m_uiQuadtreeTUMaxDepthInter; } |
---|
| 659 | UInt getQuadtreeTUMaxDepthIntra () const { return m_uiQuadtreeTUMaxDepthIntra; } |
---|
[1313] | 660 | |
---|
[2] | 661 | //==== Loop/Deblock Filter ======== |
---|
| 662 | Bool getLoopFilterDisable () { return m_bLoopFilterDisable; } |
---|
[608] | 663 | Bool getLoopFilterOffsetInPPS () { return m_loopFilterOffsetInPPS; } |
---|
[56] | 664 | Int getLoopFilterBetaOffset () { return m_loopFilterBetaOffsetDiv2; } |
---|
| 665 | Int getLoopFilterTcOffset () { return m_loopFilterTcOffsetDiv2; } |
---|
[608] | 666 | Bool getDeblockingFilterMetric () { return m_DeblockingFilterMetric; } |
---|
[2] | 667 | |
---|
| 668 | //==== Motion search ======== |
---|
[1313] | 669 | Bool getDisableIntraPUsInInterSlices () const { return m_bDisableIntraPUsInInterSlices; } |
---|
| 670 | Int getFastSearch () const { return m_iFastSearch; } |
---|
| 671 | Int getSearchRange () const { return m_iSearchRange; } |
---|
| 672 | Bool getClipForBiPredMeEnabled () const { return m_bClipForBiPredMeEnabled; } |
---|
| 673 | Bool getFastMEAssumingSmootherMVEnabled ( ) const { return m_bFastMEAssumingSmootherMVEnabled; } |
---|
| 674 | #if NH_MV |
---|
[1179] | 675 | Bool getUseDisparitySearchRangeRestriction () { return m_bUseDisparitySearchRangeRestriction; } |
---|
| 676 | Int getVerticalDisparitySearchRange () { return m_iVerticalDisparitySearchRange; } |
---|
| 677 | #endif |
---|
[2] | 678 | |
---|
[56] | 679 | //==== Quality control ======== |
---|
| 680 | Int getMaxDeltaQP () { return m_iMaxDeltaQP; } |
---|
| 681 | Int getMaxCuDQPDepth () { return m_iMaxCuDQPDepth; } |
---|
| 682 | Bool getUseAdaptiveQP () { return m_bUseAdaptiveQP; } |
---|
| 683 | Int getQPAdaptationRange () { return m_iQPAdaptationRange; } |
---|
[1313] | 684 | |
---|
[2] | 685 | //==== Tool list ======== |
---|
[1313] | 686 | Void setBitDepth( const ChannelType chType, Int internalBitDepthForChannel ) { m_bitDepth[chType] = internalBitDepthForChannel; } |
---|
[2] | 687 | Void setUseASR ( Bool b ) { m_bUseASR = b; } |
---|
| 688 | Void setUseHADME ( Bool b ) { m_bUseHADME = b; } |
---|
[608] | 689 | Void setUseRDOQ ( Bool b ) { m_useRDOQ = b; } |
---|
| 690 | Void setUseRDOQTS ( Bool b ) { m_useRDOQTS = b; } |
---|
[1313] | 691 | #if T0196_SELECTIVE_RDOQ |
---|
| 692 | Void setUseSelectiveRDOQ ( Bool b ) { m_useSelectiveRDOQ = b; } |
---|
| 693 | #endif |
---|
[608] | 694 | Void setRDpenalty ( UInt b ) { m_rdPenalty = b; } |
---|
[56] | 695 | Void setUseFastEnc ( Bool b ) { m_bUseFastEnc = b; } |
---|
| 696 | Void setUseEarlyCU ( Bool b ) { m_bUseEarlyCU = b; } |
---|
| 697 | Void setUseFastDecisionForMerge ( Bool b ) { m_useFastDecisionForMerge = b; } |
---|
| 698 | Void setUseCbfFastMode ( Bool b ) { m_bUseCbfFastMode = b; } |
---|
[608] | 699 | Void setUseEarlySkipDetection ( Bool b ) { m_useEarlySkipDetection = b; } |
---|
[2] | 700 | Void setUseConstrainedIntraPred ( Bool b ) { m_bUseConstrainedIntraPred = b; } |
---|
[1313] | 701 | Void setFastUDIUseMPMEnabled ( Bool b ) { m_bFastUDIUseMPMEnabled = b; } |
---|
| 702 | Void setFastMEForGenBLowDelayEnabled ( Bool b ) { m_bFastMEForGenBLowDelayEnabled = b; } |
---|
| 703 | Void setUseBLambdaForNonKeyLowDelayPictures ( Bool b ) { m_bUseBLambdaForNonKeyLowDelayPictures = b; } |
---|
| 704 | |
---|
[56] | 705 | Void setPCMInputBitDepthFlag ( Bool b ) { m_bPCMInputBitDepthFlag = b; } |
---|
| 706 | Void setPCMFilterDisableFlag ( Bool b ) { m_bPCMFilterDisableFlag = b; } |
---|
| 707 | Void setUsePCM ( Bool b ) { m_usePCM = b; } |
---|
[1313] | 708 | Void setPCMBitDepth( const ChannelType chType, Int pcmBitDepthForChannel ) { m_PCMBitDepth[chType] = pcmBitDepthForChannel; } |
---|
[56] | 709 | Void setPCMLog2MaxSize ( UInt u ) { m_pcmLog2MaxSize = u; } |
---|
| 710 | Void setPCMLog2MinSize ( UInt u ) { m_uiPCMLog2MinSize = u; } |
---|
[2] | 711 | Void setdQPs ( Int* p ) { m_aidQP = p; } |
---|
| 712 | Void setDeltaQpRD ( UInt u ) {m_uiDeltaQpRD = u; } |
---|
[1313] | 713 | Void setFastDeltaQp ( Bool b ) {m_bFastDeltaQP = b; } |
---|
[2] | 714 | Bool getUseASR () { return m_bUseASR; } |
---|
| 715 | Bool getUseHADME () { return m_bUseHADME; } |
---|
[608] | 716 | Bool getUseRDOQ () { return m_useRDOQ; } |
---|
| 717 | Bool getUseRDOQTS () { return m_useRDOQTS; } |
---|
[1313] | 718 | #if T0196_SELECTIVE_RDOQ |
---|
| 719 | Bool getUseSelectiveRDOQ () { return m_useSelectiveRDOQ; } |
---|
| 720 | #endif |
---|
| 721 | Int getRDpenalty () { return m_rdPenalty; } |
---|
[56] | 722 | Bool getUseFastEnc () { return m_bUseFastEnc; } |
---|
| 723 | Bool getUseEarlyCU () { return m_bUseEarlyCU; } |
---|
| 724 | Bool getUseFastDecisionForMerge () { return m_useFastDecisionForMerge; } |
---|
[1313] | 725 | Bool getUseCbfFastMode () { return m_bUseCbfFastMode; } |
---|
[608] | 726 | Bool getUseEarlySkipDetection () { return m_useEarlySkipDetection; } |
---|
[2] | 727 | Bool getUseConstrainedIntraPred () { return m_bUseConstrainedIntraPred; } |
---|
[1313] | 728 | Bool getFastUDIUseMPMEnabled () { return m_bFastUDIUseMPMEnabled; } |
---|
| 729 | Bool getFastMEForGenBLowDelayEnabled () { return m_bFastMEForGenBLowDelayEnabled; } |
---|
| 730 | Bool getUseBLambdaForNonKeyLowDelayPictures () { return m_bUseBLambdaForNonKeyLowDelayPictures; } |
---|
[608] | 731 | Bool getPCMInputBitDepthFlag () { return m_bPCMInputBitDepthFlag; } |
---|
[1313] | 732 | Bool getPCMFilterDisableFlag () { return m_bPCMFilterDisableFlag; } |
---|
[56] | 733 | Bool getUsePCM () { return m_usePCM; } |
---|
| 734 | UInt getPCMLog2MaxSize () { return m_pcmLog2MaxSize; } |
---|
| 735 | UInt getPCMLog2MinSize () { return m_uiPCMLog2MinSize; } |
---|
| 736 | |
---|
[1313] | 737 | Bool getCrossComponentPredictionEnabledFlag () const { return m_crossComponentPredictionEnabledFlag; } |
---|
| 738 | Void setCrossComponentPredictionEnabledFlag (const Bool value) { m_crossComponentPredictionEnabledFlag = value; } |
---|
| 739 | Bool getUseReconBasedCrossCPredictionEstimate () const { return m_reconBasedCrossCPredictionEstimate; } |
---|
| 740 | Void setUseReconBasedCrossCPredictionEstimate (const Bool value) { m_reconBasedCrossCPredictionEstimate = value; } |
---|
| 741 | Void setLog2SaoOffsetScale(ChannelType type, UInt uiBitShift) { m_log2SaoOffsetScale[type] = uiBitShift; } |
---|
| 742 | |
---|
[608] | 743 | Bool getUseTransformSkip () { return m_useTransformSkip; } |
---|
| 744 | Void setUseTransformSkip ( Bool b ) { m_useTransformSkip = b; } |
---|
[1313] | 745 | Bool getTransformSkipRotationEnabledFlag () const { return m_transformSkipRotationEnabledFlag; } |
---|
| 746 | Void setTransformSkipRotationEnabledFlag (const Bool value) { m_transformSkipRotationEnabledFlag = value; } |
---|
| 747 | Bool getTransformSkipContextEnabledFlag () const { return m_transformSkipContextEnabledFlag; } |
---|
| 748 | Void setTransformSkipContextEnabledFlag (const Bool value) { m_transformSkipContextEnabledFlag = value; } |
---|
| 749 | Bool getPersistentRiceAdaptationEnabledFlag () const { return m_persistentRiceAdaptationEnabledFlag; } |
---|
| 750 | Void setPersistentRiceAdaptationEnabledFlag (const Bool value) { m_persistentRiceAdaptationEnabledFlag = value; } |
---|
| 751 | Bool getCabacBypassAlignmentEnabledFlag () const { return m_cabacBypassAlignmentEnabledFlag; } |
---|
| 752 | Void setCabacBypassAlignmentEnabledFlag (const Bool value) { m_cabacBypassAlignmentEnabledFlag = value; } |
---|
| 753 | Bool getRdpcmEnabledFlag (const RDPCMSignallingMode signallingMode) const { return m_rdpcmEnabledFlag[signallingMode]; } |
---|
| 754 | Void setRdpcmEnabledFlag (const RDPCMSignallingMode signallingMode, const Bool value) { m_rdpcmEnabledFlag[signallingMode] = value; } |
---|
[608] | 755 | Bool getUseTransformSkipFast () { return m_useTransformSkipFast; } |
---|
| 756 | Void setUseTransformSkipFast ( Bool b ) { m_useTransformSkipFast = b; } |
---|
[1313] | 757 | UInt getLog2MaxTransformSkipBlockSize () const { return m_log2MaxTransformSkipBlockSize; } |
---|
| 758 | Void setLog2MaxTransformSkipBlockSize ( UInt u ) { m_log2MaxTransformSkipBlockSize = u; } |
---|
| 759 | Bool getIntraSmoothingDisabledFlag () const { return m_intraSmoothingDisabledFlag; } |
---|
| 760 | Void setIntraSmoothingDisabledFlag (Bool bValue) { m_intraSmoothingDisabledFlag=bValue; } |
---|
[56] | 761 | |
---|
[1313] | 762 | Int* getdQPs () { return m_aidQP; } |
---|
| 763 | UInt getDeltaQpRD () const { return m_uiDeltaQpRD; } |
---|
| 764 | Bool getFastDeltaQp () const { return m_bFastDeltaQP; } |
---|
| 765 | |
---|
[2] | 766 | //====== Slice ======== |
---|
[1313] | 767 | Void setSliceMode ( SliceConstraint i ) { m_sliceMode = i; } |
---|
| 768 | Void setSliceArgument ( Int i ) { m_sliceArgument = i; } |
---|
| 769 | SliceConstraint getSliceMode () const { return m_sliceMode; } |
---|
| 770 | Int getSliceArgument () { return m_sliceArgument; } |
---|
[608] | 771 | //====== Dependent Slice ======== |
---|
[1313] | 772 | Void setSliceSegmentMode ( SliceConstraint i ) { m_sliceSegmentMode = i; } |
---|
| 773 | Void setSliceSegmentArgument ( Int i ) { m_sliceSegmentArgument = i; } |
---|
| 774 | SliceConstraint getSliceSegmentMode () const { return m_sliceSegmentMode; } |
---|
| 775 | Int getSliceSegmentArgument () { return m_sliceSegmentArgument;} |
---|
| 776 | Void setLFCrossSliceBoundaryFlag ( Bool bValue ) { m_bLFCrossSliceBoundaryFlag = bValue; } |
---|
| 777 | Bool getLFCrossSliceBoundaryFlag () { return m_bLFCrossSliceBoundaryFlag; } |
---|
[56] | 778 | |
---|
[1313] | 779 | Void setUseSAO (Bool bVal) { m_bUseSAO = bVal; } |
---|
| 780 | Bool getUseSAO () { return m_bUseSAO; } |
---|
| 781 | Void setTestSAODisableAtPictureLevel (Bool bVal) { m_bTestSAODisableAtPictureLevel = bVal; } |
---|
| 782 | Bool getTestSAODisableAtPictureLevel ( ) const { return m_bTestSAODisableAtPictureLevel; } |
---|
| 783 | |
---|
| 784 | Void setSaoEncodingRate(Double v) { m_saoEncodingRate = v; } |
---|
| 785 | Double getSaoEncodingRate() const { return m_saoEncodingRate; } |
---|
| 786 | Void setSaoEncodingRateChroma(Double v) { m_saoEncodingRateChroma = v; } |
---|
| 787 | Double getSaoEncodingRateChroma() const { return m_saoEncodingRateChroma; } |
---|
| 788 | Void setMaxNumOffsetsPerPic (Int iVal) { m_maxNumOffsetsPerPic = iVal; } |
---|
| 789 | Int getMaxNumOffsetsPerPic () { return m_maxNumOffsetsPerPic; } |
---|
| 790 | Void setSaoCtuBoundary (Bool val) { m_saoCtuBoundary = val; } |
---|
| 791 | Bool getSaoCtuBoundary () { return m_saoCtuBoundary; } |
---|
| 792 | Void setLFCrossTileBoundaryFlag ( Bool val ) { m_loopFilterAcrossTilesEnabledFlag = val; } |
---|
| 793 | Bool getLFCrossTileBoundaryFlag () { return m_loopFilterAcrossTilesEnabledFlag; } |
---|
| 794 | Void setTileUniformSpacingFlag ( Bool b ) { m_tileUniformSpacingFlag = b; } |
---|
| 795 | Bool getTileUniformSpacingFlag () { return m_tileUniformSpacingFlag; } |
---|
| 796 | Void setNumColumnsMinus1 ( Int i ) { m_iNumColumnsMinus1 = i; } |
---|
| 797 | Int getNumColumnsMinus1 () { return m_iNumColumnsMinus1; } |
---|
| 798 | Void setColumnWidth ( const std::vector<Int>& columnWidth ) { m_tileColumnWidth = columnWidth; } |
---|
| 799 | UInt getColumnWidth ( UInt columnIdx ) { return m_tileColumnWidth[columnIdx]; } |
---|
| 800 | Void setNumRowsMinus1 ( Int i ) { m_iNumRowsMinus1 = i; } |
---|
| 801 | Int getNumRowsMinus1 () { return m_iNumRowsMinus1; } |
---|
| 802 | Void setRowHeight ( const std::vector<Int>& rowHeight) { m_tileRowHeight = rowHeight; } |
---|
| 803 | UInt getRowHeight ( UInt rowIdx ) { return m_tileRowHeight[rowIdx]; } |
---|
[56] | 804 | Void xCheckGSParameters(); |
---|
[1313] | 805 | Void setWaveFrontSynchro(Int iWaveFrontSynchro) { m_iWaveFrontSynchro = iWaveFrontSynchro; } |
---|
| 806 | Int getWaveFrontsynchro() { return m_iWaveFrontSynchro; } |
---|
| 807 | Void setDecodedPictureHashSEIEnabled(Int b) { m_decodedPictureHashSEIEnabled = b; } |
---|
| 808 | Int getDecodedPictureHashSEIEnabled() { return m_decodedPictureHashSEIEnabled; } |
---|
| 809 | Void setBufferingPeriodSEIEnabled(Int b) { m_bufferingPeriodSEIEnabled = b; } |
---|
| 810 | Int getBufferingPeriodSEIEnabled() { return m_bufferingPeriodSEIEnabled; } |
---|
| 811 | Void setPictureTimingSEIEnabled(Int b) { m_pictureTimingSEIEnabled = b; } |
---|
| 812 | Int getPictureTimingSEIEnabled() { return m_pictureTimingSEIEnabled; } |
---|
| 813 | Void setRecoveryPointSEIEnabled(Int b) { m_recoveryPointSEIEnabled = b; } |
---|
| 814 | Int getRecoveryPointSEIEnabled() { return m_recoveryPointSEIEnabled; } |
---|
| 815 | Void setToneMappingInfoSEIEnabled(Bool b) { m_toneMappingInfoSEIEnabled = b; } |
---|
| 816 | Bool getToneMappingInfoSEIEnabled() { return m_toneMappingInfoSEIEnabled; } |
---|
| 817 | Void setTMISEIToneMapId(Int b) { m_toneMapId = b; } |
---|
| 818 | Int getTMISEIToneMapId() { return m_toneMapId; } |
---|
| 819 | Void setTMISEIToneMapCancelFlag(Bool b) { m_toneMapCancelFlag=b; } |
---|
| 820 | Bool getTMISEIToneMapCancelFlag() { return m_toneMapCancelFlag; } |
---|
| 821 | Void setTMISEIToneMapPersistenceFlag(Bool b) { m_toneMapPersistenceFlag = b; } |
---|
| 822 | Bool getTMISEIToneMapPersistenceFlag() { return m_toneMapPersistenceFlag; } |
---|
| 823 | Void setTMISEICodedDataBitDepth(Int b) { m_codedDataBitDepth = b; } |
---|
| 824 | Int getTMISEICodedDataBitDepth() { return m_codedDataBitDepth; } |
---|
| 825 | Void setTMISEITargetBitDepth(Int b) { m_targetBitDepth = b; } |
---|
| 826 | Int getTMISEITargetBitDepth() { return m_targetBitDepth; } |
---|
| 827 | Void setTMISEIModelID(Int b) { m_modelId = b; } |
---|
| 828 | Int getTMISEIModelID() { return m_modelId; } |
---|
| 829 | Void setTMISEIMinValue(Int b) { m_minValue = b; } |
---|
| 830 | Int getTMISEIMinValue() { return m_minValue; } |
---|
| 831 | Void setTMISEIMaxValue(Int b) { m_maxValue = b; } |
---|
| 832 | Int getTMISEIMaxValue() { return m_maxValue; } |
---|
| 833 | Void setTMISEISigmoidMidpoint(Int b) { m_sigmoidMidpoint = b; } |
---|
| 834 | Int getTMISEISigmoidMidpoint() { return m_sigmoidMidpoint; } |
---|
| 835 | Void setTMISEISigmoidWidth(Int b) { m_sigmoidWidth = b; } |
---|
| 836 | Int getTMISEISigmoidWidth() { return m_sigmoidWidth; } |
---|
| 837 | Void setTMISEIStartOfCodedInterva( Int* p ) { m_startOfCodedInterval = p; } |
---|
| 838 | Int* getTMISEIStartOfCodedInterva() { return m_startOfCodedInterval; } |
---|
| 839 | Void setTMISEINumPivots(Int b) { m_numPivots = b; } |
---|
| 840 | Int getTMISEINumPivots() { return m_numPivots; } |
---|
| 841 | Void setTMISEICodedPivotValue( Int* p ) { m_codedPivotValue = p; } |
---|
| 842 | Int* getTMISEICodedPivotValue() { return m_codedPivotValue; } |
---|
| 843 | Void setTMISEITargetPivotValue( Int* p ) { m_targetPivotValue = p; } |
---|
| 844 | Int* getTMISEITargetPivotValue() { return m_targetPivotValue; } |
---|
| 845 | Void setTMISEICameraIsoSpeedIdc(Int b) { m_cameraIsoSpeedIdc = b; } |
---|
| 846 | Int getTMISEICameraIsoSpeedIdc() { return m_cameraIsoSpeedIdc; } |
---|
| 847 | Void setTMISEICameraIsoSpeedValue(Int b) { m_cameraIsoSpeedValue = b; } |
---|
| 848 | Int getTMISEICameraIsoSpeedValue() { return m_cameraIsoSpeedValue; } |
---|
| 849 | Void setTMISEIExposureIndexIdc(Int b) { m_exposureIndexIdc = b; } |
---|
| 850 | Int getTMISEIExposurIndexIdc() { return m_exposureIndexIdc; } |
---|
| 851 | Void setTMISEIExposureIndexValue(Int b) { m_exposureIndexValue = b; } |
---|
| 852 | Int getTMISEIExposurIndexValue() { return m_exposureIndexValue; } |
---|
| 853 | Void setTMISEIExposureCompensationValueSignFlag(Bool b) { m_exposureCompensationValueSignFlag = b; } |
---|
| 854 | Bool getTMISEIExposureCompensationValueSignFlag() { return m_exposureCompensationValueSignFlag; } |
---|
| 855 | Void setTMISEIExposureCompensationValueNumerator(Int b) { m_exposureCompensationValueNumerator = b; } |
---|
| 856 | Int getTMISEIExposureCompensationValueNumerator() { return m_exposureCompensationValueNumerator; } |
---|
| 857 | Void setTMISEIExposureCompensationValueDenomIdc(Int b) { m_exposureCompensationValueDenomIdc =b; } |
---|
| 858 | Int getTMISEIExposureCompensationValueDenomIdc() { return m_exposureCompensationValueDenomIdc; } |
---|
| 859 | Void setTMISEIRefScreenLuminanceWhite(Int b) { m_refScreenLuminanceWhite = b; } |
---|
| 860 | Int getTMISEIRefScreenLuminanceWhite() { return m_refScreenLuminanceWhite; } |
---|
| 861 | Void setTMISEIExtendedRangeWhiteLevel(Int b) { m_extendedRangeWhiteLevel = b; } |
---|
| 862 | Int getTMISEIExtendedRangeWhiteLevel() { return m_extendedRangeWhiteLevel; } |
---|
| 863 | Void setTMISEINominalBlackLevelLumaCodeValue(Int b) { m_nominalBlackLevelLumaCodeValue = b; } |
---|
| 864 | Int getTMISEINominalBlackLevelLumaCodeValue() { return m_nominalBlackLevelLumaCodeValue; } |
---|
| 865 | Void setTMISEINominalWhiteLevelLumaCodeValue(Int b) { m_nominalWhiteLevelLumaCodeValue = b; } |
---|
| 866 | Int getTMISEINominalWhiteLevelLumaCodeValue() { return m_nominalWhiteLevelLumaCodeValue; } |
---|
| 867 | Void setTMISEIExtendedWhiteLevelLumaCodeValue(Int b) { m_extendedWhiteLevelLumaCodeValue =b; } |
---|
| 868 | Int getTMISEIExtendedWhiteLevelLumaCodeValue() { return m_extendedWhiteLevelLumaCodeValue; } |
---|
| 869 | Void setFramePackingArrangementSEIEnabled(Int b) { m_framePackingSEIEnabled = b; } |
---|
| 870 | Int getFramePackingArrangementSEIEnabled() { return m_framePackingSEIEnabled; } |
---|
| 871 | Void setFramePackingArrangementSEIType(Int b) { m_framePackingSEIType = b; } |
---|
| 872 | Int getFramePackingArrangementSEIType() { return m_framePackingSEIType; } |
---|
| 873 | Void setFramePackingArrangementSEIId(Int b) { m_framePackingSEIId = b; } |
---|
| 874 | Int getFramePackingArrangementSEIId() { return m_framePackingSEIId; } |
---|
| 875 | Void setFramePackingArrangementSEIQuincunx(Int b) { m_framePackingSEIQuincunx = b; } |
---|
| 876 | Int getFramePackingArrangementSEIQuincunx() { return m_framePackingSEIQuincunx; } |
---|
| 877 | Void setFramePackingArrangementSEIInterpretation(Int b) { m_framePackingSEIInterpretation = b; } |
---|
| 878 | Int getFramePackingArrangementSEIInterpretation() { return m_framePackingSEIInterpretation; } |
---|
| 879 | Void setSegmentedRectFramePackingArrangementSEIEnabled(Int b) { m_segmentedRectFramePackingSEIEnabled = b; } |
---|
| 880 | Int getSegmentedRectFramePackingArrangementSEIEnabled() { return m_segmentedRectFramePackingSEIEnabled; } |
---|
| 881 | Void setSegmentedRectFramePackingArrangementSEICancel(Int b) { m_segmentedRectFramePackingSEICancel = b; } |
---|
| 882 | Int getSegmentedRectFramePackingArrangementSEICancel() { return m_segmentedRectFramePackingSEICancel; } |
---|
| 883 | Void setSegmentedRectFramePackingArrangementSEIType(Int b) { m_segmentedRectFramePackingSEIType = b; } |
---|
| 884 | Int getSegmentedRectFramePackingArrangementSEIType() { return m_segmentedRectFramePackingSEIType; } |
---|
| 885 | Void setSegmentedRectFramePackingArrangementSEIPersistence(Int b) { m_segmentedRectFramePackingSEIPersistence = b; } |
---|
| 886 | Int getSegmentedRectFramePackingArrangementSEIPersistence() { return m_segmentedRectFramePackingSEIPersistence; } |
---|
| 887 | Void setDisplayOrientationSEIAngle(Int b) { m_displayOrientationSEIAngle = b; } |
---|
| 888 | Int getDisplayOrientationSEIAngle() { return m_displayOrientationSEIAngle; } |
---|
| 889 | Void setTemporalLevel0IndexSEIEnabled(Int b) { m_temporalLevel0IndexSEIEnabled = b; } |
---|
| 890 | Int getTemporalLevel0IndexSEIEnabled() { return m_temporalLevel0IndexSEIEnabled; } |
---|
| 891 | Void setGradualDecodingRefreshInfoEnabled(Int b) { m_gradualDecodingRefreshInfoEnabled = b; } |
---|
| 892 | Int getGradualDecodingRefreshInfoEnabled() { return m_gradualDecodingRefreshInfoEnabled; } |
---|
| 893 | Void setNoDisplaySEITLayer(Int b) { m_noDisplaySEITLayer = b; } |
---|
| 894 | Int getNoDisplaySEITLayer() { return m_noDisplaySEITLayer; } |
---|
| 895 | Void setDecodingUnitInfoSEIEnabled(Int b) { m_decodingUnitInfoSEIEnabled = b; } |
---|
| 896 | Int getDecodingUnitInfoSEIEnabled() { return m_decodingUnitInfoSEIEnabled; } |
---|
| 897 | Void setSOPDescriptionSEIEnabled(Int b) { m_SOPDescriptionSEIEnabled = b; } |
---|
| 898 | Int getSOPDescriptionSEIEnabled() { return m_SOPDescriptionSEIEnabled; } |
---|
| 899 | Void setScalableNestingSEIEnabled(Int b) { m_scalableNestingSEIEnabled = b; } |
---|
| 900 | Int getScalableNestingSEIEnabled() { return m_scalableNestingSEIEnabled; } |
---|
| 901 | Void setTMCTSSEIEnabled(Bool b) { m_tmctsSEIEnabled = b; } |
---|
| 902 | Bool getTMCTSSEIEnabled() { return m_tmctsSEIEnabled; } |
---|
| 903 | Void setTimeCodeSEIEnabled(Bool b) { m_timeCodeSEIEnabled = b; } |
---|
| 904 | Bool getTimeCodeSEIEnabled() { return m_timeCodeSEIEnabled; } |
---|
| 905 | Void setNumberOfTimeSets(Int value) { m_timeCodeSEINumTs = value; } |
---|
| 906 | Int getNumberOfTimesets() { return m_timeCodeSEINumTs; } |
---|
| 907 | Void setTimeSet(TComSEITimeSet element, Int index) { m_timeSetArray[index] = element; } |
---|
| 908 | TComSEITimeSet &getTimeSet(Int index) { return m_timeSetArray[index]; } |
---|
| 909 | const TComSEITimeSet &getTimeSet(Int index) const { return m_timeSetArray[index]; } |
---|
| 910 | Void setKneeSEIEnabled(Int b) { m_kneeSEIEnabled = b; } |
---|
| 911 | Bool getKneeSEIEnabled() { return m_kneeSEIEnabled; } |
---|
| 912 | Void setKneeSEIId(Int b) { m_kneeSEIId = b; } |
---|
| 913 | Int getKneeSEIId() { return m_kneeSEIId; } |
---|
| 914 | Void setKneeSEICancelFlag(Bool b) { m_kneeSEICancelFlag=b; } |
---|
| 915 | Bool getKneeSEICancelFlag() { return m_kneeSEICancelFlag; } |
---|
| 916 | Void setKneeSEIPersistenceFlag(Bool b) { m_kneeSEIPersistenceFlag = b; } |
---|
| 917 | Bool getKneeSEIPersistenceFlag() { return m_kneeSEIPersistenceFlag; } |
---|
| 918 | Void setKneeSEIInputDrange(Int b) { m_kneeSEIInputDrange = b; } |
---|
| 919 | Int getKneeSEIInputDrange() { return m_kneeSEIInputDrange; } |
---|
| 920 | Void setKneeSEIInputDispLuminance(Int b) { m_kneeSEIInputDispLuminance = b; } |
---|
| 921 | Int getKneeSEIInputDispLuminance() { return m_kneeSEIInputDispLuminance; } |
---|
| 922 | Void setKneeSEIOutputDrange(Int b) { m_kneeSEIOutputDrange = b; } |
---|
| 923 | Int getKneeSEIOutputDrange() { return m_kneeSEIOutputDrange; } |
---|
| 924 | Void setKneeSEIOutputDispLuminance(Int b) { m_kneeSEIOutputDispLuminance = b; } |
---|
| 925 | Int getKneeSEIOutputDispLuminance() { return m_kneeSEIOutputDispLuminance; } |
---|
| 926 | Void setKneeSEINumKneePointsMinus1(Int b) { m_kneeSEINumKneePointsMinus1 = b; } |
---|
| 927 | Int getKneeSEINumKneePointsMinus1() { return m_kneeSEINumKneePointsMinus1; } |
---|
| 928 | Void setKneeSEIInputKneePoint(Int *p) { m_kneeSEIInputKneePoint = p; } |
---|
| 929 | Int* getKneeSEIInputKneePoint() { return m_kneeSEIInputKneePoint; } |
---|
| 930 | Void setKneeSEIOutputKneePoint(Int *p) { m_kneeSEIOutputKneePoint = p; } |
---|
| 931 | Int* getKneeSEIOutputKneePoint() { return m_kneeSEIOutputKneePoint; } |
---|
| 932 | Void setMasteringDisplaySEI(const TComSEIMasteringDisplay &src) { m_masteringDisplay = src; } |
---|
| 933 | const TComSEIMasteringDisplay &getMasteringDisplaySEI() const { return m_masteringDisplay; } |
---|
| 934 | #if NH_MV |
---|
| 935 | Bool getSubBitstreamPropSEIEnabled() { return m_subBistreamPropSEIEnabled;} |
---|
| 936 | Void setSubBitstreamPropSEIEnabled(Bool x) { m_subBistreamPropSEIEnabled = x;} |
---|
| 937 | |
---|
| 938 | Int getNumAdditionalSubStreams() { return m_numAdditionalSubStreams;} |
---|
| 939 | Void setNumAdditionalSubStreams(Int x) { m_numAdditionalSubStreams = x;} |
---|
[872] | 940 | |
---|
[1313] | 941 | std::vector<Int> const &getSubBitstreamMode() { return m_subBitstreamMode;} |
---|
| 942 | Int getSubBitstreamMode(Int idx) { return m_subBitstreamMode[idx];} |
---|
| 943 | Void setSubBitstreamMode(std::vector<Int> &x) { m_subBitstreamMode = x;} |
---|
[872] | 944 | |
---|
[1313] | 945 | std::vector<Int> const &getOutputLayerSetIdxToVps() { return m_outputLayerSetIdxToVps;} |
---|
| 946 | Int getOutputLayerSetIdxToVps(Int idx) { return m_outputLayerSetIdxToVps[idx];} |
---|
| 947 | Void setOutputLayerSetIdxToVps(std::vector<Int> &x) { m_outputLayerSetIdxToVps = x;} |
---|
| 948 | |
---|
| 949 | std::vector<Int> const &getHighestSublayerId() { return m_highestSublayerId;} |
---|
| 950 | Int getHighestSublayerId(Int idx) { return m_highestSublayerId[idx];} |
---|
| 951 | Void setHighestSublayerId(std::vector<Int> &x) { m_highestSublayerId = x;} |
---|
| 952 | |
---|
| 953 | std::vector<Int> const &getAvgBitRate() { return m_avgBitRate;} |
---|
| 954 | Int getAvgBitRate(Int idx) { return m_avgBitRate[idx];} |
---|
| 955 | Void setAvgBitRate(std::vector<Int> &x) { m_avgBitRate = x;} |
---|
| 956 | |
---|
| 957 | std::vector<Int> const &getMaxBitRate() { return m_maxBitRate;} |
---|
| 958 | Int getMaxBitRate(Int idx) { return m_maxBitRate[idx];} |
---|
| 959 | Void setMaxBitRate(std::vector<Int> &x) { m_maxBitRate = x;} |
---|
[872] | 960 | |
---|
[1313] | 961 | #endif |
---|
[872] | 962 | |
---|
[1313] | 963 | Void setUseWP ( Bool b ) { m_useWeightedPred = b; } |
---|
| 964 | Void setWPBiPred ( Bool b ) { m_useWeightedBiPred = b; } |
---|
| 965 | Bool getUseWP () { return m_useWeightedPred; } |
---|
| 966 | Bool getWPBiPred () { return m_useWeightedBiPred; } |
---|
| 967 | Void setLog2ParallelMergeLevelMinus2 ( UInt u ) { m_log2ParallelMergeLevelMinus2 = u; } |
---|
| 968 | UInt getLog2ParallelMergeLevelMinus2 () { return m_log2ParallelMergeLevelMinus2; } |
---|
| 969 | Void setMaxNumMergeCand ( UInt u ) { m_maxNumMergeCand = u; } |
---|
| 970 | UInt getMaxNumMergeCand () { return m_maxNumMergeCand; } |
---|
| 971 | Void setUseScalingListId ( ScalingListMode u ) { m_useScalingListId = u; } |
---|
| 972 | ScalingListMode getUseScalingListId () { return m_useScalingListId; } |
---|
| 973 | Void setScalingListFile ( Char* pch ) { m_scalingListFile = pch; } |
---|
| 974 | Char* getScalingListFile () { return m_scalingListFile; } |
---|
| 975 | Void setTMVPModeId ( Int u ) { m_TMVPModeId = u; } |
---|
| 976 | Int getTMVPModeId () { return m_TMVPModeId; } |
---|
| 977 | Void setSignHideFlag( Bool signHideFlag ) { m_signHideFlag = signHideFlag; } |
---|
| 978 | Bool getSignHideFlag() { return m_signHideFlag; } |
---|
| 979 | Bool getUseRateCtrl () { return m_RCEnableRateControl; } |
---|
| 980 | Void setUseRateCtrl ( Bool b ) { m_RCEnableRateControl = b; } |
---|
| 981 | Int getTargetBitrate () { return m_RCTargetBitrate; } |
---|
| 982 | Void setTargetBitrate ( Int bitrate ) { m_RCTargetBitrate = bitrate; } |
---|
| 983 | Int getKeepHierBit () { return m_RCKeepHierarchicalBit; } |
---|
| 984 | Void setKeepHierBit ( Int i ) { m_RCKeepHierarchicalBit = i; } |
---|
| 985 | Bool getLCULevelRC () { return m_RCLCULevelRC; } |
---|
| 986 | Void setLCULevelRC ( Bool b ) { m_RCLCULevelRC = b; } |
---|
| 987 | Bool getUseLCUSeparateModel () { return m_RCUseLCUSeparateModel; } |
---|
| 988 | Void setUseLCUSeparateModel ( Bool b ) { m_RCUseLCUSeparateModel = b; } |
---|
| 989 | Int getInitialQP () { return m_RCInitialQP; } |
---|
| 990 | Void setInitialQP ( Int QP ) { m_RCInitialQP = QP; } |
---|
| 991 | Bool getForceIntraQP () { return m_RCForceIntraQP; } |
---|
| 992 | Void setForceIntraQP ( Bool b ) { m_RCForceIntraQP = b; } |
---|
[872] | 993 | |
---|
[655] | 994 | #if KWU_RC_MADPRED_E0227 |
---|
[1313] | 995 | UInt getUseDepthMADPred () { return m_depthMADPred; } |
---|
| 996 | Void setUseDepthMADPred (UInt b) { m_depthMADPred = b; } |
---|
| 997 | #endif |
---|
| 998 | #if KWU_RC_VIEWRC_E0227 |
---|
| 999 | Bool getUseViewWiseRateCtrl () { return m_bViewWiseRateCtrl; } |
---|
| 1000 | Void setUseViewWiseRateCtrl (Bool b) { m_bViewWiseRateCtrl = b; } |
---|
[655] | 1001 | #endif |
---|
[1313] | 1002 | Bool getTransquantBypassEnableFlag() { return m_TransquantBypassEnableFlag; } |
---|
| 1003 | Void setTransquantBypassEnableFlag(Bool flag) { m_TransquantBypassEnableFlag = flag; } |
---|
| 1004 | Bool getCUTransquantBypassFlagForceValue() { return m_CUTransquantBypassFlagForce; } |
---|
| 1005 | Void setCUTransquantBypassFlagForceValue(Bool flag) { m_CUTransquantBypassFlagForce = flag; } |
---|
| 1006 | CostMode getCostMode( ) { return m_costMode; } |
---|
| 1007 | Void setCostMode(CostMode m ) { m_costMode = m; } |
---|
| 1008 | #if NH_MV |
---|
| 1009 | Void setVPS( TComVPS *p ) { m_cVPS = p; } |
---|
| 1010 | TComVPS* getVPS() { return m_cVPS; } |
---|
[608] | 1011 | #else |
---|
[1313] | 1012 | Void setVPS(TComVPS *p) { m_cVPS = *p; } |
---|
| 1013 | TComVPS * getVPS() { return &m_cVPS; } |
---|
[210] | 1014 | #endif |
---|
[758] | 1015 | |
---|
[1313] | 1016 | #if NH_3D_DLT |
---|
| 1017 | Void setDLT( TComDLT p ) { m_cDLT = p; } |
---|
| 1018 | TComDLT* getDLT() { return &m_cDLT; } |
---|
[758] | 1019 | #endif |
---|
[1313] | 1020 | Void setUseRecalculateQPAccordingToLambda (Bool b) { m_recalculateQPAccordingToLambda = b; } |
---|
| 1021 | Bool getUseRecalculateQPAccordingToLambda () { return m_recalculateQPAccordingToLambda; } |
---|
[758] | 1022 | |
---|
[1313] | 1023 | Void setUseStrongIntraSmoothing ( Bool b ) { m_useStrongIntraSmoothing = b; } |
---|
| 1024 | Bool getUseStrongIntraSmoothing () { return m_useStrongIntraSmoothing; } |
---|
[210] | 1025 | |
---|
[1313] | 1026 | Void setEfficientFieldIRAPEnabled( Bool b ) { m_bEfficientFieldIRAPEnabled = b; } |
---|
| 1027 | Bool getEfficientFieldIRAPEnabled( ) const { return m_bEfficientFieldIRAPEnabled; } |
---|
[608] | 1028 | |
---|
[1313] | 1029 | Void setHarmonizeGopFirstFieldCoupleEnabled( Bool b ) { m_bHarmonizeGopFirstFieldCoupleEnabled = b; } |
---|
| 1030 | Bool getHarmonizeGopFirstFieldCoupleEnabled( ) const { return m_bHarmonizeGopFirstFieldCoupleEnabled; } |
---|
[1124] | 1031 | |
---|
[1313] | 1032 | Void setActiveParameterSetsSEIEnabled ( Int b ) { m_activeParameterSetsSEIEnabled = b; } |
---|
| 1033 | Int getActiveParameterSetsSEIEnabled () { return m_activeParameterSetsSEIEnabled; } |
---|
| 1034 | Bool getVuiParametersPresentFlag() { return m_vuiParametersPresentFlag; } |
---|
| 1035 | Void setVuiParametersPresentFlag(Bool i) { m_vuiParametersPresentFlag = i; } |
---|
| 1036 | Bool getAspectRatioInfoPresentFlag() { return m_aspectRatioInfoPresentFlag; } |
---|
| 1037 | Void setAspectRatioInfoPresentFlag(Bool i) { m_aspectRatioInfoPresentFlag = i; } |
---|
| 1038 | Int getAspectRatioIdc() { return m_aspectRatioIdc; } |
---|
| 1039 | Void setAspectRatioIdc(Int i) { m_aspectRatioIdc = i; } |
---|
| 1040 | Int getSarWidth() { return m_sarWidth; } |
---|
| 1041 | Void setSarWidth(Int i) { m_sarWidth = i; } |
---|
| 1042 | Int getSarHeight() { return m_sarHeight; } |
---|
| 1043 | Void setSarHeight(Int i) { m_sarHeight = i; } |
---|
| 1044 | Bool getOverscanInfoPresentFlag() { return m_overscanInfoPresentFlag; } |
---|
| 1045 | Void setOverscanInfoPresentFlag(Bool i) { m_overscanInfoPresentFlag = i; } |
---|
| 1046 | Bool getOverscanAppropriateFlag() { return m_overscanAppropriateFlag; } |
---|
| 1047 | Void setOverscanAppropriateFlag(Bool i) { m_overscanAppropriateFlag = i; } |
---|
| 1048 | Bool getVideoSignalTypePresentFlag() { return m_videoSignalTypePresentFlag; } |
---|
| 1049 | Void setVideoSignalTypePresentFlag(Bool i) { m_videoSignalTypePresentFlag = i; } |
---|
| 1050 | Int getVideoFormat() { return m_videoFormat; } |
---|
| 1051 | Void setVideoFormat(Int i) { m_videoFormat = i; } |
---|
| 1052 | Bool getVideoFullRangeFlag() { return m_videoFullRangeFlag; } |
---|
| 1053 | Void setVideoFullRangeFlag(Bool i) { m_videoFullRangeFlag = i; } |
---|
| 1054 | Bool getColourDescriptionPresentFlag() { return m_colourDescriptionPresentFlag; } |
---|
| 1055 | Void setColourDescriptionPresentFlag(Bool i) { m_colourDescriptionPresentFlag = i; } |
---|
| 1056 | Int getColourPrimaries() { return m_colourPrimaries; } |
---|
| 1057 | Void setColourPrimaries(Int i) { m_colourPrimaries = i; } |
---|
| 1058 | Int getTransferCharacteristics() { return m_transferCharacteristics; } |
---|
| 1059 | Void setTransferCharacteristics(Int i) { m_transferCharacteristics = i; } |
---|
| 1060 | Int getMatrixCoefficients() { return m_matrixCoefficients; } |
---|
| 1061 | Void setMatrixCoefficients(Int i) { m_matrixCoefficients = i; } |
---|
| 1062 | Bool getChromaLocInfoPresentFlag() { return m_chromaLocInfoPresentFlag; } |
---|
| 1063 | Void setChromaLocInfoPresentFlag(Bool i) { m_chromaLocInfoPresentFlag = i; } |
---|
| 1064 | Int getChromaSampleLocTypeTopField() { return m_chromaSampleLocTypeTopField; } |
---|
| 1065 | Void setChromaSampleLocTypeTopField(Int i) { m_chromaSampleLocTypeTopField = i; } |
---|
| 1066 | Int getChromaSampleLocTypeBottomField() { return m_chromaSampleLocTypeBottomField; } |
---|
| 1067 | Void setChromaSampleLocTypeBottomField(Int i) { m_chromaSampleLocTypeBottomField = i; } |
---|
| 1068 | Bool getNeutralChromaIndicationFlag() { return m_neutralChromaIndicationFlag; } |
---|
| 1069 | Void setNeutralChromaIndicationFlag(Bool i) { m_neutralChromaIndicationFlag = i; } |
---|
| 1070 | Window &getDefaultDisplayWindow() { return m_defaultDisplayWindow; } |
---|
| 1071 | Void setDefaultDisplayWindow (Int offsetLeft, Int offsetRight, Int offsetTop, Int offsetBottom ) { m_defaultDisplayWindow.setWindow (offsetLeft, offsetRight, offsetTop, offsetBottom); } |
---|
| 1072 | Bool getFrameFieldInfoPresentFlag() { return m_frameFieldInfoPresentFlag; } |
---|
| 1073 | Void setFrameFieldInfoPresentFlag(Bool i) { m_frameFieldInfoPresentFlag = i; } |
---|
| 1074 | Bool getPocProportionalToTimingFlag() { return m_pocProportionalToTimingFlag; } |
---|
| 1075 | Void setPocProportionalToTimingFlag(Bool x) { m_pocProportionalToTimingFlag = x; } |
---|
| 1076 | Int getNumTicksPocDiffOneMinus1() { return m_numTicksPocDiffOneMinus1; } |
---|
| 1077 | Void setNumTicksPocDiffOneMinus1(Int x) { m_numTicksPocDiffOneMinus1 = x; } |
---|
| 1078 | Bool getBitstreamRestrictionFlag() { return m_bitstreamRestrictionFlag; } |
---|
| 1079 | Void setBitstreamRestrictionFlag(Bool i) { m_bitstreamRestrictionFlag = i; } |
---|
| 1080 | Bool getTilesFixedStructureFlag() { return m_tilesFixedStructureFlag; } |
---|
| 1081 | Void setTilesFixedStructureFlag(Bool i) { m_tilesFixedStructureFlag = i; } |
---|
| 1082 | Bool getMotionVectorsOverPicBoundariesFlag() { return m_motionVectorsOverPicBoundariesFlag; } |
---|
| 1083 | Void setMotionVectorsOverPicBoundariesFlag(Bool i) { m_motionVectorsOverPicBoundariesFlag = i; } |
---|
| 1084 | Int getMinSpatialSegmentationIdc() { return m_minSpatialSegmentationIdc; } |
---|
| 1085 | Void setMinSpatialSegmentationIdc(Int i) { m_minSpatialSegmentationIdc = i; } |
---|
| 1086 | Int getMaxBytesPerPicDenom() { return m_maxBytesPerPicDenom; } |
---|
| 1087 | Void setMaxBytesPerPicDenom(Int i) { m_maxBytesPerPicDenom = i; } |
---|
| 1088 | Int getMaxBitsPerMinCuDenom() { return m_maxBitsPerMinCuDenom; } |
---|
| 1089 | Void setMaxBitsPerMinCuDenom(Int i) { m_maxBitsPerMinCuDenom = i; } |
---|
| 1090 | Int getLog2MaxMvLengthHorizontal() { return m_log2MaxMvLengthHorizontal; } |
---|
| 1091 | Void setLog2MaxMvLengthHorizontal(Int i) { m_log2MaxMvLengthHorizontal = i; } |
---|
| 1092 | Int getLog2MaxMvLengthVertical() { return m_log2MaxMvLengthVertical; } |
---|
| 1093 | Void setLog2MaxMvLengthVertical(Int i) { m_log2MaxMvLengthVertical = i; } |
---|
| 1094 | |
---|
| 1095 | Bool getProgressiveSourceFlag() const { return m_progressiveSourceFlag; } |
---|
| 1096 | Void setProgressiveSourceFlag(Bool b) { m_progressiveSourceFlag = b; } |
---|
| 1097 | |
---|
| 1098 | Bool getInterlacedSourceFlag() const { return m_interlacedSourceFlag; } |
---|
| 1099 | Void setInterlacedSourceFlag(Bool b) { m_interlacedSourceFlag = b; } |
---|
| 1100 | |
---|
| 1101 | Bool getNonPackedConstraintFlag() const { return m_nonPackedConstraintFlag; } |
---|
| 1102 | Void setNonPackedConstraintFlag(Bool b) { m_nonPackedConstraintFlag = b; } |
---|
| 1103 | |
---|
| 1104 | Bool getFrameOnlyConstraintFlag() const { return m_frameOnlyConstraintFlag; } |
---|
| 1105 | Void setFrameOnlyConstraintFlag(Bool b) { m_frameOnlyConstraintFlag = b; } |
---|
| 1106 | |
---|
| 1107 | UInt getBitDepthConstraintValue() const { return m_bitDepthConstraintValue; } |
---|
| 1108 | Void setBitDepthConstraintValue(UInt v) { m_bitDepthConstraintValue=v; } |
---|
| 1109 | |
---|
| 1110 | ChromaFormat getChromaFormatConstraintValue() const { return m_chromaFormatConstraintValue; } |
---|
| 1111 | Void setChromaFormatConstraintValue(ChromaFormat v) { m_chromaFormatConstraintValue=v; } |
---|
| 1112 | |
---|
| 1113 | Bool getIntraConstraintFlag() const { return m_intraConstraintFlag; } |
---|
| 1114 | Void setIntraConstraintFlag(Bool b) { m_intraConstraintFlag=b; } |
---|
| 1115 | |
---|
| 1116 | Bool getOnePictureOnlyConstraintFlag() const { return m_onePictureOnlyConstraintFlag; } |
---|
| 1117 | Void setOnePictureOnlyConstraintFlag(Bool b) { m_onePictureOnlyConstraintFlag=b; } |
---|
| 1118 | |
---|
| 1119 | Bool getLowerBitRateConstraintFlag() const { return m_lowerBitRateConstraintFlag; } |
---|
| 1120 | Void setLowerBitRateConstraintFlag(Bool b) { m_lowerBitRateConstraintFlag=b; } |
---|
| 1121 | Bool getChromaSamplingFilterHintEnabled() { return m_chromaSamplingFilterHintEnabled;} |
---|
| 1122 | Void setChromaSamplingFilterHintEnabled(Bool i) { m_chromaSamplingFilterHintEnabled = i;} |
---|
| 1123 | Int getChromaSamplingHorFilterIdc() { return m_chromaSamplingHorFilterIdc;} |
---|
| 1124 | Void setChromaSamplingHorFilterIdc(Int i) { m_chromaSamplingHorFilterIdc = i;} |
---|
| 1125 | Int getChromaSamplingVerFilterIdc() { return m_chromaSamplingVerFilterIdc;} |
---|
| 1126 | Void setChromaSamplingVerFilterIdc(Int i) { m_chromaSamplingVerFilterIdc = i;} |
---|
| 1127 | |
---|
| 1128 | Void setSummaryOutFilename(const std::string &s) { m_summaryOutFilename = s; } |
---|
| 1129 | const std::string& getSummaryOutFilename() const { return m_summaryOutFilename; } |
---|
| 1130 | Void setSummaryPicFilenameBase(const std::string &s) { m_summaryPicFilenameBase = s; } |
---|
| 1131 | const std::string& getSummaryPicFilenameBase() const { return m_summaryPicFilenameBase; } |
---|
| 1132 | |
---|
| 1133 | Void setSummaryVerboseness(UInt v) { m_summaryVerboseness = v; } |
---|
| 1134 | UInt getSummaryVerboseness( ) const { return m_summaryVerboseness; } |
---|
| 1135 | |
---|
| 1136 | #if NH_3D |
---|
[1124] | 1137 | // Only flags that are not in the SPS3dExtension should go here. |
---|
[608] | 1138 | /// 3D Tools |
---|
[115] | 1139 | |
---|
[608] | 1140 | //==== CAMERA PARAMETERS ========== |
---|
| 1141 | Void setCameraParameters ( TAppComCamPara* c) { m_cameraParameters = c; } |
---|
[56] | 1142 | |
---|
[1313] | 1143 | #if NH_3D_VSO |
---|
[608] | 1144 | //==== VSO ========== |
---|
| 1145 | Void setRenderModelParameters ( TRenModSetupStrParser* c ) { m_renderModelParameters = c; } |
---|
| 1146 | Bool getUseVSO () { return m_bUseVSO; } |
---|
| 1147 | Void setUseVSO ( Bool b ) { m_bUseVSO = b; } |
---|
| 1148 | UInt getVSOMode () { return m_uiVSOMode; } |
---|
| 1149 | Void setVSOMode ( UInt ui ) { m_uiVSOMode = ui; } |
---|
| 1150 | Bool getForceLambdaScaleVSO () { return m_bForceLambdaScale; } |
---|
| 1151 | Void setForceLambdaScaleVSO ( Bool b ) { m_bForceLambdaScale = b; }; |
---|
| 1152 | Double getLambdaScaleVSO () { return m_dLambdaScaleVSO; } |
---|
| 1153 | Void setLambdaScaleVSO ( Double d ) { m_dLambdaScaleVSO = d; }; |
---|
| 1154 | Bool getAllowNegDist () { return m_bAllowNegDist; } |
---|
| 1155 | Void setAllowNegDist ( Bool b ) { m_bAllowNegDist = b; }; |
---|
[443] | 1156 | |
---|
[608] | 1157 | // LGE_WVSO_A0119 |
---|
| 1158 | Bool getUseWVSO () { return m_bUseWVSO; } |
---|
| 1159 | Void setUseWVSO ( Bool b ) { m_bUseWVSO = b; } |
---|
| 1160 | Int getVSOWeight () { return m_iVSOWeight; } |
---|
| 1161 | Void setVSOWeight ( Int i ) { m_iVSOWeight = i; } |
---|
| 1162 | Int getVSDWeight () { return m_iVSDWeight; } |
---|
| 1163 | Void setVSDWeight ( Int i ) { m_iVSDWeight = i; } |
---|
| 1164 | Int getDWeight () { return m_iDWeight; } |
---|
| 1165 | Void setDWeight ( Int i ) { m_iDWeight = i; } |
---|
[443] | 1166 | |
---|
[608] | 1167 | // SAIT_VSO_EST_A0033 |
---|
| 1168 | Bool getUseEstimatedVSD () { return m_bUseEstimatedVSD; } |
---|
| 1169 | Void setUseEstimatedVSD ( Bool b ) { m_bUseEstimatedVSD = b; } |
---|
| 1170 | Double getDispCoeff () { return m_dDispCoeff; } |
---|
| 1171 | Void setDispCoeff ( Double d ) { m_dDispCoeff = d; } |
---|
[1313] | 1172 | #endif // NH_3D_VSO |
---|
[443] | 1173 | |
---|
[608] | 1174 | Bool getUseDMM () { return m_useDMM; } |
---|
| 1175 | Void setUseDMM ( Bool b) { m_useDMM = b; } |
---|
| 1176 | Bool getUseSDC () { return m_useSDC; } |
---|
| 1177 | Void setUseSDC ( Bool b) { m_useSDC = b; } |
---|
[1124] | 1178 | |
---|
[608] | 1179 | Bool getUseDLT () { return m_useDLT; } |
---|
| 1180 | Void setUseDLT ( Bool b) { m_useDLT = b; } |
---|
[1313] | 1181 | |
---|
[608] | 1182 | Void setUseQTL ( Bool b ) { m_bUseQTL = b; } |
---|
| 1183 | Bool getUseQTL () { return m_bUseQTL; } |
---|
[1179] | 1184 | |
---|
[1313] | 1185 | Void setProfileIdc( Int a ) { assert( a == 1 || a == 6 || a == 8 ); m_profileIdc = a; } |
---|
| 1186 | Bool decProcAnnexI() { assert( m_profileIdc != -1 ); return ( m_profileIdc == Profile::MAIN3D ); } |
---|
| 1187 | #endif // NH_3D |
---|
[2] | 1188 | }; |
---|
| 1189 | |
---|
[56] | 1190 | //! \} |
---|
| 1191 | |
---|
[2] | 1192 | #endif // !defined(AFX_TENCCFG_H__6B99B797_F4DA_4E46_8E78_7656339A6C41__INCLUDED_) |
---|