source: 3DVCSoftware/trunk/source/Lib/TLibEncoder/TEncCfg.h @ 840

Last change on this file since 840 was 833, checked in by tech, 11 years ago

Merged 9.3-dev0@831.

  • Property svn:eol-style set to native
File size: 57.8 KB
RevLine 
[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
[56]4 * granted under this license. 
[5]5 *
[608]6 * Copyright (c) 2010-2013, 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>
[608]48#if H_3D
49#include "TAppCommon/TAppComCamPara.h"
50#include "TLibRenderer/TRenModSetupStrParser.h"
51#endif
[2]52
[608]53struct 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#if AUTO_INTER_RPS
68  Int m_interRPSPrediction;
69#else
[56]70  Bool m_interRPSPrediction;
[608]71#endif
[56]72  Int m_deltaRPS;
73  Int m_numRefIdc;
74  Int m_refIdc[MAX_NUM_REF_PICS+1];
[608]75#if H_MV
76  Int m_numActiveRefLayerPics;
77  Int m_interLayerPredLayerIdc [MAX_NUM_REF_PICS];
78  Int m_interViewRefPosL[2][MAX_NUM_REF_PICS]; 
79#endif
80  GOPEntry()
[56]81  : m_POC(-1)
[608]82  , m_QPOffset(0)
83  , m_QPFactor(0)
84  , m_tcOffsetDiv2(0)
85  , m_betaOffsetDiv2(0)
86  , m_temporalId(0)
87  , m_refPic(false)
88  , m_numRefPicsActive(0)
89  , m_sliceType('P')
90  , m_numRefPics(0)
91  , m_interRPSPrediction(false)
92  , m_deltaRPS(0)
93  , m_numRefIdc(0)
94#if H_MV
95  , m_numActiveRefLayerPics(0)
96#endif
[56]97  {
98    ::memset( m_referencePics, 0, sizeof(m_referencePics) );
99    ::memset( m_usedByCurrPic, 0, sizeof(m_usedByCurrPic) );
100    ::memset( m_refIdc,        0, sizeof(m_refIdc) );
[608]101#if H_MV
102    ::memset( m_interLayerPredLayerIdc,   0, sizeof(m_interLayerPredLayerIdc) );
103    ::memset( m_interViewRefPosL[0], -1, sizeof(m_interViewRefPosL[0]) );
104    ::memset( m_interViewRefPosL[1], -1, sizeof(m_interViewRefPosL[1]) );
105#endif
[56]106  }
107};
[2]108
[608]109std::istringstream &operator>>(std::istringstream &in, GOPEntry &entry);     //input
[56]110//! \ingroup TLibEncoder
111//! \{
112
[2]113// ====================================================================================================================
114// Class definition
115// ====================================================================================================================
116
117/// encoder configuration class
118class TEncCfg
119{
120protected:
121  //==== File I/O ========
122  Int       m_iFrameRate;
123  Int       m_FrameSkip;
124  Int       m_iSourceWidth;
125  Int       m_iSourceHeight;
[608]126  Int       m_conformanceMode;
127  Window    m_conformanceWindow;
128  Int       m_framesToBeEncoded;
[56]129  Double    m_adLambdaModifier[ MAX_TLAYER ];
[2]130
[608]131  /* profile & level */
132  Profile::Name m_profile;
133  Level::Tier   m_levelTier;
134  Level::Name   m_level;
135  Bool m_progressiveSourceFlag;
136  Bool m_interlacedSourceFlag;
137  Bool m_nonPackedConstraintFlag;
138  Bool m_frameOnlyConstraintFlag;
139
[2]140  //====== Coding Structure ========
[56]141  UInt      m_uiIntraPeriod;
[2]142  UInt      m_uiDecodingRefreshType;            ///< the type of decoding refresh employed for the random access.
[56]143  Int       m_iGOPSize;
[608]144#if H_MV
145  GOPEntry  m_GOPList[MAX_GOP+1];
146#else
147  GOPEntry  m_GOPList[MAX_GOP];
148#endif
[56]149  Int       m_extraRPSs;
150  Int       m_maxDecPicBuffering[MAX_TLAYER];
151  Int       m_numReorderPics[MAX_TLAYER];
152 
[2]153  Int       m_iQP;                              //  if (AdaptiveQP == OFF)
[56]154 
[2]155  Int       m_aiPad[2];
[56]156 
[2]157
[56]158  Int       m_iMaxRefPicNum;                     ///< this is used to mimic the sliding mechanism used by the decoder
159                                                 // TODO: We need to have a common sliding mechanism used by both the encoder and decoder
160
161  Int       m_maxTempLayer;                      ///< Max temporal layer
162  Bool m_useAMP;
[2]163  //======= Transform =============
164  UInt      m_uiQuadtreeTULog2MaxSize;
165  UInt      m_uiQuadtreeTULog2MinSize;
166  UInt      m_uiQuadtreeTUMaxDepthInter;
167  UInt      m_uiQuadtreeTUMaxDepthIntra;
[56]168 
[2]169  //====== Loop/Deblock Filter ========
170  Bool      m_bLoopFilterDisable;
[608]171  Bool      m_loopFilterOffsetInPPS;
[56]172  Int       m_loopFilterBetaOffsetDiv2;
173  Int       m_loopFilterTcOffsetDiv2;
174  Bool      m_DeblockingFilterControlPresent;
[608]175  Bool      m_DeblockingFilterMetric;
[2]176  Bool      m_bUseSAO;
[56]177  Int       m_maxNumOffsetsPerPic;
[443]178  Bool      m_saoLcuBoundary;
179  Bool      m_saoLcuBasedOptimization;
[2]180
[56]181  //====== Lossless ========
182  Bool      m_useLossless;
[2]183  //====== Motion search ========
184  Int       m_iFastSearch;                      //  0:Full search  1:Diamond  2:PMVFAST
185  Int       m_iSearchRange;                     //  0:Full frame
186  Int       m_bipredSearchRange;
[608]187
[56]188  //====== Quality control ========
[2]189  Int       m_iMaxDeltaQP;                      //  Max. absolute delta QP (1:default)
[56]190  Int       m_iMaxCuDQPDepth;                   //  Max. depth for a minimum CuDQP (0:default)
[2]191
[608]192  Int       m_chromaCbQpOffset;                 //  Chroma Cb QP Offset (0:default)
193  Int       m_chromaCrQpOffset;                 //  Chroma Cr Qp Offset (0:default)
[56]194
195#if ADAPTIVE_QP_SELECTION
196  Bool      m_bUseAdaptQpSelect;
197#endif
198
199  Bool      m_bUseAdaptiveQP;
200  Int       m_iQPAdaptationRange;
201 
[2]202  //====== Tool list ========
203  Bool      m_bUseSBACRD;
204  Bool      m_bUseASR;
205  Bool      m_bUseHADME;
[608]206  Bool      m_useRDOQ;
207  Bool      m_useRDOQTS;
208  UInt      m_rdPenalty;
[2]209  Bool      m_bUseFastEnc;
[56]210  Bool      m_bUseEarlyCU;
211  Bool      m_useFastDecisionForMerge;
212  Bool      m_bUseCbfFastMode;
[608]213  Bool      m_useEarlySkipDetection;
214  Bool      m_useTransformSkip;
215  Bool      m_useTransformSkipFast;
[2]216  Int*      m_aidQP;
217  UInt      m_uiDeltaQpRD;
[56]218 
[2]219  Bool      m_bUseConstrainedIntraPred;
[56]220  Bool      m_usePCM;
221  UInt      m_pcmLog2MaxSize;
222  UInt      m_uiPCMLog2MinSize;
[2]223  //====== Slice ========
[608]224  Int       m_sliceMode;
225  Int       m_sliceArgument; 
226  //====== Dependent Slice ========
227  Int       m_sliceSegmentMode;
228  Int       m_sliceSegmentArgument;
[2]229  Bool      m_bLFCrossSliceBoundaryFlag;
230
[56]231  Bool      m_bPCMInputBitDepthFlag;
232  UInt      m_uiPCMBitDepthLuma;
233  UInt      m_uiPCMBitDepthChroma;
234  Bool      m_bPCMFilterDisableFlag;
[608]235  Bool      m_loopFilterAcrossTilesEnabledFlag;
[56]236  Int       m_iUniformSpacingIdr;
237  Int       m_iNumColumnsMinus1;
238  UInt*     m_puiColumnWidth;
239  Int       m_iNumRowsMinus1;
240  UInt*     m_puiRowHeight;
241
242  Int       m_iWaveFrontSynchro;
243  Int       m_iWaveFrontSubstreams;
244
[608]245  Int       m_decodedPictureHashSEIEnabled;              ///< Checksum(3)/CRC(2)/MD5(1)/disable(0) acting on decoded picture hash SEI message
246  Int       m_bufferingPeriodSEIEnabled;
247  Int       m_pictureTimingSEIEnabled;
248  Int       m_recoveryPointSEIEnabled;
249  Bool      m_toneMappingInfoSEIEnabled;
250  Int       m_toneMapId;
251  Bool      m_toneMapCancelFlag;
252  Bool      m_toneMapPersistenceFlag;
253  Int       m_codedDataBitDepth;
254  Int       m_targetBitDepth;
255  Int       m_modelId; 
256  Int       m_minValue;
257  Int       m_maxValue;
258  Int       m_sigmoidMidpoint;
259  Int       m_sigmoidWidth;
260  Int       m_numPivots;
261  Int       m_cameraIsoSpeedIdc;
262  Int       m_cameraIsoSpeedValue;
263  Int       m_exposureCompensationValueSignFlag;
264  Int       m_exposureCompensationValueNumerator;
265  Int       m_exposureCompensationValueDenomIdc;
266  Int       m_refScreenLuminanceWhite;
267  Int       m_extendedRangeWhiteLevel;
268  Int       m_nominalBlackLevelLumaCodeValue;
269  Int       m_nominalWhiteLevelLumaCodeValue;
270  Int       m_extendedWhiteLevelLumaCodeValue;
271  Int*      m_startOfCodedInterval;
272  Int*      m_codedPivotValue;
273  Int*      m_targetPivotValue;
274  Int       m_framePackingSEIEnabled;
275  Int       m_framePackingSEIType;
276  Int       m_framePackingSEIId;
277  Int       m_framePackingSEIQuincunx;
278  Int       m_framePackingSEIInterpretation;
279  Int       m_displayOrientationSEIAngle;
280  Int       m_temporalLevel0IndexSEIEnabled;
281  Int       m_gradualDecodingRefreshInfoEnabled;
282  Int       m_decodingUnitInfoSEIEnabled;
283  Int       m_SOPDescriptionSEIEnabled;
284  Int       m_scalableNestingSEIEnabled;
[2]285  //====== Weighted Prediction ========
[608]286  Bool      m_useWeightedPred;       //< Use of Weighting Prediction (P_SLICE)
287  Bool      m_useWeightedBiPred;    //< Use of Bi-directional Weighting Prediction (B_SLICE)
288  UInt      m_log2ParallelMergeLevelMinus2;       ///< Parallel merge estimation region
289  UInt      m_maxNumMergeCand;                    ///< Maximum number of merge candidates
[56]290  Int       m_useScalingListId;            ///< Using quantization matrix i.e. 0=off, 1=default, 2=file.
[608]291  Char*     m_scalingListFile;          ///< quantization matrix file name
292  Int       m_TMVPModeId;
[56]293  Int       m_signHideFlag;
[608]294#if RATE_CONTROL_LAMBDA_DOMAIN
295  Bool      m_RCEnableRateControl;
296  Int       m_RCTargetBitrate;
297#if M0036_RC_IMPROVEMENT
298  Int       m_RCKeepHierarchicalBit;
299#else
300  Bool      m_RCKeepHierarchicalBit;
[77]301#endif
[608]302  Bool      m_RCLCULevelRC;
303  Bool      m_RCUseLCUSeparateModel;
304  Int       m_RCInitialQP;
305  Bool      m_RCForceIntraQP;
[655]306
307#if KWU_RC_MADPRED_E0227
308  UInt       m_depthMADPred;
309#endif
310#if KWU_RC_VIEWRC_E0227
311  Bool      m_bViewWiseRateCtrl;
312#endif
[608]313#else
314  Bool      m_enableRateCtrl;                                ///< Flag for using rate control algorithm
315  Int       m_targetBitrate;                                 ///< target bitrate
316  Int       m_numLCUInUnit;                                  ///< Total number of LCUs in a frame should be divided by the NumLCUInUnit
[655]317
318#if KWU_RC_MADPRED_E0227
319  UInt       m_depthMADPred;
[42]320#endif
[655]321#if KWU_RC_VIEWRC_E0227
322  Bool      m_bViewWiseRateCtrl;
323#endif
324#endif
[608]325  Bool      m_TransquantBypassEnableFlag;                     ///< transquant_bypass_enable_flag setting in PPS.
326  Bool      m_CUTransquantBypassFlagValue;                    ///< if transquant_bypass_enable_flag, the fixed value to use for the per-CU cu_transquant_bypass_flag.
327#if H_MV
328  TComVPS*  m_cVPS;                                           ///< pointer to VPS, same for all layers
329#else
330  TComVPS                    m_cVPS;
[56]331#endif
[758]332
[773]333#if H_3D
[758]334  TComDLT*  m_cDLT;
335#endif
336
[608]337  Bool      m_recalculateQPAccordingToLambda;                 ///< recalculate QP value according to the lambda value
338  Int       m_activeParameterSetsSEIEnabled;                  ///< enable active parameter set SEI message
339  Bool      m_vuiParametersPresentFlag;                       ///< enable generation of VUI parameters
340  Bool      m_aspectRatioInfoPresentFlag;                     ///< Signals whether aspect_ratio_idc is present
341  Int       m_aspectRatioIdc;                                 ///< aspect_ratio_idc
342  Int       m_sarWidth;                                       ///< horizontal size of the sample aspect ratio
343  Int       m_sarHeight;                                      ///< vertical size of the sample aspect ratio
344  Bool      m_overscanInfoPresentFlag;                        ///< Signals whether overscan_appropriate_flag is present
345  Bool      m_overscanAppropriateFlag;                        ///< Indicates whether conformant decoded pictures are suitable for display using overscan
346  Bool      m_videoSignalTypePresentFlag;                     ///< Signals whether video_format, video_full_range_flag, and colour_description_present_flag are present
347  Int       m_videoFormat;                                    ///< Indicates representation of pictures
348  Bool      m_videoFullRangeFlag;                             ///< Indicates the black level and range of luma and chroma signals
349  Bool      m_colourDescriptionPresentFlag;                   ///< Signals whether colour_primaries, transfer_characteristics and matrix_coefficients are present
350  Int       m_colourPrimaries;                                ///< Indicates chromaticity coordinates of the source primaries
351  Int       m_transferCharacteristics;                        ///< Indicates the opto-electronic transfer characteristics of the source
352  Int       m_matrixCoefficients;                             ///< Describes the matrix coefficients used in deriving luma and chroma from RGB primaries
353  Bool      m_chromaLocInfoPresentFlag;                       ///< Signals whether chroma_sample_loc_type_top_field and chroma_sample_loc_type_bottom_field are present
354  Int       m_chromaSampleLocTypeTopField;                    ///< Specifies the location of chroma samples for top field
355  Int       m_chromaSampleLocTypeBottomField;                 ///< Specifies the location of chroma samples for bottom field
356  Bool      m_neutralChromaIndicationFlag;                    ///< Indicates that the value of all decoded chroma samples is equal to 1<<(BitDepthCr-1)
357  Window    m_defaultDisplayWindow;                           ///< Represents the default display window parameters
358  Bool      m_frameFieldInfoPresentFlag;                      ///< Indicates that pic_struct and other field coding related values are present in picture timing SEI messages
359  Bool      m_pocProportionalToTimingFlag;                    ///< Indicates that the POC value is proportional to the output time w.r.t. first picture in CVS
360  Int       m_numTicksPocDiffOneMinus1;                       ///< Number of ticks minus 1 that for a POC difference of one
361  Bool      m_bitstreamRestrictionFlag;                       ///< Signals whether bitstream restriction parameters are present
362  Bool      m_tilesFixedStructureFlag;                        ///< Indicates that each active picture parameter set has the same values of the syntax elements related to tiles
363  Bool      m_motionVectorsOverPicBoundariesFlag;             ///< Indicates that no samples outside the picture boundaries are used for inter prediction
364  Int       m_minSpatialSegmentationIdc;                      ///< Indicates the maximum size of the spatial segments in the pictures in the coded video sequence
365  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
366  Int       m_maxBitsPerMinCuDenom;                           ///< Indicates an upper bound for the number of bits of coding_unit() data
367  Int       m_log2MaxMvLengthHorizontal;                      ///< Indicate the maximum absolute value of a decoded horizontal MV component in quarter-pel luma units
368  Int       m_log2MaxMvLengthVertical;                        ///< Indicate the maximum absolute value of a decoded vertical MV component in quarter-pel luma units
[2]369
[608]370  Bool      m_useStrongIntraSmoothing;                        ///< enable the use of strong intra smoothing (bi_linear interpolation) for 32x32 blocks when reference samples are flat.
[210]371
[608]372#if H_MV
373  Int       m_layerId;
374  Int       m_layerIdInVps;
375  Int       m_viewId;
[622]376  Int       m_viewIndex; 
[608]377#endif
[115]378
[608]379#if H_3D
380  Bool      m_isDepth;
[56]381
[608]382  //====== Camera Parameters ======
383  UInt      m_uiCamParPrecision;
384  Bool      m_bCamParInSliceHeader;
385  Int**     m_aaiCodedScale;
386  Int**     m_aaiCodedOffset;
387  TAppComCamPara* m_cameraParameters; 
388 
389#if H_3D_VSO
390  //====== View Synthesis Optimization ======
391  TRenModSetupStrParser* m_renderModelParameters; 
392  Bool      m_bUseVSO;
393  Bool      m_bForceLambdaScale;
394  Bool      m_bAllowNegDist;
395  Double    m_dLambdaScaleVSO;
396  UInt      m_uiVSOMode;
397  // LGE_WVSO_A0119
398  Bool      m_bUseWVSO;
399  Int       m_iVSOWeight;
400  Int       m_iVSDWeight;
401  Int       m_iDWeight;
402  // SAIT_VSO_EST_A0033
403  Bool      m_bUseEstimatedVSD; 
404  Double    m_dDispCoeff;
[5]405#endif
[608]406#if H_3D_ARP
407  UInt      m_uiUseAdvResPred;
408  UInt      m_uiARPStepNum;
[5]409#endif
[773]410#if H_3D_SPIVMP
[724]411  Int      m_iSubPULog2Size;
412#endif
[833]413#if QC_SPIVMP_MPI_G0119
414  Int      m_iSubPUMPILog2Size;
415#endif
[608]416#if H_3D_IC
417  Bool      m_bUseIC;
[5]418#endif
[655]419#if H_3D_INTER_SDC
[608]420  bool      m_bInterSDC;
[443]421#endif
[833]422#if H_3D_DBBP
423  Bool      m_bUseDBBP;
424#endif
[608]425  //====== Depth Intra Modes ======
426#if H_3D_DIM
427  Bool      m_useDMM;
428  Bool      m_useSDC;
429  Bool      m_useDLT;
[443]430#endif
[773]431#if H_3D_IV_MERGE
[724]432  Bool      m_useMPI;
433#endif
[608]434#if H_3D_QTLPC
435  Bool      m_bUseQTL;
436  Bool      m_bUsePC;
[443]437#endif
[608]438#endif
439public:
440  TEncCfg()
441  : m_puiColumnWidth()
442  , m_puiRowHeight()
443#if H_MV
444  , m_layerId(-1)
445  , m_layerIdInVps(-1)
446  , m_viewId(-1)
[622]447  , m_viewIndex(-1)
[608]448#if H_3D
449  , m_isDepth(false)
450  , m_bUseVSO(false)
451#endif
452#endif
453  {}
[443]454
[56]455  virtual ~TEncCfg()
456  {
[608]457    delete[] m_puiColumnWidth;
458    delete[] m_puiRowHeight;
[56]459  }
460 
[608]461  Void setProfile(Profile::Name profile) { m_profile = profile; }
462  Void setLevel(Level::Tier tier, Level::Name level) { m_levelTier = tier; m_level = level; }
463
[2]464  Void      setFrameRate                    ( Int   i )      { m_iFrameRate = i; }
[608]465  Void      setFrameSkip                    ( UInt i ) { m_FrameSkip = i; }
[2]466  Void      setSourceWidth                  ( Int   i )      { m_iSourceWidth = i; }
467  Void      setSourceHeight                 ( Int   i )      { m_iSourceHeight = i; }
[608]468
469  Window   &getConformanceWindow()                           { return m_conformanceWindow; }
470  Void      setConformanceWindow (Int confLeft, Int confRight, Int confTop, Int confBottom ) { m_conformanceWindow.setWindow (confLeft, confRight, confTop, confBottom); }
471
472  Void      setFramesToBeEncoded            ( Int   i )      { m_framesToBeEncoded = i; }
[56]473 
[608]474#if H_MV
475  Void      setLayerId                       ( Int layerId )      { m_layerId = layerId; }
476  Int       getLayerId                       ()                   { return m_layerId;    }
477  Int       getLayerIdInVps                  ()                   { return m_layerIdInVps; }
478  Void      setLayerIdInVps                  ( Int layerIdInVps)  { m_layerIdInVps = layerIdInVps; }
479  Void      setViewId                        ( Int viewId  )      { m_viewId  = viewId;  }
480  Int       getViewId                        ()                   { return m_viewId;    }
[622]481  Void      setViewIndex                     ( Int viewIndex  )   { m_viewIndex  = viewIndex;  }
482  Int       getViewIndex                     ()                   { return m_viewIndex;    }
[608]483#if H_3D
484  Void      setIsDepth                       ( Bool isDepth )   { m_isDepth = isDepth; }
485  Bool      getIsDepth                       ()                 { return m_isDepth; }
486#endif
487#endif
[2]488  //====== Coding Structure ========
[56]489  Void      setIntraPeriod                  ( Int   i )      { m_uiIntraPeriod = (UInt)i; }
[2]490  Void      setDecodingRefreshType          ( Int   i )      { m_uiDecodingRefreshType = (UInt)i; }
[56]491  Void      setGOPSize                      ( Int   i )      { m_iGOPSize = i; }
[608]492#if H_MV
493  Void      setGopList                      ( GOPEntry*  GOPList ) {  for ( Int i = 0; i < MAX_GOP+1; i++ ) m_GOPList[i] = GOPList[i]; }
494#else
495  Void      setGopList                      ( GOPEntry*  GOPList ) {  for ( Int i = 0; i < MAX_GOP; i++ ) m_GOPList[i] = GOPList[i]; }
496#endif
[56]497  Void      setExtraRPSs                    ( Int   i )      { m_extraRPSs = i; }
[608]498  GOPEntry  getGOPEntry                     ( Int   i )      { return m_GOPList[i]; }
[56]499  Void      setMaxDecPicBuffering           ( UInt u, UInt tlayer ) { m_maxDecPicBuffering[tlayer] = u;    }
500  Void      setNumReorderPics               ( Int  i, UInt tlayer ) { m_numReorderPics[tlayer] = i;    }
501 
502  Void      setQP                           ( Int   i )      { m_iQP = i; }
503 
504  Void      setPad                          ( Int*  iPad                   )      { for ( Int i = 0; i < 2; i++ ) m_aiPad[i] = iPad[i]; }
505 
506  Int       getMaxRefPicNum                 ()                              { return m_iMaxRefPicNum;           }
507  Void      setMaxRefPicNum                 ( Int iMaxRefPicNum )           { m_iMaxRefPicNum = iMaxRefPicNum;  }
[2]508
[56]509  Bool      getMaxTempLayer                 ()                              { return m_maxTempLayer;              } 
510  Void      setMaxTempLayer                 ( Int maxTempLayer )            { m_maxTempLayer = maxTempLayer;      }
[2]511
[608]512#if H_3D_ARP
513  UInt       getUseAdvRP                    ( )              { return m_uiUseAdvResPred; }
514  Void       setUseAdvRP                    ( UInt  u )      { m_uiUseAdvResPred = u;    }
515
516  UInt       getARPStepNum                  ()               { return m_uiARPStepNum;    }
517  Void       setARPStepNum                  ( UInt  u )      { m_uiARPStepNum = u;       }
[5]518#endif
[773]519#if H_3D_SPIVMP
[724]520  Int        getSubPULog2Size                   ()                   { return m_iSubPULog2Size;}
521  Void       setSubPULog2Size                   (Int u)              { m_iSubPULog2Size = u; }     
522#endif
[833]523#if QC_SPIVMP_MPI_G0119
524  Int        getSubPUMPILog2Size            ()               { return m_iSubPUMPILog2Size;}
525  Void       setSubPUMPILog2Size            (Int u)          { m_iSubPUMPILog2Size = u;   }     
526#endif
[608]527#if H_3D_IC
528  Void       setUseIC                       ( Bool bVal )    { m_bUseIC = bVal; }
529  Bool       getUseIC                       ()               { return m_bUseIC; }
[5]530#endif
[655]531#if H_3D_INTER_SDC
[608]532  Void       setInterSDCEnable              ( Bool bVal )    { m_bInterSDC = bVal; }
533  Bool       getInterSDCEnable              ()               { return m_bInterSDC; }
[5]534#endif
[833]535#if H_3D_DBBP
536  Void       setUseDBBP                     ( Bool  b )      { m_bUseDBBP   = b; }
537  Bool       getUseDBBP()                                    { return m_bUseDBBP;     }
538#endif
[2]539  //======== Transform =============
540  Void      setQuadtreeTULog2MaxSize        ( UInt  u )      { m_uiQuadtreeTULog2MaxSize = u; }
541  Void      setQuadtreeTULog2MinSize        ( UInt  u )      { m_uiQuadtreeTULog2MinSize = u; }
542  Void      setQuadtreeTUMaxDepthInter      ( UInt  u )      { m_uiQuadtreeTUMaxDepthInter = u; }
543  Void      setQuadtreeTUMaxDepthIntra      ( UInt  u )      { m_uiQuadtreeTUMaxDepthIntra = u; }
[56]544 
545  Void setUseAMP( Bool b ) { m_useAMP = b; }
546 
[2]547  //====== Loop/Deblock Filter ========
548  Void      setLoopFilterDisable            ( Bool  b )      { m_bLoopFilterDisable       = b; }
[608]549  Void      setLoopFilterOffsetInPPS        ( Bool  b )      { m_loopFilterOffsetInPPS      = b; }
[56]550  Void      setLoopFilterBetaOffset         ( Int   i )      { m_loopFilterBetaOffsetDiv2  = i; }
551  Void      setLoopFilterTcOffset           ( Int   i )      { m_loopFilterTcOffsetDiv2    = i; }
552  Void      setDeblockingFilterControlPresent ( Bool b ) { m_DeblockingFilterControlPresent = b; }
[608]553  Void      setDeblockingFilterMetric       ( Bool  b )      { m_DeblockingFilterMetric = b; }
[2]554
555  //====== Motion search ========
556  Void      setFastSearch                   ( Int   i )      { m_iFastSearch = i; }
557  Void      setSearchRange                  ( Int   i )      { m_iSearchRange = i; }
558  Void      setBipredSearchRange            ( Int   i )      { m_bipredSearchRange = i; }
[56]559
560  //====== Quality control ========
561  Void      setMaxDeltaQP                   ( Int   i )      { m_iMaxDeltaQP = i; }
562  Void      setMaxCuDQPDepth                ( Int   i )      { m_iMaxCuDQPDepth = i; }
563
[608]564  Void      setChromaCbQpOffset             ( Int   i )      { m_chromaCbQpOffset = i; }
565  Void      setChromaCrQpOffset             ( Int   i )      { m_chromaCrQpOffset = i; }
[56]566
567#if ADAPTIVE_QP_SELECTION
568  Void      setUseAdaptQpSelect             ( Bool   i ) { m_bUseAdaptQpSelect    = i; }
569  Bool      getUseAdaptQpSelect             ()           { return   m_bUseAdaptQpSelect; }
570#endif
571
572  Void      setUseAdaptiveQP                ( Bool  b )      { m_bUseAdaptiveQP = b; }
573  Void      setQPAdaptationRange            ( Int   i )      { m_iQPAdaptationRange = i; }
574 
575  //====== Lossless ========
576  Void      setUseLossless                  (Bool    b  )        { m_useLossless = b;  }
[2]577  //====== Sequence ========
578  Int       getFrameRate                    ()      { return  m_iFrameRate; }
[608]579  UInt      getFrameSkip                    ()      { return  m_FrameSkip; }
[2]580  Int       getSourceWidth                  ()      { return  m_iSourceWidth; }
581  Int       getSourceHeight                 ()      { return  m_iSourceHeight; }
[608]582  Int       getFramesToBeEncoded            ()      { return  m_framesToBeEncoded; }
[56]583  void setLambdaModifier                    ( UInt uiIndex, Double dValue ) { m_adLambdaModifier[ uiIndex ] = dValue; }
584  Double getLambdaModifier                  ( UInt uiIndex ) const { return m_adLambdaModifier[ uiIndex ]; }
[2]585
586  //==== Coding Structure ========
[56]587  UInt      getIntraPeriod                  ()      { return  m_uiIntraPeriod; }
[2]588  UInt      getDecodingRefreshType          ()      { return  m_uiDecodingRefreshType; }
[56]589  Int       getGOPSize                      ()      { return  m_iGOPSize; }
590  Int       getMaxDecPicBuffering           (UInt tlayer) { return m_maxDecPicBuffering[tlayer]; }
591  Int       getNumReorderPics               (UInt tlayer) { return m_numReorderPics[tlayer]; }
[2]592  Int       getQP                           ()      { return  m_iQP; }
[56]593 
[2]594  Int       getPad                          ( Int i )      { assert (i < 2 );                      return  m_aiPad[i]; }
[56]595 
[2]596  //======== Transform =============
597  UInt      getQuadtreeTULog2MaxSize        ()      const { return m_uiQuadtreeTULog2MaxSize; }
598  UInt      getQuadtreeTULog2MinSize        ()      const { return m_uiQuadtreeTULog2MinSize; }
599  UInt      getQuadtreeTUMaxDepthInter      ()      const { return m_uiQuadtreeTUMaxDepthInter; }
600  UInt      getQuadtreeTUMaxDepthIntra      ()      const { return m_uiQuadtreeTUMaxDepthIntra; }
[56]601 
[2]602  //==== Loop/Deblock Filter ========
603  Bool      getLoopFilterDisable            ()      { return  m_bLoopFilterDisable;       }
[608]604  Bool      getLoopFilterOffsetInPPS        ()      { return m_loopFilterOffsetInPPS; }
[56]605  Int       getLoopFilterBetaOffset         ()      { return m_loopFilterBetaOffsetDiv2; }
606  Int       getLoopFilterTcOffset           ()      { return m_loopFilterTcOffsetDiv2; }
607  Bool      getDeblockingFilterControlPresent()  { return  m_DeblockingFilterControlPresent; }
[608]608  Bool      getDeblockingFilterMetric       ()      { return m_DeblockingFilterMetric; }
[2]609
610  //==== Motion search ========
611  Int       getFastSearch                   ()      { return  m_iFastSearch; }
612  Int       getSearchRange                  ()      { return  m_iSearchRange; }
613
[56]614  //==== Quality control ========
615  Int       getMaxDeltaQP                   ()      { return  m_iMaxDeltaQP; }
616  Int       getMaxCuDQPDepth                ()      { return  m_iMaxCuDQPDepth; }
617  Bool      getUseAdaptiveQP                ()      { return  m_bUseAdaptiveQP; }
618  Int       getQPAdaptationRange            ()      { return  m_iQPAdaptationRange; }
619  //====== Lossless ========
620  Bool      getUseLossless                  ()      { return  m_useLossless;  }
621 
[2]622  //==== Tool list ========
623  Void      setUseSBACRD                    ( Bool  b )     { m_bUseSBACRD  = b; }
624  Void      setUseASR                       ( Bool  b )     { m_bUseASR     = b; }
625  Void      setUseHADME                     ( Bool  b )     { m_bUseHADME   = b; }
[608]626  Void      setUseRDOQ                      ( Bool  b )     { m_useRDOQ    = b; }
627  Void      setUseRDOQTS                    ( Bool  b )     { m_useRDOQTS  = b; }
628  Void      setRDpenalty                 ( UInt  b )     { m_rdPenalty  = b; }
[56]629  Void      setUseFastEnc                   ( Bool  b )     { m_bUseFastEnc = b; }
630  Void      setUseEarlyCU                   ( Bool  b )     { m_bUseEarlyCU = b; }
631  Void      setUseFastDecisionForMerge      ( Bool  b )     { m_useFastDecisionForMerge = b; }
632  Void      setUseCbfFastMode            ( Bool  b )     { m_bUseCbfFastMode = b; }
[608]633  Void      setUseEarlySkipDetection        ( Bool  b )     { m_useEarlySkipDetection = b; }
[2]634  Void      setUseConstrainedIntraPred      ( Bool  b )     { m_bUseConstrainedIntraPred = b; }
[56]635  Void      setPCMInputBitDepthFlag         ( Bool  b )     { m_bPCMInputBitDepthFlag = b; }
636  Void      setPCMFilterDisableFlag         ( Bool  b )     {  m_bPCMFilterDisableFlag = b; }
637  Void      setUsePCM                       ( Bool  b )     {  m_usePCM = b;               }
638  Void      setPCMLog2MaxSize               ( UInt u )      { m_pcmLog2MaxSize = u;      }
639  Void      setPCMLog2MinSize               ( UInt u )     { m_uiPCMLog2MinSize = u;      }
[2]640  Void      setdQPs                         ( Int*  p )     { m_aidQP       = p; }
641  Void      setDeltaQpRD                    ( UInt  u )     {m_uiDeltaQpRD  = u; }
642  Bool      getUseSBACRD                    ()      { return m_bUseSBACRD;  }
643  Bool      getUseASR                       ()      { return m_bUseASR;     }
644  Bool      getUseHADME                     ()      { return m_bUseHADME;   }
[608]645  Bool      getUseRDOQ                      ()      { return m_useRDOQ;    }
646  Bool      getUseRDOQTS                    ()      { return m_useRDOQTS;  }
647  Int      getRDpenalty                  ()      { return m_rdPenalty;  }
[56]648  Bool      getUseFastEnc                   ()      { return m_bUseFastEnc; }
649  Bool      getUseEarlyCU                   ()      { return m_bUseEarlyCU; }
650  Bool      getUseFastDecisionForMerge      ()      { return m_useFastDecisionForMerge; }
651  Bool      getUseCbfFastMode           ()      { return m_bUseCbfFastMode; }
[608]652  Bool      getUseEarlySkipDetection        ()      { return m_useEarlySkipDetection; }
[2]653  Bool      getUseConstrainedIntraPred      ()      { return m_bUseConstrainedIntraPred; }
[608]654  Bool      getPCMInputBitDepthFlag         ()      { return m_bPCMInputBitDepthFlag;   }
[56]655  Bool      getPCMFilterDisableFlag         ()      { return m_bPCMFilterDisableFlag;   } 
656  Bool      getUsePCM                       ()      { return m_usePCM;                 }
657  UInt      getPCMLog2MaxSize               ()      { return m_pcmLog2MaxSize;  }
658  UInt      getPCMLog2MinSize               ()      { return  m_uiPCMLog2MinSize;  }
659
[608]660  Bool getUseTransformSkip                             ()      { return m_useTransformSkip;        }
661  Void setUseTransformSkip                             ( Bool b ) { m_useTransformSkip  = b;       }
662  Bool getUseTransformSkipFast                         ()      { return m_useTransformSkipFast;    }
663  Void setUseTransformSkipFast                         ( Bool b ) { m_useTransformSkipFast  = b;   }
[2]664  Int*      getdQPs                         ()      { return m_aidQP;       }
665  UInt      getDeltaQpRD                    ()      { return m_uiDeltaQpRD; }
[56]666
[2]667  //====== Slice ========
[608]668  Void  setSliceMode                   ( Int  i )       { m_sliceMode = i;              }
669  Void  setSliceArgument               ( Int  i )       { m_sliceArgument = i;          }
670  Int   getSliceMode                   ()              { return m_sliceMode;           }
671  Int   getSliceArgument               ()              { return m_sliceArgument;       }
672  //====== Dependent Slice ========
673  Void  setSliceSegmentMode            ( Int  i )      { m_sliceSegmentMode = i;       }
674  Void  setSliceSegmentArgument        ( Int  i )      { m_sliceSegmentArgument = i;   }
675  Int   getSliceSegmentMode            ()              { return m_sliceSegmentMode;    }
676  Int   getSliceSegmentArgument        ()              { return m_sliceSegmentArgument;}
677  Void      setLFCrossSliceBoundaryFlag     ( Bool   bValue  )    { m_bLFCrossSliceBoundaryFlag = bValue; }
678  Bool      getLFCrossSliceBoundaryFlag     ()                    { return m_bLFCrossSliceBoundaryFlag;   }
[56]679
[608]680  Void      setUseSAO                  (Bool bVal)     {m_bUseSAO = bVal;}
681  Bool      getUseSAO                  ()              {return m_bUseSAO;}
[56]682  Void  setMaxNumOffsetsPerPic                   (Int iVal)            { m_maxNumOffsetsPerPic = iVal; }
683  Int   getMaxNumOffsetsPerPic                   ()                    { return m_maxNumOffsetsPerPic; }
[443]684  Void  setSaoLcuBoundary              (Bool val)      { m_saoLcuBoundary = val; }
685  Bool  getSaoLcuBoundary              ()              { return m_saoLcuBoundary; }
686  Void  setSaoLcuBasedOptimization               (Bool val)            { m_saoLcuBasedOptimization = val; }
687  Bool  getSaoLcuBasedOptimization               ()                    { return m_saoLcuBasedOptimization; }
[608]688  Void  setLFCrossTileBoundaryFlag               ( Bool   val  )       { m_loopFilterAcrossTilesEnabledFlag = val; }
689  Bool  getLFCrossTileBoundaryFlag               ()                    { return m_loopFilterAcrossTilesEnabledFlag;   }
[56]690  Void  setUniformSpacingIdr           ( Int i )           { m_iUniformSpacingIdr = i; }
691  Int   getUniformSpacingIdr           ()                  { return m_iUniformSpacingIdr; }
692  Void  setNumColumnsMinus1            ( Int i )           { m_iNumColumnsMinus1 = i; }
693  Int   getNumColumnsMinus1            ()                  { return m_iNumColumnsMinus1; }
[608]694  Void  setColumnWidth ( UInt* columnWidth )
[56]695  {
696    if( m_iUniformSpacingIdr == 0 && m_iNumColumnsMinus1 > 0 )
697    {
[608]698      Int  m_iWidthInCU = ( m_iSourceWidth%g_uiMaxCUWidth ) ? m_iSourceWidth/g_uiMaxCUWidth + 1 : m_iSourceWidth/g_uiMaxCUWidth;
699      m_puiColumnWidth = new UInt[ m_iNumColumnsMinus1 ];
[56]700
[608]701      for(Int i=0; i<m_iNumColumnsMinus1; i++)
[56]702      {
[608]703        m_puiColumnWidth[i] = columnWidth[i];
[56]704        printf("col: m_iWidthInCU= %4d i=%4d width= %4d\n",m_iWidthInCU,i,m_puiColumnWidth[i]); //AFU
705      }
706    }
707  }
708  UInt  getColumnWidth                 ( UInt columnidx )  { return *( m_puiColumnWidth + columnidx ); }
709  Void  setNumRowsMinus1               ( Int i )           { m_iNumRowsMinus1 = i; }
710  Int   getNumRowsMinus1               ()                  { return m_iNumRowsMinus1; }
[608]711  Void  setRowHeight (UInt* rowHeight)
[56]712  {
713    if( m_iUniformSpacingIdr == 0 && m_iNumRowsMinus1 > 0 )
714    {
[608]715      Int  m_iHeightInCU = ( m_iSourceHeight%g_uiMaxCUHeight ) ? m_iSourceHeight/g_uiMaxCUHeight + 1 : m_iSourceHeight/g_uiMaxCUHeight;
716      m_puiRowHeight = new UInt[ m_iNumRowsMinus1 ];
[56]717
[608]718      for(Int i=0; i<m_iNumRowsMinus1; i++)
[56]719      {
[608]720        m_puiRowHeight[i] = rowHeight[i];
[56]721        printf("row: m_iHeightInCU=%4d i=%4d height=%4d\n",m_iHeightInCU,i,m_puiRowHeight[i]); //AFU
722      }
723    }
724  }
725  UInt  getRowHeight                   ( UInt rowIdx )     { return *( m_puiRowHeight + rowIdx ); }
726  Void  xCheckGSParameters();
727  Void  setWaveFrontSynchro(Int iWaveFrontSynchro)       { m_iWaveFrontSynchro = iWaveFrontSynchro; }
728  Int   getWaveFrontsynchro()                            { return m_iWaveFrontSynchro; }
729  Void  setWaveFrontSubstreams(Int iWaveFrontSubstreams) { m_iWaveFrontSubstreams = iWaveFrontSubstreams; }
730  Int   getWaveFrontSubstreams()                         { return m_iWaveFrontSubstreams; }
[608]731  Void  setDecodedPictureHashSEIEnabled(Int b)           { m_decodedPictureHashSEIEnabled = b; }
732  Int   getDecodedPictureHashSEIEnabled()                { return m_decodedPictureHashSEIEnabled; }
733  Void  setBufferingPeriodSEIEnabled(Int b)              { m_bufferingPeriodSEIEnabled = b; }
734  Int   getBufferingPeriodSEIEnabled()                   { return m_bufferingPeriodSEIEnabled; }
735  Void  setPictureTimingSEIEnabled(Int b)                { m_pictureTimingSEIEnabled = b; }
736  Int   getPictureTimingSEIEnabled()                     { return m_pictureTimingSEIEnabled; }
737  Void  setRecoveryPointSEIEnabled(Int b)                { m_recoveryPointSEIEnabled = b; }
738  Int   getRecoveryPointSEIEnabled()                     { return m_recoveryPointSEIEnabled; }
739  Void  setToneMappingInfoSEIEnabled(Bool b)                 {  m_toneMappingInfoSEIEnabled = b;  }
740  Bool  getToneMappingInfoSEIEnabled()                       {  return m_toneMappingInfoSEIEnabled;  }
741  Void  setTMISEIToneMapId(Int b)                            {  m_toneMapId = b;  }
742  Int   getTMISEIToneMapId()                                 {  return m_toneMapId;  }
743  Void  setTMISEIToneMapCancelFlag(Bool b)                   {  m_toneMapCancelFlag=b;  }
744  Bool  getTMISEIToneMapCancelFlag()                         {  return m_toneMapCancelFlag;  }
745  Void  setTMISEIToneMapPersistenceFlag(Bool b)              {  m_toneMapPersistenceFlag = b;  }
746  Bool   getTMISEIToneMapPersistenceFlag()                   {  return m_toneMapPersistenceFlag;  }
747  Void  setTMISEICodedDataBitDepth(Int b)                    {  m_codedDataBitDepth = b;  }
748  Int   getTMISEICodedDataBitDepth()                         {  return m_codedDataBitDepth;  }
749  Void  setTMISEITargetBitDepth(Int b)                       {  m_targetBitDepth = b;  }
750  Int   getTMISEITargetBitDepth()                            {  return m_targetBitDepth;  }
751  Void  setTMISEIModelID(Int b)                              {  m_modelId = b;  }
752  Int   getTMISEIModelID()                                   {  return m_modelId;  }
753  Void  setTMISEIMinValue(Int b)                             {  m_minValue = b;  }
754  Int   getTMISEIMinValue()                                  {  return m_minValue;  }
755  Void  setTMISEIMaxValue(Int b)                             {  m_maxValue = b;  }
756  Int   getTMISEIMaxValue()                                  {  return m_maxValue;  }
757  Void  setTMISEISigmoidMidpoint(Int b)                      {  m_sigmoidMidpoint = b;  }
758  Int   getTMISEISigmoidMidpoint()                           {  return m_sigmoidMidpoint;  }
759  Void  setTMISEISigmoidWidth(Int b)                         {  m_sigmoidWidth = b;  }
760  Int   getTMISEISigmoidWidth()                              {  return m_sigmoidWidth;  }
761  Void  setTMISEIStartOfCodedInterva( Int*  p )              {  m_startOfCodedInterval = p;  }
762  Int*  getTMISEIStartOfCodedInterva()                       {  return m_startOfCodedInterval;  }
763  Void  setTMISEINumPivots(Int b)                            {  m_numPivots = b;  }
764  Int   getTMISEINumPivots()                                 {  return m_numPivots;  }
765  Void  setTMISEICodedPivotValue( Int*  p )                  {  m_codedPivotValue = p;  }
766  Int*  getTMISEICodedPivotValue()                           {  return m_codedPivotValue;  }
767  Void  setTMISEITargetPivotValue( Int*  p )                 {  m_targetPivotValue = p;  }
768  Int*  getTMISEITargetPivotValue()                          {  return m_targetPivotValue;  }
769  Void  setTMISEICameraIsoSpeedIdc(Int b)                    {  m_cameraIsoSpeedIdc = b;  }
770  Int   getTMISEICameraIsoSpeedIdc()                         {  return m_cameraIsoSpeedIdc;  }
771  Void  setTMISEICameraIsoSpeedValue(Int b)                  {  m_cameraIsoSpeedValue = b;  }
772  Int   getTMISEICameraIsoSpeedValue()                       {  return m_cameraIsoSpeedValue;  }
773  Void  setTMISEIExposureCompensationValueSignFlag(Int b)    {  m_exposureCompensationValueSignFlag = b;  }
774  Int   getTMISEIExposureCompensationValueSignFlag()         {  return m_exposureCompensationValueSignFlag;  }
775  Void  setTMISEIExposureCompensationValueNumerator(Int b)   {  m_exposureCompensationValueNumerator = b;  }
776  Int   getTMISEIExposureCompensationValueNumerator()        {  return m_exposureCompensationValueNumerator;  }
777  Void  setTMISEIExposureCompensationValueDenomIdc(Int b)    {  m_exposureCompensationValueDenomIdc =b;  }
778  Int   getTMISEIExposureCompensationValueDenomIdc()         {  return m_exposureCompensationValueDenomIdc;  }
779  Void  setTMISEIRefScreenLuminanceWhite(Int b)              {  m_refScreenLuminanceWhite = b;  }
780  Int   getTMISEIRefScreenLuminanceWhite()                   {  return m_refScreenLuminanceWhite;  }
781  Void  setTMISEIExtendedRangeWhiteLevel(Int b)              {  m_extendedRangeWhiteLevel = b;  }
782  Int   getTMISEIExtendedRangeWhiteLevel()                   {  return m_extendedRangeWhiteLevel;  }
783  Void  setTMISEINominalBlackLevelLumaCodeValue(Int b)       {  m_nominalBlackLevelLumaCodeValue = b;  }
784  Int   getTMISEINominalBlackLevelLumaCodeValue()            {  return m_nominalBlackLevelLumaCodeValue;  }
785  Void  setTMISEINominalWhiteLevelLumaCodeValue(Int b)       {  m_nominalWhiteLevelLumaCodeValue = b;  }
786  Int   getTMISEINominalWhiteLevelLumaCodeValue()            {  return m_nominalWhiteLevelLumaCodeValue;  }
787  Void  setTMISEIExtendedWhiteLevelLumaCodeValue(Int b)      {  m_extendedWhiteLevelLumaCodeValue =b;  }
788  Int   getTMISEIExtendedWhiteLevelLumaCodeValue()           {  return m_extendedWhiteLevelLumaCodeValue;  }
789  Void  setFramePackingArrangementSEIEnabled(Int b)      { m_framePackingSEIEnabled = b; }
790  Int   getFramePackingArrangementSEIEnabled()           { return m_framePackingSEIEnabled; }
791  Void  setFramePackingArrangementSEIType(Int b)         { m_framePackingSEIType = b; }
792  Int   getFramePackingArrangementSEIType()              { return m_framePackingSEIType; }
793  Void  setFramePackingArrangementSEIId(Int b)           { m_framePackingSEIId = b; }
794  Int   getFramePackingArrangementSEIId()                { return m_framePackingSEIId; }
795  Void  setFramePackingArrangementSEIQuincunx(Int b)     { m_framePackingSEIQuincunx = b; }
796  Int   getFramePackingArrangementSEIQuincunx()          { return m_framePackingSEIQuincunx; }
797  Void  setFramePackingArrangementSEIInterpretation(Int b)  { m_framePackingSEIInterpretation = b; }
798  Int   getFramePackingArrangementSEIInterpretation()    { return m_framePackingSEIInterpretation; }
799  Void  setDisplayOrientationSEIAngle(Int b)             { m_displayOrientationSEIAngle = b; }
800  Int   getDisplayOrientationSEIAngle()                  { return m_displayOrientationSEIAngle; }
801  Void  setTemporalLevel0IndexSEIEnabled(Int b)          { m_temporalLevel0IndexSEIEnabled = b; }
802  Int   getTemporalLevel0IndexSEIEnabled()               { return m_temporalLevel0IndexSEIEnabled; }
803  Void  setGradualDecodingRefreshInfoEnabled(Int b)      { m_gradualDecodingRefreshInfoEnabled = b;    }
804  Int   getGradualDecodingRefreshInfoEnabled()           { return m_gradualDecodingRefreshInfoEnabled; }
805  Void  setDecodingUnitInfoSEIEnabled(Int b)                { m_decodingUnitInfoSEIEnabled = b;    }
806  Int   getDecodingUnitInfoSEIEnabled()                     { return m_decodingUnitInfoSEIEnabled; }
807  Void  setSOPDescriptionSEIEnabled(Int b)                { m_SOPDescriptionSEIEnabled = b; }
808  Int   getSOPDescriptionSEIEnabled()                     { return m_SOPDescriptionSEIEnabled; }
809  Void  setScalableNestingSEIEnabled(Int b)                { m_scalableNestingSEIEnabled = b; }
810  Int   getScalableNestingSEIEnabled()                     { return m_scalableNestingSEIEnabled; }
811  Void      setUseWP               ( Bool b )    { m_useWeightedPred   = b;    }
812  Void      setWPBiPred            ( Bool b )    { m_useWeightedBiPred = b;    }
813  Bool      getUseWP               ()            { return m_useWeightedPred;   }
814  Bool      getWPBiPred            ()            { return m_useWeightedBiPred; }
815  Void      setLog2ParallelMergeLevelMinus2   ( UInt u )    { m_log2ParallelMergeLevelMinus2       = u;    }
816  UInt      getLog2ParallelMergeLevelMinus2   ()            { return m_log2ParallelMergeLevelMinus2;       }
817  Void      setMaxNumMergeCand                ( UInt u )    { m_maxNumMergeCand = u;      }
818  UInt      getMaxNumMergeCand                ()            { return m_maxNumMergeCand;   }
[56]819  Void      setUseScalingListId    ( Int  u )    { m_useScalingListId       = u;   }
820  Int       getUseScalingListId    ()            { return m_useScalingListId;      }
[608]821  Void      setScalingListFile     ( Char*  pch ){ m_scalingListFile     = pch; }
822  Char*     getScalingListFile     ()            { return m_scalingListFile;    }
823  Void      setTMVPModeId ( Int  u ) { m_TMVPModeId = u;    }
824  Int       getTMVPModeId ()         { return m_TMVPModeId; }
825  Void      setSignHideFlag( Int signHideFlag ) { m_signHideFlag = signHideFlag; }
[56]826  Int       getSignHideFlag()                    { return m_signHideFlag; }
[608]827#if RATE_CONTROL_LAMBDA_DOMAIN
828  Bool      getUseRateCtrl         ()              { return m_RCEnableRateControl;   }
829  Void      setUseRateCtrl         ( Bool b )      { m_RCEnableRateControl = b;      }
830  Int       getTargetBitrate       ()              { return m_RCTargetBitrate;       }
831  Void      setTargetBitrate       ( Int bitrate ) { m_RCTargetBitrate  = bitrate;   }
832#if M0036_RC_IMPROVEMENT
833  Int       getKeepHierBit         ()              { return m_RCKeepHierarchicalBit; }
834  Void      setKeepHierBit         ( Int i )       { m_RCKeepHierarchicalBit = i;    }
835#else
836  Bool      getKeepHierBit         ()              { return m_RCKeepHierarchicalBit; }
837  Void      setKeepHierBit         ( Bool b )      { m_RCKeepHierarchicalBit = b;    }
[77]838#endif
[608]839  Bool      getLCULevelRC          ()              { return m_RCLCULevelRC; }
840  Void      setLCULevelRC          ( Bool b )      { m_RCLCULevelRC = b; }
841  Bool      getUseLCUSeparateModel ()              { return m_RCUseLCUSeparateModel; }
842  Void      setUseLCUSeparateModel ( Bool b )      { m_RCUseLCUSeparateModel = b;    }
843  Int       getInitialQP           ()              { return m_RCInitialQP;           }
844  Void      setInitialQP           ( Int QP )      { m_RCInitialQP = QP;             }
845  Bool      getForceIntraQP        ()              { return m_RCForceIntraQP;        }
846  Void      setForceIntraQP        ( Bool b )      { m_RCForceIntraQP = b;           }
[655]847
848#if KWU_RC_MADPRED_E0227
849  UInt      getUseDepthMADPred    ()                { return m_depthMADPred;        }
850  Void      setUseDepthMADPred    (UInt b)          { m_depthMADPred    = b;        }
851#endif
852#if KWU_RC_VIEWRC_E0227
853  Bool      getUseViewWiseRateCtrl    ()                { return m_bViewWiseRateCtrl;        }
854  Void      setUseViewWiseRateCtrl    (Bool b)          { m_bViewWiseRateCtrl    = b;        }
855#endif
[608]856#else
857  Bool      getUseRateCtrl    ()                { return m_enableRateCtrl;    }
858  Void      setUseRateCtrl    (Bool flag)       { m_enableRateCtrl = flag;    }
859  Int       getTargetBitrate  ()                { return m_targetBitrate;     }
860  Void      setTargetBitrate  (Int target)      { m_targetBitrate  = target;  }
861  Int       getNumLCUInUnit   ()                { return m_numLCUInUnit;      }
862  Void      setNumLCUInUnit   (Int numLCUs)     { m_numLCUInUnit   = numLCUs; }
[655]863
864#if KWU_RC_MADPRED_E0227
865  UInt      getUseDepthMADPred    ()                { return m_depthMADPred;        }
866  Void      setUseDepthMADPred    (UInt b)          { m_depthMADPred    = b;        }
[56]867#endif
[655]868#if KWU_RC_VIEWRC_E0227
869  Bool      getUseViewWiseRateCtrl    ()                { return m_bViewWiseRateCtrl;        }
870  Void      setUseViewWiseRateCtrl    (Bool b)          { m_bViewWiseRateCtrl    = b;        }
871#endif
872#endif
[608]873  Bool      getTransquantBypassEnableFlag()           { return m_TransquantBypassEnableFlag; }
874  Void      setTransquantBypassEnableFlag(Bool flag)  { m_TransquantBypassEnableFlag = flag; }
875  Bool      getCUTransquantBypassFlagValue()          { return m_CUTransquantBypassFlagValue; }
876  Void      setCUTransquantBypassFlagValue(Bool flag) { m_CUTransquantBypassFlagValue = flag; }
877#if H_MV
878  Void      setVPS           ( TComVPS *p ) { m_cVPS = p;    }
879  TComVPS*  getVPS           ()             { return m_cVPS; }
880#else
881  Void setVPS(TComVPS *p) { m_cVPS = *p; }
882  TComVPS *getVPS() { return &m_cVPS; }
[210]883#endif
[758]884
[773]885#if H_3D
[758]886  Void      setDLT           ( TComDLT *p ) { m_cDLT = p; }
887  TComDLT*  getDLT           ()             { return m_cDLT; }
888#endif
889
[608]890  Void      setUseRecalculateQPAccordingToLambda ( Bool b ) { m_recalculateQPAccordingToLambda = b;    }
891  Bool      getUseRecalculateQPAccordingToLambda ()         { return m_recalculateQPAccordingToLambda; }
[210]892
[608]893  Void      setUseStrongIntraSmoothing ( Bool b ) { m_useStrongIntraSmoothing = b;    }
894  Bool      getUseStrongIntraSmoothing ()         { return m_useStrongIntraSmoothing; }
895
896  Void      setActiveParameterSetsSEIEnabled ( Int b )  { m_activeParameterSetsSEIEnabled = b; } 
897  Int       getActiveParameterSetsSEIEnabled ()         { return m_activeParameterSetsSEIEnabled; }
898  Bool      getVuiParametersPresentFlag()                 { return m_vuiParametersPresentFlag; }
899  Void      setVuiParametersPresentFlag(Bool i)           { m_vuiParametersPresentFlag = i; }
900  Bool      getAspectRatioInfoPresentFlag()               { return m_aspectRatioInfoPresentFlag; }
901  Void      setAspectRatioInfoPresentFlag(Bool i)         { m_aspectRatioInfoPresentFlag = i; }
902  Int       getAspectRatioIdc()                           { return m_aspectRatioIdc; }
903  Void      setAspectRatioIdc(Int i)                      { m_aspectRatioIdc = i; }
904  Int       getSarWidth()                                 { return m_sarWidth; }
905  Void      setSarWidth(Int i)                            { m_sarWidth = i; }
906  Int       getSarHeight()                                { return m_sarHeight; }
907  Void      setSarHeight(Int i)                           { m_sarHeight = i; }
908  Bool      getOverscanInfoPresentFlag()                  { return m_overscanInfoPresentFlag; }
909  Void      setOverscanInfoPresentFlag(Bool i)            { m_overscanInfoPresentFlag = i; }
910  Bool      getOverscanAppropriateFlag()                  { return m_overscanAppropriateFlag; }
911  Void      setOverscanAppropriateFlag(Bool i)            { m_overscanAppropriateFlag = i; }
912  Bool      getVideoSignalTypePresentFlag()               { return m_videoSignalTypePresentFlag; }
913  Void      setVideoSignalTypePresentFlag(Bool i)         { m_videoSignalTypePresentFlag = i; }
914  Int       getVideoFormat()                              { return m_videoFormat; }
915  Void      setVideoFormat(Int i)                         { m_videoFormat = i; }
916  Bool      getVideoFullRangeFlag()                       { return m_videoFullRangeFlag; }
917  Void      setVideoFullRangeFlag(Bool i)                 { m_videoFullRangeFlag = i; }
918  Bool      getColourDescriptionPresentFlag()             { return m_colourDescriptionPresentFlag; }
919  Void      setColourDescriptionPresentFlag(Bool i)       { m_colourDescriptionPresentFlag = i; }
920  Int       getColourPrimaries()                          { return m_colourPrimaries; }
921  Void      setColourPrimaries(Int i)                     { m_colourPrimaries = i; }
922  Int       getTransferCharacteristics()                  { return m_transferCharacteristics; }
923  Void      setTransferCharacteristics(Int i)             { m_transferCharacteristics = i; }
924  Int       getMatrixCoefficients()                       { return m_matrixCoefficients; }
925  Void      setMatrixCoefficients(Int i)                  { m_matrixCoefficients = i; }
926  Bool      getChromaLocInfoPresentFlag()                 { return m_chromaLocInfoPresentFlag; }
927  Void      setChromaLocInfoPresentFlag(Bool i)           { m_chromaLocInfoPresentFlag = i; }
928  Int       getChromaSampleLocTypeTopField()              { return m_chromaSampleLocTypeTopField; }
929  Void      setChromaSampleLocTypeTopField(Int i)         { m_chromaSampleLocTypeTopField = i; }
930  Int       getChromaSampleLocTypeBottomField()           { return m_chromaSampleLocTypeBottomField; }
931  Void      setChromaSampleLocTypeBottomField(Int i)      { m_chromaSampleLocTypeBottomField = i; }
932  Bool      getNeutralChromaIndicationFlag()              { return m_neutralChromaIndicationFlag; }
933  Void      setNeutralChromaIndicationFlag(Bool i)        { m_neutralChromaIndicationFlag = i; }
934  Window   &getDefaultDisplayWindow()                     { return m_defaultDisplayWindow; }
935  Void      setDefaultDisplayWindow (Int offsetLeft, Int offsetRight, Int offsetTop, Int offsetBottom ) { m_defaultDisplayWindow.setWindow (offsetLeft, offsetRight, offsetTop, offsetBottom); }
936  Bool      getFrameFieldInfoPresentFlag()                { return m_frameFieldInfoPresentFlag; }
937  Void      setFrameFieldInfoPresentFlag(Bool i)          { m_frameFieldInfoPresentFlag = i; } 
938  Bool      getPocProportionalToTimingFlag()              { return m_pocProportionalToTimingFlag; }
939  Void      setPocProportionalToTimingFlag(Bool x)        { m_pocProportionalToTimingFlag = x;    }
940  Int       getNumTicksPocDiffOneMinus1()                 { return m_numTicksPocDiffOneMinus1;    }
941  Void      setNumTicksPocDiffOneMinus1(Int x)            { m_numTicksPocDiffOneMinus1 = x;       }
942  Bool      getBitstreamRestrictionFlag()                 { return m_bitstreamRestrictionFlag; }
943  Void      setBitstreamRestrictionFlag(Bool i)           { m_bitstreamRestrictionFlag = i; }
944  Bool      getTilesFixedStructureFlag()                  { return m_tilesFixedStructureFlag; }
945  Void      setTilesFixedStructureFlag(Bool i)            { m_tilesFixedStructureFlag = i; }
946  Bool      getMotionVectorsOverPicBoundariesFlag()       { return m_motionVectorsOverPicBoundariesFlag; }
947  Void      setMotionVectorsOverPicBoundariesFlag(Bool i) { m_motionVectorsOverPicBoundariesFlag = i; }
948  Int       getMinSpatialSegmentationIdc()                { return m_minSpatialSegmentationIdc; }
949  Void      setMinSpatialSegmentationIdc(Int i)           { m_minSpatialSegmentationIdc = i; }
950  Int       getMaxBytesPerPicDenom()                      { return m_maxBytesPerPicDenom; }
951  Void      setMaxBytesPerPicDenom(Int i)                 { m_maxBytesPerPicDenom = i; }
952  Int       getMaxBitsPerMinCuDenom()                     { return m_maxBitsPerMinCuDenom; }
953  Void      setMaxBitsPerMinCuDenom(Int i)                { m_maxBitsPerMinCuDenom = i; }
954  Int       getLog2MaxMvLengthHorizontal()                { return m_log2MaxMvLengthHorizontal; }
955  Void      setLog2MaxMvLengthHorizontal(Int i)           { m_log2MaxMvLengthHorizontal = i; }
956  Int       getLog2MaxMvLengthVertical()                  { return m_log2MaxMvLengthVertical; }
957  Void      setLog2MaxMvLengthVertical(Int i)             { m_log2MaxMvLengthVertical = i; }
[189]958 
[608]959  Bool getProgressiveSourceFlag() const { return m_progressiveSourceFlag; }
960  Void setProgressiveSourceFlag(Bool b) { m_progressiveSourceFlag = b; }
961 
962  Bool getInterlacedSourceFlag() const { return m_interlacedSourceFlag; }
963  Void setInterlacedSourceFlag(Bool b) { m_interlacedSourceFlag = b; }
964 
965  Bool getNonPackedConstraintFlag() const { return m_nonPackedConstraintFlag; }
966  Void setNonPackedConstraintFlag(Bool b) { m_nonPackedConstraintFlag = b; }
967 
968  Bool getFrameOnlyConstraintFlag() const { return m_frameOnlyConstraintFlag; }
969  Void setFrameOnlyConstraintFlag(Bool b) { m_frameOnlyConstraintFlag = b; }
970#if H_3D
971  /// 3D Tools
[115]972
[608]973 //==== CAMERA PARAMETERS  ==========
[56]974  Void      setCamParPrecision              ( UInt  u )      { m_uiCamParPrecision      = u; }
975  Void      setCamParInSliceHeader          ( Bool  b )      { m_bCamParInSliceHeader   = b; }
976  Void      setCodedScale                   ( Int** p )      { m_aaiCodedScale          = p; }
977  Void      setCodedOffset                  ( Int** p )      { m_aaiCodedOffset         = p; }
[608]978  Void      setCameraParameters             ( TAppComCamPara* c) { m_cameraParameters   = c; }
[56]979
[608]980#if H_3D_VSO
981 //==== VSO  ==========
982  Void      setRenderModelParameters ( TRenModSetupStrParser* c ) { m_renderModelParameters = c; }
983  Bool      getUseVSO                       ()              { return m_bUseVSO;     }
984  Void      setUseVSO                       ( Bool  b  )    { m_bUseVSO     = b; }
985  UInt      getVSOMode                      ()              { return m_uiVSOMode; }
986  Void      setVSOMode                      ( UInt  ui )    { m_uiVSOMode   = ui; }
987  Bool      getForceLambdaScaleVSO          ()              { return m_bForceLambdaScale; }
988  Void      setForceLambdaScaleVSO          ( Bool   b )    { m_bForceLambdaScale = b; };
989  Double    getLambdaScaleVSO               ()              { return m_dLambdaScaleVSO;   }
990  Void      setLambdaScaleVSO               ( Double d )    { m_dLambdaScaleVSO   = d; };
991  Bool      getAllowNegDist                 ()              { return m_bAllowNegDist;     }
992  Void      setAllowNegDist                 ( Bool   b )    { m_bAllowNegDist     = b; };
[443]993
[608]994  // LGE_WVSO_A0119
995  Bool      getUseWVSO                      ()              { return m_bUseWVSO;     }
996  Void      setUseWVSO                      ( Bool  b )     { m_bUseWVSO   = b; }
997  Int       getVSOWeight                    ()              { return m_iVSOWeight;    }
998  Void      setVSOWeight                    ( Int   i )     { m_iVSOWeight = i; }
999  Int       getVSDWeight                    ()              { return m_iVSDWeight;    }
1000  Void      setVSDWeight                    ( Int   i )     { m_iVSDWeight = i; }
1001  Int       getDWeight                      ()              { return m_iDWeight;    }
1002  Void      setDWeight                      ( Int   i )     { m_iDWeight   = i; }
[443]1003
[608]1004  // SAIT_VSO_EST_A0033
1005  Bool      getUseEstimatedVSD              ()              { return m_bUseEstimatedVSD; }
1006  Void      setUseEstimatedVSD              ( Bool  b )     { m_bUseEstimatedVSD = b; }
1007  Double    getDispCoeff                    ()              { return m_dDispCoeff;    }
1008  Void      setDispCoeff                    ( Double  d )   { m_dDispCoeff  = d; }
1009#endif // H_3D_VSO
[443]1010
[608]1011 //==== DIM  ==========
1012#if H_3D_DIM
1013  Bool      getUseDMM                       ()        { return m_useDMM; }
1014  Void      setUseDMM                       ( Bool b) { m_useDMM = b;    }
1015  Bool      getUseSDC                       ()        { return m_useSDC; }
1016  Void      setUseSDC                       ( Bool b) { m_useSDC = b;    }
1017  Bool      getUseDLT                       ()        { return m_useDLT; }
1018  Void      setUseDLT                       ( Bool b) { m_useDLT = b;    }
[443]1019#endif
[608]1020#if H_3D_QTLPC
1021  Void      setUseQTL                       ( Bool b ) { m_bUseQTL = b;    }
1022  Bool      getUseQTL                       ()         { return m_bUseQTL; }
1023  Void      setUsePC                        ( Bool b ) { m_bUsePC  = b;    }
1024  Bool      getUsePC                        ()         { return m_bUsePC;  }
1025#endif
[773]1026#if H_3D_IV_MERGE
[724]1027  Void      setUseMPI                       ( Bool b ) { m_useMPI = b;    }
1028  Bool      getUseMPI                       ()         { return m_useMPI; }
1029#endif
[608]1030#endif // H_3D
[2]1031};
1032
[56]1033//! \}
1034
[2]1035#endif // !defined(AFX_TENCCFG_H__6B99B797_F4DA_4E46_8E78_7656339A6C41__INCLUDED_)
Note: See TracBrowser for help on using the repository browser.