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

Last change on this file since 1196 was 1196, checked in by tech, 9 years ago

Merged 14.0-dev0@1187.

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