source: SHVCSoftware/branches/SHM-dev/source/Lib/TLibEncoder/TEncCfg.h @ 832

Last change on this file since 832 was 825, checked in by qualcomm, 10 years ago

Integration of R0151(R0151_CGS_3D_ASYMLUT_IMPROVE), R0150 (R0150_CGS_SIGNAL_CONSTRAINTS), and R0164 (R0164_CGS_LUT_BUGFIX)

  • Property svn:eol-style set to native
File size: 58.2 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-2014, 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
49struct GOPEntry
50{
51  Int m_POC;
52  Int m_QPOffset;
53  Double m_QPFactor;
54  Int m_tcOffsetDiv2;
55  Int m_betaOffsetDiv2;
56  Int m_temporalId;
57  Bool m_refPic;
58  Int m_numRefPicsActive;
59  Char m_sliceType;
60  Int m_numRefPics;
61  Int m_referencePics[MAX_NUM_REF_PICS];
62  Int m_usedByCurrPic[MAX_NUM_REF_PICS];
63#if AUTO_INTER_RPS
64  Int m_interRPSPrediction;
65#else
66  Bool m_interRPSPrediction;
67#endif
68  Int m_deltaRPS;
69  Int m_numRefIdc;
70  Int m_refIdc[MAX_NUM_REF_PICS+1];
71  GOPEntry()
72  : m_POC(-1)
73  , m_QPOffset(0)
74  , m_QPFactor(0)
75  , m_tcOffsetDiv2(0)
76  , m_betaOffsetDiv2(0)
77  , m_temporalId(0)
78  , m_refPic(false)
79  , m_numRefPicsActive(0)
80  , m_sliceType('P')
81  , m_numRefPics(0)
82  , m_interRPSPrediction(false)
83  , m_deltaRPS(0)
84  , m_numRefIdc(0)
85  {
86    ::memset( m_referencePics, 0, sizeof(m_referencePics) );
87    ::memset( m_usedByCurrPic, 0, sizeof(m_usedByCurrPic) );
88    ::memset( m_refIdc,        0, sizeof(m_refIdc) );
89  }
90};
91
92std::istringstream &operator>>(std::istringstream &in, GOPEntry &entry);     //input
93//! \ingroup TLibEncoder
94//! \{
95
96// ====================================================================================================================
97// Class definition
98// ====================================================================================================================
99
100/// encoder configuration class
101class TEncCfg
102{
103protected:
104  //==== File I/O ========
105  Int       m_iFrameRate;
106  Int       m_FrameSkip;
107  Int       m_iSourceWidth;
108  Int       m_iSourceHeight;
109  Window    m_conformanceWindow;
110  Int       m_framesToBeEncoded;
111  Double    m_adLambdaModifier[ MAX_TLAYER ];
112
113  /* profile & level */
114  Profile::Name m_profile;
115  Level::Tier   m_levelTier;
116  Level::Name   m_level;
117  Bool m_progressiveSourceFlag;
118  Bool m_interlacedSourceFlag;
119  Bool m_nonPackedConstraintFlag;
120  Bool m_frameOnlyConstraintFlag;
121
122  //====== Coding Structure ========
123  UInt      m_uiIntraPeriod;
124  UInt      m_uiDecodingRefreshType;            ///< the type of decoding refresh employed for the random access.
125  Int       m_iGOPSize;
126  GOPEntry  m_GOPList[MAX_GOP];
127  Int       m_extraRPSs;
128  Int       m_maxDecPicBuffering[MAX_TLAYER];
129  Int       m_numReorderPics[MAX_TLAYER];
130 
131  Int       m_iQP;                              //  if (AdaptiveQP == OFF)
132 
133  Int       m_aiPad[2];
134 
135
136  Int       m_iMaxRefPicNum;                     ///< this is used to mimic the sliding mechanism used by the decoder
137                                                 // TODO: We need to have a common sliding mechanism used by both the encoder and decoder
138
139  Int       m_maxTempLayer;                      ///< Max temporal layer
140  Bool m_useAMP;
141  //======= Transform =============
142  UInt      m_uiQuadtreeTULog2MaxSize;
143  UInt      m_uiQuadtreeTULog2MinSize;
144  UInt      m_uiQuadtreeTUMaxDepthInter;
145  UInt      m_uiQuadtreeTUMaxDepthIntra;
146 
147  //====== Loop/Deblock Filter ========
148  Bool      m_bLoopFilterDisable;
149  Bool      m_loopFilterOffsetInPPS;
150  Int       m_loopFilterBetaOffsetDiv2;
151  Int       m_loopFilterTcOffsetDiv2;
152  Bool      m_DeblockingFilterControlPresent;
153  Bool      m_DeblockingFilterMetric;
154  Bool      m_bUseSAO;
155  Int       m_maxNumOffsetsPerPic;
156  Bool      m_saoLcuBoundary;
157  //====== Motion search ========
158  Int       m_iFastSearch;                      //  0:Full search  1:Diamond  2:PMVFAST
159  Int       m_iSearchRange;                     //  0:Full frame
160  Int       m_bipredSearchRange;
161
162  //====== Quality control ========
163  Int       m_iMaxDeltaQP;                      //  Max. absolute delta QP (1:default)
164  Int       m_iMaxCuDQPDepth;                   //  Max. depth for a minimum CuDQP (0:default)
165
166  Int       m_chromaCbQpOffset;                 //  Chroma Cb QP Offset (0:default)
167  Int       m_chromaCrQpOffset;                 //  Chroma Cr Qp Offset (0:default)
168
169#if ADAPTIVE_QP_SELECTION
170  Bool      m_bUseAdaptQpSelect;
171#endif
172
173  Bool      m_bUseAdaptiveQP;
174  Int       m_iQPAdaptationRange;
175 
176  //====== Tool list ========
177  Bool      m_bUseASR;
178  Bool      m_bUseHADME;
179  Bool      m_useRDOQ;
180  Bool      m_useRDOQTS;
181  UInt      m_rdPenalty;
182  Bool      m_bUseFastEnc;
183  Bool      m_bUseEarlyCU;
184  Bool      m_useFastDecisionForMerge;
185  Bool      m_bUseCbfFastMode;
186  Bool      m_useEarlySkipDetection;
187  Bool      m_useTransformSkip;
188  Bool      m_useTransformSkipFast;
189  Int*      m_aidQP;
190  UInt      m_uiDeltaQpRD;
191 
192  Bool      m_bUseConstrainedIntraPred;
193  Bool      m_usePCM;
194  UInt      m_pcmLog2MaxSize;
195  UInt      m_uiPCMLog2MinSize;
196  //====== Slice ========
197  Int       m_sliceMode;
198  Int       m_sliceArgument; 
199  //====== Dependent Slice ========
200  Int       m_sliceSegmentMode;
201  Int       m_sliceSegmentArgument;
202  Bool      m_bLFCrossSliceBoundaryFlag;
203
204  Bool      m_bPCMInputBitDepthFlag;
205  UInt      m_uiPCMBitDepthLuma;
206  UInt      m_uiPCMBitDepthChroma;
207  Bool      m_bPCMFilterDisableFlag;
208  Bool      m_loopFilterAcrossTilesEnabledFlag;
209  Bool      m_tileUniformSpacingFlag;
210  Int       m_iNumColumnsMinus1;
211  Int       m_iNumRowsMinus1;
212  std::vector<Int> m_tileColumnWidth;
213  std::vector<Int> m_tileRowHeight;
214
215  Int       m_iWaveFrontSynchro;
216  Int       m_iWaveFrontSubstreams;
217
218  Int       m_decodedPictureHashSEIEnabled;              ///< Checksum(3)/CRC(2)/MD5(1)/disable(0) acting on decoded picture hash SEI message
219  Int       m_bufferingPeriodSEIEnabled;
220  Int       m_pictureTimingSEIEnabled;
221  Int       m_recoveryPointSEIEnabled;
222  Bool      m_toneMappingInfoSEIEnabled;
223  Int       m_toneMapId;
224  Bool      m_toneMapCancelFlag;
225  Bool      m_toneMapPersistenceFlag;
226  Int       m_codedDataBitDepth;
227  Int       m_targetBitDepth;
228  Int       m_modelId; 
229  Int       m_minValue;
230  Int       m_maxValue;
231  Int       m_sigmoidMidpoint;
232  Int       m_sigmoidWidth;
233  Int       m_numPivots;
234  Int       m_cameraIsoSpeedIdc;
235  Int       m_cameraIsoSpeedValue;
236  Int       m_exposureIndexIdc;
237  Int       m_exposureIndexValue;
238  Int       m_exposureCompensationValueSignFlag;
239  Int       m_exposureCompensationValueNumerator;
240  Int       m_exposureCompensationValueDenomIdc;
241  Int       m_refScreenLuminanceWhite;
242  Int       m_extendedRangeWhiteLevel;
243  Int       m_nominalBlackLevelLumaCodeValue;
244  Int       m_nominalWhiteLevelLumaCodeValue;
245  Int       m_extendedWhiteLevelLumaCodeValue;
246  Int*      m_startOfCodedInterval;
247  Int*      m_codedPivotValue;
248  Int*      m_targetPivotValue;
249  Int       m_framePackingSEIEnabled;
250  Int       m_framePackingSEIType;
251  Int       m_framePackingSEIId;
252  Int       m_framePackingSEIQuincunx;
253  Int       m_framePackingSEIInterpretation;
254  Int       m_displayOrientationSEIAngle;
255  Int       m_temporalLevel0IndexSEIEnabled;
256  Int       m_gradualDecodingRefreshInfoEnabled;
257  Int       m_decodingUnitInfoSEIEnabled;
258  Int       m_SOPDescriptionSEIEnabled;
259  Int       m_scalableNestingSEIEnabled;
260  //====== Weighted Prediction ========
261  Bool      m_useWeightedPred;       //< Use of Weighting Prediction (P_SLICE)
262  Bool      m_useWeightedBiPred;    //< Use of Bi-directional Weighting Prediction (B_SLICE)
263  UInt      m_log2ParallelMergeLevelMinus2;       ///< Parallel merge estimation region
264  UInt      m_maxNumMergeCand;                    ///< Maximum number of merge candidates
265  Int       m_useScalingListId;            ///< Using quantization matrix i.e. 0=off, 1=default, 2=file.
266  Char*     m_scalingListFile;          ///< quantization matrix file name
267  Int       m_TMVPModeId;
268  Int       m_signHideFlag;
269  Bool      m_RCEnableRateControl;
270  Int       m_RCTargetBitrate;
271  Int       m_RCKeepHierarchicalBit;
272  Bool      m_RCLCULevelRC;
273  Bool      m_RCUseLCUSeparateModel;
274  Int       m_RCInitialQP;
275  Bool      m_RCForceIntraQP;
276  Bool      m_TransquantBypassEnableFlag;                     ///< transquant_bypass_enable_flag setting in PPS.
277  Bool      m_CUTransquantBypassFlagForce;                    ///< if transquant_bypass_enable_flag, then, if true, all CU transquant bypass flags will be set to true.
278#if SVC_EXTENSION
279  static TComVPS             m_cVPS;
280#else
281  TComVPS                    m_cVPS;
282#endif
283  Bool      m_recalculateQPAccordingToLambda;                 ///< recalculate QP value according to the lambda value
284  Int       m_activeParameterSetsSEIEnabled;                  ///< enable active parameter set SEI message
285  Bool      m_vuiParametersPresentFlag;                       ///< enable generation of VUI parameters
286  Bool      m_aspectRatioInfoPresentFlag;                     ///< Signals whether aspect_ratio_idc is present
287  Int       m_aspectRatioIdc;                                 ///< aspect_ratio_idc
288  Int       m_sarWidth;                                       ///< horizontal size of the sample aspect ratio
289  Int       m_sarHeight;                                      ///< vertical size of the sample aspect ratio
290  Bool      m_overscanInfoPresentFlag;                        ///< Signals whether overscan_appropriate_flag is present
291  Bool      m_overscanAppropriateFlag;                        ///< Indicates whether conformant decoded pictures are suitable for display using overscan
292  Bool      m_videoSignalTypePresentFlag;                     ///< Signals whether video_format, video_full_range_flag, and colour_description_present_flag are present
293  Int       m_videoFormat;                                    ///< Indicates representation of pictures
294  Bool      m_videoFullRangeFlag;                             ///< Indicates the black level and range of luma and chroma signals
295  Bool      m_colourDescriptionPresentFlag;                   ///< Signals whether colour_primaries, transfer_characteristics and matrix_coefficients are present
296  Int       m_colourPrimaries;                                ///< Indicates chromaticity coordinates of the source primaries
297  Int       m_transferCharacteristics;                        ///< Indicates the opto-electronic transfer characteristics of the source
298  Int       m_matrixCoefficients;                             ///< Describes the matrix coefficients used in deriving luma and chroma from RGB primaries
299  Bool      m_chromaLocInfoPresentFlag;                       ///< Signals whether chroma_sample_loc_type_top_field and chroma_sample_loc_type_bottom_field are present
300  Int       m_chromaSampleLocTypeTopField;                    ///< Specifies the location of chroma samples for top field
301  Int       m_chromaSampleLocTypeBottomField;                 ///< Specifies the location of chroma samples for bottom field
302  Bool      m_neutralChromaIndicationFlag;                    ///< Indicates that the value of all decoded chroma samples is equal to 1<<(BitDepthCr-1)
303  Window    m_defaultDisplayWindow;                           ///< Represents the default display window parameters
304  Bool      m_frameFieldInfoPresentFlag;                      ///< Indicates that pic_struct and other field coding related values are present in picture timing SEI messages
305  Bool      m_pocProportionalToTimingFlag;                    ///< Indicates that the POC value is proportional to the output time w.r.t. first picture in CVS
306  Int       m_numTicksPocDiffOneMinus1;                       ///< Number of ticks minus 1 that for a POC difference of one
307  Bool      m_bitstreamRestrictionFlag;                       ///< Signals whether bitstream restriction parameters are present
308  Bool      m_tilesFixedStructureFlag;                        ///< Indicates that each active picture parameter set has the same values of the syntax elements related to tiles
309  Bool      m_motionVectorsOverPicBoundariesFlag;             ///< Indicates that no samples outside the picture boundaries are used for inter prediction
310  Int       m_minSpatialSegmentationIdc;                      ///< Indicates the maximum size of the spatial segments in the pictures in the coded video sequence
311  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
312  Int       m_maxBitsPerMinCuDenom;                           ///< Indicates an upper bound for the number of bits of coding_unit() data
313  Int       m_log2MaxMvLengthHorizontal;                      ///< Indicate the maximum absolute value of a decoded horizontal MV component in quarter-pel luma units
314  Int       m_log2MaxMvLengthVertical;                        ///< Indicate the maximum absolute value of a decoded vertical MV component in quarter-pel luma units
315
316  Bool      m_useStrongIntraSmoothing;                        ///< enable the use of strong intra smoothing (bi_linear interpolation) for 32x32 blocks when reference samples are flat.
317#if SVC_EXTENSION
318  UInt      m_layerId;   
319  UInt      m_numLayer;
320  Int       m_elRapSliceBEnabled;
321#if M0040_ADAPTIVE_RESOLUTION_CHANGE
322  Int       m_adaptiveResolutionChange;
323#endif
324#if O0153_ALT_OUTPUT_LAYER_FLAG
325  Bool      m_altOutputLayerFlag;
326#endif
327#if HIGHER_LAYER_IRAP_SKIP_FLAG
328  Int       m_skipPictureAtArcSwitch;
329#endif
330#if O0149_CROSS_LAYER_BLA_FLAG
331  Bool      m_crossLayerBLAFlag;
332#endif
333#if VPS_EXTN_DIRECT_REF_LAYERS
334  Int       m_numDirectRefLayers;
335  Int       m_refLayerId[MAX_VPS_LAYER_ID_PLUS1];
336
337  Int       m_numActiveRefLayers;
338  Int       m_predLayerId[MAX_VPS_LAYER_ID_PLUS1];
339  Int       m_numSamplePredRefLayers;
340  Int       m_samplePredRefLayerId[MAX_VPS_LAYER_ID_PLUS1];
341  Int       m_numMotionPredRefLayers;
342  Int       m_motionPredRefLayerId[MAX_VPS_LAYER_ID_PLUS1];
343  Bool      m_samplePredEnabledFlag[MAX_VPS_LAYER_ID_PLUS1];
344  Bool      m_motionPredEnabledFlag[MAX_VPS_LAYER_ID_PLUS1];
345#endif
346  Int       m_maxTidIlRefPicsPlus1;
347#if AUXILIARY_PICTURES
348  ChromaFormat m_chromaFormatIDC;
349#endif
350#if FAST_INTRA_SHVC
351  Bool      m_useFastIntraScalable;
352#endif
353#if LAYERS_NOT_PRESENT_SEI
354  Int       m_layersNotPresentSEIEnabled;
355#endif
356#if N0383_IL_CONSTRAINED_TILE_SETS_SEI
357  Bool      m_interLayerConstrainedTileSetsSEIEnabled;
358  UInt      m_ilNumSetsInMessage;
359  Bool      m_skippedTileSetPresentFlag;
360  UInt      m_topLeftTileIndex[1024];
361  UInt      m_bottomRightTileIndex[1024];
362  UInt      m_ilcIdc[1024];
363#endif
364#if Q0048_CGS_3D_ASYMLUT
365  Int  m_nCGSFlag;
366  Int  m_nCGSMaxOctantDepth;
367  Int  m_nCGSMaxYPartNumLog2;
368  Int  m_nCGSLUTBit;
369#if R0151_CGS_3D_ASYMLUT_IMPROVE
370  Int  m_nCGSAdaptiveChroma;
371#endif
372#endif
373#if P0050_KNEE_FUNCTION_SEI
374  Bool      m_kneeSEIEnabled;
375  Int       m_kneeSEIId;
376  Bool      m_kneeSEICancelFlag;
377  Bool      m_kneeSEIPersistenceFlag;
378  Bool      m_kneeSEIMappingFlag;
379  Int       m_kneeSEIInputDrange;
380  Int       m_kneeSEIInputDispLuminance;
381  Int       m_kneeSEIOutputDrange;
382  Int       m_kneeSEIOutputDispLuminance;
383  Int       m_kneeSEINumKneePointsMinus1;
384  Int*      m_kneeSEIInputKneePoint;
385  Int*      m_kneeSEIOutputKneePoint;
386#endif
387#if Q0074_SEI_COLOR_MAPPING
388  Char*     m_seiColorMappingFile;
389#endif
390#if Q0189_TMVP_CONSTRAINTS
391  Int       m_TMVPConstraintsSEIEnabled;
392#endif
393#endif //SVC_EXTENSION
394
395public:
396  TEncCfg()
397  : m_tileColumnWidth()
398  , m_tileRowHeight()
399  {}
400
401  virtual ~TEncCfg()
402  {}
403 
404  Void setProfile(Profile::Name profile) { m_profile = profile; }
405  Void setLevel(Level::Tier tier, Level::Name level) { m_levelTier = tier; m_level = level; }
406
407  Void      setFrameRate                    ( Int   i )      { m_iFrameRate = i; }
408  Void      setFrameSkip                    ( UInt i ) { m_FrameSkip = i; }
409  Void      setSourceWidth                  ( Int   i )      { m_iSourceWidth = i; }
410  Void      setSourceHeight                 ( Int   i )      { m_iSourceHeight = i; }
411
412  Window   &getConformanceWindow()                           { return m_conformanceWindow; }
413#if P0312_VERT_PHASE_ADJ
414  Void      setConformanceWindow (Int confLeft, Int confRight, Int confTop, Int confBottom ) { m_conformanceWindow.setWindow (confLeft, confRight, confTop, confBottom, false); }
415#else
416  Void      setConformanceWindow (Int confLeft, Int confRight, Int confTop, Int confBottom ) { m_conformanceWindow.setWindow (confLeft, confRight, confTop, confBottom); }
417#endif
418
419  Void      setFramesToBeEncoded            ( Int   i )      { m_framesToBeEncoded = i; }
420 
421  //====== Coding Structure ========
422  Void      setIntraPeriod                  ( Int   i )      { m_uiIntraPeriod = (UInt)i; }
423  Void      setDecodingRefreshType          ( Int   i )      { m_uiDecodingRefreshType = (UInt)i; }
424  Void      setGOPSize                      ( Int   i )      { m_iGOPSize = i; }
425  Void      setGopList                      ( GOPEntry*  GOPList ) {  for ( Int i = 0; i < MAX_GOP; i++ ) m_GOPList[i] = GOPList[i]; }
426  Void      setExtraRPSs                    ( Int   i )      { m_extraRPSs = i; }
427  GOPEntry  getGOPEntry                     ( Int   i )      { return m_GOPList[i]; }
428  Void      setMaxDecPicBuffering           ( UInt u, UInt tlayer ) { m_maxDecPicBuffering[tlayer] = u;    }
429  Void      setNumReorderPics               ( Int  i, UInt tlayer ) { m_numReorderPics[tlayer] = i;    }
430 
431  Void      setQP                           ( Int   i )      { m_iQP = i; }
432 
433  Void      setPad                          ( Int*  iPad                   )      { for ( Int i = 0; i < 2; i++ ) m_aiPad[i] = iPad[i]; }
434 
435  Int       getMaxRefPicNum                 ()                              { return m_iMaxRefPicNum;           }
436  Void      setMaxRefPicNum                 ( Int iMaxRefPicNum )           { m_iMaxRefPicNum = iMaxRefPicNum;  }
437
438  Int       getMaxTempLayer                 ()                              { return m_maxTempLayer;              } 
439  Void      setMaxTempLayer                 ( Int maxTempLayer )            { m_maxTempLayer = maxTempLayer;      }
440  //======== Transform =============
441  Void      setQuadtreeTULog2MaxSize        ( UInt  u )      { m_uiQuadtreeTULog2MaxSize = u; }
442  Void      setQuadtreeTULog2MinSize        ( UInt  u )      { m_uiQuadtreeTULog2MinSize = u; }
443  Void      setQuadtreeTUMaxDepthInter      ( UInt  u )      { m_uiQuadtreeTUMaxDepthInter = u; }
444  Void      setQuadtreeTUMaxDepthIntra      ( UInt  u )      { m_uiQuadtreeTUMaxDepthIntra = u; }
445 
446  Void setUseAMP( Bool b ) { m_useAMP = b; }
447 
448  //====== Loop/Deblock Filter ========
449  Void      setLoopFilterDisable            ( Bool  b )      { m_bLoopFilterDisable       = b; }
450  Void      setLoopFilterOffsetInPPS        ( Bool  b )      { m_loopFilterOffsetInPPS      = b; }
451  Void      setLoopFilterBetaOffset         ( Int   i )      { m_loopFilterBetaOffsetDiv2  = i; }
452  Void      setLoopFilterTcOffset           ( Int   i )      { m_loopFilterTcOffsetDiv2    = i; }
453  Void      setDeblockingFilterControlPresent ( Bool b ) { m_DeblockingFilterControlPresent = b; }
454  Void      setDeblockingFilterMetric       ( Bool  b )      { m_DeblockingFilterMetric = b; }
455
456  //====== Motion search ========
457  Void      setFastSearch                   ( Int   i )      { m_iFastSearch = i; }
458  Void      setSearchRange                  ( Int   i )      { m_iSearchRange = i; }
459  Void      setBipredSearchRange            ( Int   i )      { m_bipredSearchRange = i; }
460
461  //====== Quality control ========
462  Void      setMaxDeltaQP                   ( Int   i )      { m_iMaxDeltaQP = i; }
463  Void      setMaxCuDQPDepth                ( Int   i )      { m_iMaxCuDQPDepth = i; }
464
465  Void      setChromaCbQpOffset             ( Int   i )      { m_chromaCbQpOffset = i; }
466  Void      setChromaCrQpOffset             ( Int   i )      { m_chromaCrQpOffset = i; }
467
468#if ADAPTIVE_QP_SELECTION
469  Void      setUseAdaptQpSelect             ( Bool   i ) { m_bUseAdaptQpSelect    = i; }
470  Bool      getUseAdaptQpSelect             ()           { return   m_bUseAdaptQpSelect; }
471#endif
472
473  Void      setUseAdaptiveQP                ( Bool  b )      { m_bUseAdaptiveQP = b; }
474  Void      setQPAdaptationRange            ( Int   i )      { m_iQPAdaptationRange = i; }
475 
476  //====== Sequence ========
477  Int       getFrameRate                    ()      { return  m_iFrameRate; }
478  UInt      getFrameSkip                    ()      { return  m_FrameSkip; }
479  Int       getSourceWidth                  ()      { return  m_iSourceWidth; }
480  Int       getSourceHeight                 ()      { return  m_iSourceHeight; }
481  Int       getFramesToBeEncoded            ()      { return  m_framesToBeEncoded; }
482  void setLambdaModifier                    ( UInt uiIndex, Double dValue ) { m_adLambdaModifier[ uiIndex ] = dValue; }
483  Double getLambdaModifier                  ( UInt uiIndex ) const { return m_adLambdaModifier[ uiIndex ]; }
484
485  //==== Coding Structure ========
486  UInt      getIntraPeriod                  ()      { return  m_uiIntraPeriod; }
487  UInt      getDecodingRefreshType          ()      { return  m_uiDecodingRefreshType; }
488  Int       getGOPSize                      ()      { return  m_iGOPSize; }
489  Int       getMaxDecPicBuffering           (UInt tlayer) { return m_maxDecPicBuffering[tlayer]; }
490  Int       getNumReorderPics               (UInt tlayer) { return m_numReorderPics[tlayer]; }
491  Int       getQP                           ()      { return  m_iQP; }
492 
493  Int       getPad                          ( Int i )      { assert (i < 2 );                      return  m_aiPad[i]; }
494 
495  //======== Transform =============
496  UInt      getQuadtreeTULog2MaxSize        ()      const { return m_uiQuadtreeTULog2MaxSize; }
497  UInt      getQuadtreeTULog2MinSize        ()      const { return m_uiQuadtreeTULog2MinSize; }
498  UInt      getQuadtreeTUMaxDepthInter      ()      const { return m_uiQuadtreeTUMaxDepthInter; }
499  UInt      getQuadtreeTUMaxDepthIntra      ()      const { return m_uiQuadtreeTUMaxDepthIntra; }
500 
501  //==== Loop/Deblock Filter ========
502  Bool      getLoopFilterDisable            ()      { return  m_bLoopFilterDisable;       }
503  Bool      getLoopFilterOffsetInPPS        ()      { return m_loopFilterOffsetInPPS; }
504  Int       getLoopFilterBetaOffset         ()      { return m_loopFilterBetaOffsetDiv2; }
505  Int       getLoopFilterTcOffset           ()      { return m_loopFilterTcOffsetDiv2; }
506  Bool      getDeblockingFilterControlPresent()  { return  m_DeblockingFilterControlPresent; }
507  Bool      getDeblockingFilterMetric       ()      { return m_DeblockingFilterMetric; }
508
509  //==== Motion search ========
510  Int       getFastSearch                   ()      { return  m_iFastSearch; }
511  Int       getSearchRange                  ()      { return  m_iSearchRange; }
512
513  //==== Quality control ========
514  Int       getMaxDeltaQP                   ()      { return  m_iMaxDeltaQP; }
515  Int       getMaxCuDQPDepth                ()      { return  m_iMaxCuDQPDepth; }
516  Bool      getUseAdaptiveQP                ()      { return  m_bUseAdaptiveQP; }
517  Int       getQPAdaptationRange            ()      { return  m_iQPAdaptationRange; }
518 
519  //==== Tool list ========
520  Void      setUseASR                       ( Bool  b )     { m_bUseASR     = b; }
521  Void      setUseHADME                     ( Bool  b )     { m_bUseHADME   = b; }
522  Void      setUseRDOQ                      ( Bool  b )     { m_useRDOQ    = b; }
523  Void      setUseRDOQTS                    ( Bool  b )     { m_useRDOQTS  = b; }
524  Void      setRDpenalty                 ( UInt  b )     { m_rdPenalty  = b; }
525  Void      setUseFastEnc                   ( Bool  b )     { m_bUseFastEnc = b; }
526  Void      setUseEarlyCU                   ( Bool  b )     { m_bUseEarlyCU = b; }
527  Void      setUseFastDecisionForMerge      ( Bool  b )     { m_useFastDecisionForMerge = b; }
528  Void      setUseCbfFastMode            ( Bool  b )     { m_bUseCbfFastMode = b; }
529  Void      setUseEarlySkipDetection        ( Bool  b )     { m_useEarlySkipDetection = b; }
530  Void      setUseConstrainedIntraPred      ( Bool  b )     { m_bUseConstrainedIntraPred = b; }
531  Void      setPCMInputBitDepthFlag         ( Bool  b )     { m_bPCMInputBitDepthFlag = b; }
532  Void      setPCMFilterDisableFlag         ( Bool  b )     {  m_bPCMFilterDisableFlag = b; }
533  Void      setUsePCM                       ( Bool  b )     {  m_usePCM = b;               }
534  Void      setPCMLog2MaxSize               ( UInt u )      { m_pcmLog2MaxSize = u;      }
535  Void      setPCMLog2MinSize               ( UInt u )     { m_uiPCMLog2MinSize = u;      }
536  Void      setdQPs                         ( Int*  p )     { m_aidQP       = p; }
537  Void      setDeltaQpRD                    ( UInt  u )     {m_uiDeltaQpRD  = u; }
538  Bool      getUseASR                       ()      { return m_bUseASR;     }
539  Bool      getUseHADME                     ()      { return m_bUseHADME;   }
540  Bool      getUseRDOQ                      ()      { return m_useRDOQ;    }
541  Bool      getUseRDOQTS                    ()      { return m_useRDOQTS;  }
542  Int      getRDpenalty                  ()      { return m_rdPenalty;  }
543  Bool      getUseFastEnc                   ()      { return m_bUseFastEnc; }
544  Bool      getUseEarlyCU                   ()      { return m_bUseEarlyCU; }
545  Bool      getUseFastDecisionForMerge      ()      { return m_useFastDecisionForMerge; }
546  Bool      getUseCbfFastMode           ()      { return m_bUseCbfFastMode; }
547  Bool      getUseEarlySkipDetection        ()      { return m_useEarlySkipDetection; }
548  Bool      getUseConstrainedIntraPred      ()      { return m_bUseConstrainedIntraPred; }
549  Bool      getPCMInputBitDepthFlag         ()      { return m_bPCMInputBitDepthFlag;   }
550  Bool      getPCMFilterDisableFlag         ()      { return m_bPCMFilterDisableFlag;   } 
551  Bool      getUsePCM                       ()      { return m_usePCM;                 }
552  UInt      getPCMLog2MaxSize               ()      { return m_pcmLog2MaxSize;  }
553  UInt      getPCMLog2MinSize               ()      { return  m_uiPCMLog2MinSize;  }
554
555  Bool getUseTransformSkip                             ()      { return m_useTransformSkip;        }
556  Void setUseTransformSkip                             ( Bool b ) { m_useTransformSkip  = b;       }
557  Bool getUseTransformSkipFast                         ()      { return m_useTransformSkipFast;    }
558  Void setUseTransformSkipFast                         ( Bool b ) { m_useTransformSkipFast  = b;   }
559  Int*      getdQPs                         ()      { return m_aidQP;       }
560  UInt      getDeltaQpRD                    ()      { return m_uiDeltaQpRD; }
561
562  //====== Slice ========
563  Void  setSliceMode                   ( Int  i )       { m_sliceMode = i;              }
564  Void  setSliceArgument               ( Int  i )       { m_sliceArgument = i;          }
565  Int   getSliceMode                   ()              { return m_sliceMode;           }
566  Int   getSliceArgument               ()              { return m_sliceArgument;       }
567  //====== Dependent Slice ========
568  Void  setSliceSegmentMode            ( Int  i )      { m_sliceSegmentMode = i;       }
569  Void  setSliceSegmentArgument        ( Int  i )      { m_sliceSegmentArgument = i;   }
570  Int   getSliceSegmentMode            ()              { return m_sliceSegmentMode;    }
571  Int   getSliceSegmentArgument        ()              { return m_sliceSegmentArgument;}
572  Void      setLFCrossSliceBoundaryFlag     ( Bool   bValue  )    { m_bLFCrossSliceBoundaryFlag = bValue; }
573  Bool      getLFCrossSliceBoundaryFlag     ()                    { return m_bLFCrossSliceBoundaryFlag;   }
574
575  Void      setUseSAO                  (Bool bVal)     {m_bUseSAO = bVal;}
576  Bool      getUseSAO                  ()              {return m_bUseSAO;}
577  Void  setMaxNumOffsetsPerPic                   (Int iVal)            { m_maxNumOffsetsPerPic = iVal; }
578  Int   getMaxNumOffsetsPerPic                   ()                    { return m_maxNumOffsetsPerPic; }
579  Void  setSaoLcuBoundary              (Bool val)      { m_saoLcuBoundary = val; }
580  Bool  getSaoLcuBoundary              ()              { return m_saoLcuBoundary; }
581  Void  setLFCrossTileBoundaryFlag               ( Bool   val  )       { m_loopFilterAcrossTilesEnabledFlag = val; }
582  Bool  getLFCrossTileBoundaryFlag               ()                    { return m_loopFilterAcrossTilesEnabledFlag;   }
583  Void  setTileUniformSpacingFlag      ( Bool b )          { m_tileUniformSpacingFlag = b; }
584  Bool  getTileUniformSpacingFlag      ()                  { return m_tileUniformSpacingFlag; }
585  Void  setNumColumnsMinus1            ( Int i )           { m_iNumColumnsMinus1 = i; }
586  Int   getNumColumnsMinus1            ()                  { return m_iNumColumnsMinus1; }
587  Void  setColumnWidth ( const std::vector<Int>& columnWidth ) { m_tileColumnWidth = columnWidth; }
588  UInt  getColumnWidth                 ( UInt columnIdx )      { return m_tileColumnWidth[columnIdx]; }
589  Void  setNumRowsMinus1               ( Int i )           { m_iNumRowsMinus1 = i; }
590  Int   getNumRowsMinus1               ()                  { return m_iNumRowsMinus1; }
591  Void  setRowHeight ( const std::vector<Int>& rowHeight)      { m_tileRowHeight = rowHeight; }
592  UInt  getRowHeight                   ( UInt rowIdx )         { return m_tileRowHeight[rowIdx]; }
593  Void  xCheckGSParameters();
594  Void  setWaveFrontSynchro(Int iWaveFrontSynchro)       { m_iWaveFrontSynchro = iWaveFrontSynchro; }
595  Int   getWaveFrontsynchro()                            { return m_iWaveFrontSynchro; }
596  Void  setWaveFrontSubstreams(Int iWaveFrontSubstreams) { m_iWaveFrontSubstreams = iWaveFrontSubstreams; }
597  Int   getWaveFrontSubstreams()                         { return m_iWaveFrontSubstreams; }
598  Void  setDecodedPictureHashSEIEnabled(Int b)           { m_decodedPictureHashSEIEnabled = b; }
599  Int   getDecodedPictureHashSEIEnabled()                { return m_decodedPictureHashSEIEnabled; }
600  Void  setBufferingPeriodSEIEnabled(Int b)              { m_bufferingPeriodSEIEnabled = b; }
601  Int   getBufferingPeriodSEIEnabled()                   { return m_bufferingPeriodSEIEnabled; }
602  Void  setPictureTimingSEIEnabled(Int b)                { m_pictureTimingSEIEnabled = b; }
603  Int   getPictureTimingSEIEnabled()                     { return m_pictureTimingSEIEnabled; }
604  Void  setRecoveryPointSEIEnabled(Int b)                { m_recoveryPointSEIEnabled = b; }
605  Int   getRecoveryPointSEIEnabled()                     { return m_recoveryPointSEIEnabled; }
606  Void  setToneMappingInfoSEIEnabled(Bool b)                 {  m_toneMappingInfoSEIEnabled = b;  }
607  Bool  getToneMappingInfoSEIEnabled()                       {  return m_toneMappingInfoSEIEnabled;  }
608  Void  setTMISEIToneMapId(Int b)                            {  m_toneMapId = b;  }
609  Int   getTMISEIToneMapId()                                 {  return m_toneMapId;  }
610  Void  setTMISEIToneMapCancelFlag(Bool b)                   {  m_toneMapCancelFlag=b;  }
611  Bool  getTMISEIToneMapCancelFlag()                         {  return m_toneMapCancelFlag;  }
612  Void  setTMISEIToneMapPersistenceFlag(Bool b)              {  m_toneMapPersistenceFlag = b;  }
613  Bool   getTMISEIToneMapPersistenceFlag()                   {  return m_toneMapPersistenceFlag;  }
614  Void  setTMISEICodedDataBitDepth(Int b)                    {  m_codedDataBitDepth = b;  }
615  Int   getTMISEICodedDataBitDepth()                         {  return m_codedDataBitDepth;  }
616  Void  setTMISEITargetBitDepth(Int b)                       {  m_targetBitDepth = b;  }
617  Int   getTMISEITargetBitDepth()                            {  return m_targetBitDepth;  }
618  Void  setTMISEIModelID(Int b)                              {  m_modelId = b;  }
619  Int   getTMISEIModelID()                                   {  return m_modelId;  }
620  Void  setTMISEIMinValue(Int b)                             {  m_minValue = b;  }
621  Int   getTMISEIMinValue()                                  {  return m_minValue;  }
622  Void  setTMISEIMaxValue(Int b)                             {  m_maxValue = b;  }
623  Int   getTMISEIMaxValue()                                  {  return m_maxValue;  }
624  Void  setTMISEISigmoidMidpoint(Int b)                      {  m_sigmoidMidpoint = b;  }
625  Int   getTMISEISigmoidMidpoint()                           {  return m_sigmoidMidpoint;  }
626  Void  setTMISEISigmoidWidth(Int b)                         {  m_sigmoidWidth = b;  }
627  Int   getTMISEISigmoidWidth()                              {  return m_sigmoidWidth;  }
628  Void  setTMISEIStartOfCodedInterva( Int*  p )              {  m_startOfCodedInterval = p;  }
629  Int*  getTMISEIStartOfCodedInterva()                       {  return m_startOfCodedInterval;  }
630  Void  setTMISEINumPivots(Int b)                            {  m_numPivots = b;  }
631  Int   getTMISEINumPivots()                                 {  return m_numPivots;  }
632  Void  setTMISEICodedPivotValue( Int*  p )                  {  m_codedPivotValue = p;  }
633  Int*  getTMISEICodedPivotValue()                           {  return m_codedPivotValue;  }
634  Void  setTMISEITargetPivotValue( Int*  p )                 {  m_targetPivotValue = p;  }
635  Int*  getTMISEITargetPivotValue()                          {  return m_targetPivotValue;  }
636  Void  setTMISEICameraIsoSpeedIdc(Int b)                    {  m_cameraIsoSpeedIdc = b;  }
637  Int   getTMISEICameraIsoSpeedIdc()                         {  return m_cameraIsoSpeedIdc;  }
638  Void  setTMISEICameraIsoSpeedValue(Int b)                  {  m_cameraIsoSpeedValue = b;  }
639  Int   getTMISEICameraIsoSpeedValue()                       {  return m_cameraIsoSpeedValue;  }
640  Void  setTMISEIExposureIndexIdc(Int b)                     {  m_exposureIndexIdc = b;  }
641  Int   getTMISEIExposurIndexIdc()                           {  return m_exposureIndexIdc;  }
642  Void  setTMISEIExposureIndexValue(Int b)                   {  m_exposureIndexValue = b;  }
643  Int   getTMISEIExposurIndexValue()                         {  return m_exposureIndexValue;  }
644  Void  setTMISEIExposureCompensationValueSignFlag(Int b)    {  m_exposureCompensationValueSignFlag = b;  }
645  Int   getTMISEIExposureCompensationValueSignFlag()         {  return m_exposureCompensationValueSignFlag;  }
646  Void  setTMISEIExposureCompensationValueNumerator(Int b)   {  m_exposureCompensationValueNumerator = b;  }
647  Int   getTMISEIExposureCompensationValueNumerator()        {  return m_exposureCompensationValueNumerator;  }
648  Void  setTMISEIExposureCompensationValueDenomIdc(Int b)    {  m_exposureCompensationValueDenomIdc =b;  }
649  Int   getTMISEIExposureCompensationValueDenomIdc()         {  return m_exposureCompensationValueDenomIdc;  }
650  Void  setTMISEIRefScreenLuminanceWhite(Int b)              {  m_refScreenLuminanceWhite = b;  }
651  Int   getTMISEIRefScreenLuminanceWhite()                   {  return m_refScreenLuminanceWhite;  }
652  Void  setTMISEIExtendedRangeWhiteLevel(Int b)              {  m_extendedRangeWhiteLevel = b;  }
653  Int   getTMISEIExtendedRangeWhiteLevel()                   {  return m_extendedRangeWhiteLevel;  }
654  Void  setTMISEINominalBlackLevelLumaCodeValue(Int b)       {  m_nominalBlackLevelLumaCodeValue = b;  }
655  Int   getTMISEINominalBlackLevelLumaCodeValue()            {  return m_nominalBlackLevelLumaCodeValue;  }
656  Void  setTMISEINominalWhiteLevelLumaCodeValue(Int b)       {  m_nominalWhiteLevelLumaCodeValue = b;  }
657  Int   getTMISEINominalWhiteLevelLumaCodeValue()            {  return m_nominalWhiteLevelLumaCodeValue;  }
658  Void  setTMISEIExtendedWhiteLevelLumaCodeValue(Int b)      {  m_extendedWhiteLevelLumaCodeValue =b;  }
659  Int   getTMISEIExtendedWhiteLevelLumaCodeValue()           {  return m_extendedWhiteLevelLumaCodeValue;  }
660#if P0050_KNEE_FUNCTION_SEI
661  Void  setKneeSEIEnabled(Int b)                             { m_kneeSEIEnabled = b; }
662  Bool  getKneeSEIEnabled()                                  { return m_kneeSEIEnabled; }
663  Void  setKneeSEIId(Int b)                                  { m_kneeSEIId = b; }
664  Int   getKneeSEIId()                                       { return m_kneeSEIId; }
665  Void  setKneeSEICancelFlag(Bool b)                         { m_kneeSEICancelFlag=b; }
666  Bool  getKneeSEICancelFlag()                               { return m_kneeSEICancelFlag; }
667  Void  setKneeSEIPersistenceFlag(Bool b)                    { m_kneeSEIPersistenceFlag = b; }
668  Bool  getKneeSEIPersistenceFlag()                          { return m_kneeSEIPersistenceFlag; }
669  Void  setKneeSEIMappingFlag(Bool b)                        { m_kneeSEIMappingFlag = b; }
670  Bool  getKneeSEIMappingFlag()                              { return m_kneeSEIMappingFlag; }
671  Void  setKneeSEIInputDrange(Int b)                         { m_kneeSEIInputDrange = b; }
672  Int   getKneeSEIInputDrange()                              { return m_kneeSEIInputDrange; }
673  Void  setKneeSEIInputDispLuminance(Int b)                  { m_kneeSEIInputDispLuminance = b; }
674  Int   getKneeSEIInputDispLuminance()                       { return m_kneeSEIInputDispLuminance; }
675  Void  setKneeSEIOutputDrange(Int b)                        { m_kneeSEIOutputDrange = b; }
676  Int   getKneeSEIOutputDrange()                             { return m_kneeSEIOutputDrange; }
677  Void  setKneeSEIOutputDispLuminance(Int b)                 { m_kneeSEIOutputDispLuminance = b; }
678  Int   getKneeSEIOutputDispLuminance()                      { return m_kneeSEIOutputDispLuminance; }
679  Void  setKneeSEINumKneePointsMinus1(Int b)                 { m_kneeSEINumKneePointsMinus1 = b; }
680  Int   getKneeSEINumKneePointsMinus1()                      { return m_kneeSEINumKneePointsMinus1; }
681  Void  setKneeSEIInputKneePoint(Int *p)                     { m_kneeSEIInputKneePoint = p; }
682  Int*  getKneeSEIInputKneePoint()                           { return m_kneeSEIInputKneePoint; }
683  Void  setKneeSEIOutputKneePoint(Int *p)                    { m_kneeSEIOutputKneePoint = p; }
684  Int*  getKneeSEIOutputKneePoint()                          { return m_kneeSEIOutputKneePoint; }
685#endif
686#if Q0074_SEI_COLOR_MAPPING
687  Void  setColorMappingInfoSEIFile( Char* nameFile )         {  m_seiColorMappingFile = nameFile; }
688  Char* getColorMappingInfoSEIFile()                         {  return m_seiColorMappingFile; }
689#endif
690  Void  setFramePackingArrangementSEIEnabled(Int b)      { m_framePackingSEIEnabled = b; }
691  Int   getFramePackingArrangementSEIEnabled()           { return m_framePackingSEIEnabled; }
692  Void  setFramePackingArrangementSEIType(Int b)         { m_framePackingSEIType = b; }
693  Int   getFramePackingArrangementSEIType()              { return m_framePackingSEIType; }
694  Void  setFramePackingArrangementSEIId(Int b)           { m_framePackingSEIId = b; }
695  Int   getFramePackingArrangementSEIId()                { return m_framePackingSEIId; }
696  Void  setFramePackingArrangementSEIQuincunx(Int b)     { m_framePackingSEIQuincunx = b; }
697  Int   getFramePackingArrangementSEIQuincunx()          { return m_framePackingSEIQuincunx; }
698  Void  setFramePackingArrangementSEIInterpretation(Int b)  { m_framePackingSEIInterpretation = b; }
699  Int   getFramePackingArrangementSEIInterpretation()    { return m_framePackingSEIInterpretation; }
700  Void  setDisplayOrientationSEIAngle(Int b)             { m_displayOrientationSEIAngle = b; }
701  Int   getDisplayOrientationSEIAngle()                  { return m_displayOrientationSEIAngle; }
702  Void  setTemporalLevel0IndexSEIEnabled(Int b)          { m_temporalLevel0IndexSEIEnabled = b; }
703  Int   getTemporalLevel0IndexSEIEnabled()               { return m_temporalLevel0IndexSEIEnabled; }
704  Void  setGradualDecodingRefreshInfoEnabled(Int b)      { m_gradualDecodingRefreshInfoEnabled = b;    }
705  Int   getGradualDecodingRefreshInfoEnabled()           { return m_gradualDecodingRefreshInfoEnabled; }
706  Void  setDecodingUnitInfoSEIEnabled(Int b)                { m_decodingUnitInfoSEIEnabled = b;    }
707  Int   getDecodingUnitInfoSEIEnabled()                     { return m_decodingUnitInfoSEIEnabled; }
708  Void  setSOPDescriptionSEIEnabled(Int b)                { m_SOPDescriptionSEIEnabled = b; }
709  Int   getSOPDescriptionSEIEnabled()                     { return m_SOPDescriptionSEIEnabled; }
710  Void  setScalableNestingSEIEnabled(Int b)                { m_scalableNestingSEIEnabled = b; }
711#if Q0189_TMVP_CONSTRAINTS
712  void setTMVPConstraintsSEIEnabled(Int b)                { m_TMVPConstraintsSEIEnabled = b; }
713#endif
714  Int   getScalableNestingSEIEnabled()                     { return m_scalableNestingSEIEnabled; }
715#if Q0189_TMVP_CONSTRAINTS
716  Int   getTMVPConstraintsSEIEnabled()                {  return m_TMVPConstraintsSEIEnabled; }
717#endif
718  Void      setUseWP               ( Bool b )    { m_useWeightedPred   = b;    }
719  Void      setWPBiPred            ( Bool b )    { m_useWeightedBiPred = b;    }
720  Bool      getUseWP               ()            { return m_useWeightedPred;   }
721  Bool      getWPBiPred            ()            { return m_useWeightedBiPred; }
722  Void      setLog2ParallelMergeLevelMinus2   ( UInt u )    { m_log2ParallelMergeLevelMinus2       = u;    }
723  UInt      getLog2ParallelMergeLevelMinus2   ()            { return m_log2ParallelMergeLevelMinus2;       }
724  Void      setMaxNumMergeCand                ( UInt u )    { m_maxNumMergeCand = u;      }
725  UInt      getMaxNumMergeCand                ()            { return m_maxNumMergeCand;   }
726  Void      setUseScalingListId    ( Int  u )    { m_useScalingListId       = u;   }
727  Int       getUseScalingListId    ()            { return m_useScalingListId;      }
728  Void      setScalingListFile     ( Char*  pch ){ m_scalingListFile     = pch; }
729  Char*     getScalingListFile     ()            { return m_scalingListFile;    }
730  Void      setTMVPModeId ( Int  u ) { m_TMVPModeId = u;    }
731  Int       getTMVPModeId ()         { return m_TMVPModeId; }
732  Void      setSignHideFlag( Int signHideFlag ) { m_signHideFlag = signHideFlag; }
733  Int       getSignHideFlag()                    { return m_signHideFlag; }
734  Bool      getUseRateCtrl         ()              { return m_RCEnableRateControl;   }
735  Void      setUseRateCtrl         ( Bool b )      { m_RCEnableRateControl = b;      }
736  Int       getTargetBitrate       ()              { return m_RCTargetBitrate;       }
737  Void      setTargetBitrate       ( Int bitrate ) { m_RCTargetBitrate  = bitrate;   }
738  Int       getKeepHierBit         ()              { return m_RCKeepHierarchicalBit; }
739  Void      setKeepHierBit         ( Int i )       { m_RCKeepHierarchicalBit = i;    }
740  Bool      getLCULevelRC          ()              { return m_RCLCULevelRC; }
741  Void      setLCULevelRC          ( Bool b )      { m_RCLCULevelRC = b; }
742  Bool      getUseLCUSeparateModel ()              { return m_RCUseLCUSeparateModel; }
743  Void      setUseLCUSeparateModel ( Bool b )      { m_RCUseLCUSeparateModel = b;    }
744  Int       getInitialQP           ()              { return m_RCInitialQP;           }
745  Void      setInitialQP           ( Int QP )      { m_RCInitialQP = QP;             }
746  Bool      getForceIntraQP        ()              { return m_RCForceIntraQP;        }
747  Void      setForceIntraQP        ( Bool b )      { m_RCForceIntraQP = b;           }
748  Bool      getTransquantBypassEnableFlag()           { return m_TransquantBypassEnableFlag; }
749  Void      setTransquantBypassEnableFlag(Bool flag)  { m_TransquantBypassEnableFlag = flag; }
750  Bool      getCUTransquantBypassFlagForceValue()          { return m_CUTransquantBypassFlagForce; }
751  Void      setCUTransquantBypassFlagForceValue(Bool flag) { m_CUTransquantBypassFlagForce = flag; }
752  Void setVPS(TComVPS *p) { m_cVPS = *p; }
753  TComVPS *getVPS() { return &m_cVPS; }
754  Void      setUseRecalculateQPAccordingToLambda ( Bool b ) { m_recalculateQPAccordingToLambda = b;    }
755  Bool      getUseRecalculateQPAccordingToLambda ()         { return m_recalculateQPAccordingToLambda; }
756
757  Void      setUseStrongIntraSmoothing ( Bool b ) { m_useStrongIntraSmoothing = b;    }
758  Bool      getUseStrongIntraSmoothing ()         { return m_useStrongIntraSmoothing; }
759
760  Void      setActiveParameterSetsSEIEnabled ( Int b )  { m_activeParameterSetsSEIEnabled = b; } 
761  Int       getActiveParameterSetsSEIEnabled ()         { return m_activeParameterSetsSEIEnabled; }
762  Bool      getVuiParametersPresentFlag()                 { return m_vuiParametersPresentFlag; }
763  Void      setVuiParametersPresentFlag(Bool i)           { m_vuiParametersPresentFlag = i; }
764  Bool      getAspectRatioInfoPresentFlag()               { return m_aspectRatioInfoPresentFlag; }
765  Void      setAspectRatioInfoPresentFlag(Bool i)         { m_aspectRatioInfoPresentFlag = i; }
766  Int       getAspectRatioIdc()                           { return m_aspectRatioIdc; }
767  Void      setAspectRatioIdc(Int i)                      { m_aspectRatioIdc = i; }
768  Int       getSarWidth()                                 { return m_sarWidth; }
769  Void      setSarWidth(Int i)                            { m_sarWidth = i; }
770  Int       getSarHeight()                                { return m_sarHeight; }
771  Void      setSarHeight(Int i)                           { m_sarHeight = i; }
772  Bool      getOverscanInfoPresentFlag()                  { return m_overscanInfoPresentFlag; }
773  Void      setOverscanInfoPresentFlag(Bool i)            { m_overscanInfoPresentFlag = i; }
774  Bool      getOverscanAppropriateFlag()                  { return m_overscanAppropriateFlag; }
775  Void      setOverscanAppropriateFlag(Bool i)            { m_overscanAppropriateFlag = i; }
776  Bool      getVideoSignalTypePresentFlag()               { return m_videoSignalTypePresentFlag; }
777  Void      setVideoSignalTypePresentFlag(Bool i)         { m_videoSignalTypePresentFlag = i; }
778  Int       getVideoFormat()                              { return m_videoFormat; }
779  Void      setVideoFormat(Int i)                         { m_videoFormat = i; }
780  Bool      getVideoFullRangeFlag()                       { return m_videoFullRangeFlag; }
781  Void      setVideoFullRangeFlag(Bool i)                 { m_videoFullRangeFlag = i; }
782  Bool      getColourDescriptionPresentFlag()             { return m_colourDescriptionPresentFlag; }
783  Void      setColourDescriptionPresentFlag(Bool i)       { m_colourDescriptionPresentFlag = i; }
784  Int       getColourPrimaries()                          { return m_colourPrimaries; }
785  Void      setColourPrimaries(Int i)                     { m_colourPrimaries = i; }
786  Int       getTransferCharacteristics()                  { return m_transferCharacteristics; }
787  Void      setTransferCharacteristics(Int i)             { m_transferCharacteristics = i; }
788  Int       getMatrixCoefficients()                       { return m_matrixCoefficients; }
789  Void      setMatrixCoefficients(Int i)                  { m_matrixCoefficients = i; }
790  Bool      getChromaLocInfoPresentFlag()                 { return m_chromaLocInfoPresentFlag; }
791  Void      setChromaLocInfoPresentFlag(Bool i)           { m_chromaLocInfoPresentFlag = i; }
792  Int       getChromaSampleLocTypeTopField()              { return m_chromaSampleLocTypeTopField; }
793  Void      setChromaSampleLocTypeTopField(Int i)         { m_chromaSampleLocTypeTopField = i; }
794  Int       getChromaSampleLocTypeBottomField()           { return m_chromaSampleLocTypeBottomField; }
795  Void      setChromaSampleLocTypeBottomField(Int i)      { m_chromaSampleLocTypeBottomField = i; }
796  Bool      getNeutralChromaIndicationFlag()              { return m_neutralChromaIndicationFlag; }
797  Void      setNeutralChromaIndicationFlag(Bool i)        { m_neutralChromaIndicationFlag = i; }
798  Window   &getDefaultDisplayWindow()                     { return m_defaultDisplayWindow; }
799  Void      setDefaultDisplayWindow (Int offsetLeft, Int offsetRight, Int offsetTop, Int offsetBottom ) { m_defaultDisplayWindow.setWindow (offsetLeft, offsetRight, offsetTop, offsetBottom); }
800  Bool      getFrameFieldInfoPresentFlag()                { return m_frameFieldInfoPresentFlag; }
801  Void      setFrameFieldInfoPresentFlag(Bool i)          { m_frameFieldInfoPresentFlag = i; } 
802  Bool      getPocProportionalToTimingFlag()              { return m_pocProportionalToTimingFlag; }
803  Void      setPocProportionalToTimingFlag(Bool x)        { m_pocProportionalToTimingFlag = x;    }
804  Int       getNumTicksPocDiffOneMinus1()                 { return m_numTicksPocDiffOneMinus1;    }
805  Void      setNumTicksPocDiffOneMinus1(Int x)            { m_numTicksPocDiffOneMinus1 = x;       }
806  Bool      getBitstreamRestrictionFlag()                 { return m_bitstreamRestrictionFlag; }
807  Void      setBitstreamRestrictionFlag(Bool i)           { m_bitstreamRestrictionFlag = i; }
808  Bool      getTilesFixedStructureFlag()                  { return m_tilesFixedStructureFlag; }
809  Void      setTilesFixedStructureFlag(Bool i)            { m_tilesFixedStructureFlag = i; }
810  Bool      getMotionVectorsOverPicBoundariesFlag()       { return m_motionVectorsOverPicBoundariesFlag; }
811  Void      setMotionVectorsOverPicBoundariesFlag(Bool i) { m_motionVectorsOverPicBoundariesFlag = i; }
812  Int       getMinSpatialSegmentationIdc()                { return m_minSpatialSegmentationIdc; }
813  Void      setMinSpatialSegmentationIdc(Int i)           { m_minSpatialSegmentationIdc = i; }
814  Int       getMaxBytesPerPicDenom()                      { return m_maxBytesPerPicDenom; }
815  Void      setMaxBytesPerPicDenom(Int i)                 { m_maxBytesPerPicDenom = i; }
816  Int       getMaxBitsPerMinCuDenom()                     { return m_maxBitsPerMinCuDenom; }
817  Void      setMaxBitsPerMinCuDenom(Int i)                { m_maxBitsPerMinCuDenom = i; }
818  Int       getLog2MaxMvLengthHorizontal()                { return m_log2MaxMvLengthHorizontal; }
819  Void      setLog2MaxMvLengthHorizontal(Int i)           { m_log2MaxMvLengthHorizontal = i; }
820  Int       getLog2MaxMvLengthVertical()                  { return m_log2MaxMvLengthVertical; }
821  Void      setLog2MaxMvLengthVertical(Int i)             { m_log2MaxMvLengthVertical = i; }
822 
823  Bool getProgressiveSourceFlag() const { return m_progressiveSourceFlag; }
824  Void setProgressiveSourceFlag(Bool b) { m_progressiveSourceFlag = b; }
825 
826  Bool getInterlacedSourceFlag() const { return m_interlacedSourceFlag; }
827  Void setInterlacedSourceFlag(Bool b) { m_interlacedSourceFlag = b; }
828 
829  Bool getNonPackedConstraintFlag() const { return m_nonPackedConstraintFlag; }
830  Void setNonPackedConstraintFlag(Bool b) { m_nonPackedConstraintFlag = b; }
831 
832  Bool getFrameOnlyConstraintFlag() const { return m_frameOnlyConstraintFlag; }
833  Void setFrameOnlyConstraintFlag(Bool b) { m_frameOnlyConstraintFlag = b; }
834
835#if SVC_EXTENSION
836  UInt      getLayerId            () { return m_layerId;              }
837  Void      setLayerId            (UInt layer) { m_layerId = layer; }
838  UInt      getNumLayer           () { return m_numLayer;             } 
839  Void      setNumLayer           (UInt uiNum)   { m_numLayer = uiNum;  }
840  Void      setConformanceWindow(Window& conformanceWindow ) { m_conformanceWindow = conformanceWindow; }
841  Void      setElRapSliceTypeB(Int bEnabled) {m_elRapSliceBEnabled = bEnabled;}
842  Int       getElRapSliceTypeB()              {return m_elRapSliceBEnabled;}
843#if M0040_ADAPTIVE_RESOLUTION_CHANGE
844  Void      setAdaptiveResolutionChange(Int x) { m_adaptiveResolutionChange = x;    }
845  Int       getAdaptiveResolutionChange()      { return m_adaptiveResolutionChange; }
846#endif
847#if HIGHER_LAYER_IRAP_SKIP_FLAG
848  Void      setSkipPictureAtArcSwitch(Int x) { m_skipPictureAtArcSwitch = x;    }
849  Int       getSkipPictureAtArcSwitch()      { return m_skipPictureAtArcSwitch; }
850#endif
851#if AUXILIARY_PICTURES
852  Void         setChromaFormatIDC(ChromaFormat x) { m_chromaFormatIDC = x;    }
853  ChromaFormat getChromaFormatIDC()               { return m_chromaFormatIDC; }
854#endif
855#if O0153_ALT_OUTPUT_LAYER_FLAG
856  Bool      getAltOuputLayerFlag() const { return m_altOutputLayerFlag; }
857  Void      setAltOuputLayerFlag(Bool b) { m_altOutputLayerFlag = b;    }
858#endif
859#if O0149_CROSS_LAYER_BLA_FLAG
860  Bool      getCrossLayerBLAFlag() const { return m_crossLayerBLAFlag; }
861  Void      setCrossLayerBLAFlag(Bool b) { m_crossLayerBLAFlag = b;    }
862#endif
863#if FAST_INTRA_SHVC
864  Bool      getUseFastIntraScalable         ()      { return m_useFastIntraScalable; }
865  Void      setUseFastIntraScalable         ( Bool  b )     { m_useFastIntraScalable = b; }
866#endif
867#if VPS_EXTN_DIRECT_REF_LAYERS
868  Int       getNumDirectRefLayers           ()                              { return m_numDirectRefLayers;      }
869  Void      setNumDirectRefLayers           (Int num)                       { m_numDirectRefLayers = num;       }
870
871  Int       getRefLayerId                   (Int i)                         { return m_refLayerId[i];           }
872  Void      setRefLayerId                   (Int i, Int refLayerId)         { m_refLayerId[i] = refLayerId;     }
873
874  Int       getNumActiveRefLayers           ()                              { return m_numActiveRefLayers;      }
875  Void      setNumActiveRefLayers           (Int num)                       { m_numActiveRefLayers = num;       }
876
877  Int       getPredLayerId                  (Int i)                         { return m_predLayerId[i];          }
878  Void      setPredLayerId                  (Int i, Int refLayerId)         { m_predLayerId[i] = refLayerId;    }
879
880  Int       getNumSamplePredRefLayers       ()                              { return m_numSamplePredRefLayers;  }
881  Void      setNumSamplePredRefLayers       (Int num)                       { m_numSamplePredRefLayers = num;   }
882
883  Int       getSamplePredRefLayerId         (Int i)                         { return m_samplePredRefLayerId[i];       }
884  Void      setSamplePredRefLayerId         (Int i, Int refLayerId)         { m_samplePredRefLayerId[i] = refLayerId; }
885
886  Int       getNumMotionPredRefLayers       ()                              { return m_numMotionPredRefLayers;  }
887  Void      setNumMotionPredRefLayers       (Int num)                       { m_numMotionPredRefLayers = num;   }
888
889  Int       getMotionPredRefLayerId         (Int i)                         { return m_motionPredRefLayerId[i];       }
890  Void      setMotionPredRefLayerId         (Int i, Int refLayerId)         { m_motionPredRefLayerId[i] = refLayerId; }
891
892  Bool      getSamplePredEnabledFlag        (Int i)                         { return m_samplePredEnabledFlag[i];  }
893  Void      setSamplePredEnabledFlag        (Int i,Bool flag)               { m_samplePredEnabledFlag[i] = flag;  }
894
895  Bool      getMotionPredEnabledFlag        (Int i)                         { return m_motionPredEnabledFlag[i];  }
896  Void      setMotionPredEnabledFlag        (Int i,Bool flag)               { m_motionPredEnabledFlag[i] = flag;  }
897#endif
898  Int       getMaxTidIlRefPicsPlus1         ()                              { return m_maxTidIlRefPicsPlus1; }
899  Void      setMaxTidIlRefPicsPlus1         (Int num)                       { m_maxTidIlRefPicsPlus1 = num;  }
900#if LAYERS_NOT_PRESENT_SEI
901  Void  setLayersNotPresentSEIEnabled(Int b)             { m_layersNotPresentSEIEnabled = b; }
902  Int   getLayersNotPresentSEIEnabled()                  { return m_layersNotPresentSEIEnabled; }
903#endif
904#if N0383_IL_CONSTRAINED_TILE_SETS_SEI
905  Void  setInterLayerConstrainedTileSetsSEIEnabled(Bool b) { m_interLayerConstrainedTileSetsSEIEnabled = b; }
906  Bool  getInterLayerConstrainedTileSetsSEIEnabled()       { return m_interLayerConstrainedTileSetsSEIEnabled; }
907  Void  setIlNumSetsInMessage(UInt b)                      { m_ilNumSetsInMessage = b; }
908  Int   getIlNumSetsInMessage()                            { return m_ilNumSetsInMessage; }
909  Void  setSkippedTileSetPresentFlag(Bool b)               { m_skippedTileSetPresentFlag = b; }
910  Bool  getSkippedTileSetPresentFlag()                     { return m_skippedTileSetPresentFlag; }
911  Void  setTopLeftTileIndex(UInt *b)
912  {
913    for (UInt i = 0; i < m_ilNumSetsInMessage; i++)
914    {
915      m_topLeftTileIndex[i] = b[i];
916    }
917  }
918  UInt  getTopLeftTileIndex(UInt b)                        { return m_topLeftTileIndex[b]; }
919  Void  setBottomRightTileIndex(UInt *b)
920  {
921    for (UInt i = 0; i < m_ilNumSetsInMessage; i++)
922    {
923      m_bottomRightTileIndex[i] = b[i];
924    }
925  }
926  UInt  getBottomRightTileIndex(UInt b)                    { return m_bottomRightTileIndex[b]; }
927  Void  setIlcIdc(UInt *b)
928  {
929    for (UInt i = 0; i < m_ilNumSetsInMessage; i++)
930    {
931      m_ilcIdc[i] = b[i];
932    }
933  }
934  UInt  getIlcIdc(UInt b)                                  { return m_ilcIdc[b]; }
935#endif
936#if Q0048_CGS_3D_ASYMLUT
937  Void      setCGSFlag(Int n)             { m_nCGSFlag = n;    }
938  Int       getCGSFlag()                  { return m_nCGSFlag; }
939  Void      setCGSMaxOctantDepth(Int n)   { m_nCGSMaxOctantDepth = n;    }
940  Int       getCGSMaxOctantDepth()        { return m_nCGSMaxOctantDepth; }
941  Void      setCGSMaxYPartNumLog2(Int n)  { m_nCGSMaxYPartNumLog2 = n;    }
942  Int       getCGSMaxYPartNumLog2()       { return m_nCGSMaxYPartNumLog2; }
943  Void      setCGSLUTBit(Int n)           { m_nCGSLUTBit = n;    }
944  Int       getCGSLUTBit()                { return m_nCGSLUTBit; }
945#if R0151_CGS_3D_ASYMLUT_IMPROVE
946  Void      setCGSAdaptChroma(Int n)      { m_nCGSAdaptiveChroma = n;  }
947  Int       getCGSAdaptChroma()           { return m_nCGSAdaptiveChroma; }
948#endif
949#endif
950#endif
951};
952
953#if SVC_EXTENSION
954#if REPN_FORMAT_IN_VPS
955struct RepFormatCfg
956{
957  Int   m_chromaFormatIdc;
958  Bool  m_separateColourPlaneFlag;
959  Int   m_picWidthInLumaSamples;
960  Int   m_picHeightInLumaSamples;
961  Int   m_bitDepthLuma;
962  Int   m_bitDepthChroma;
963  RepFormatCfg()
964    : m_chromaFormatIdc         (CHROMA_420)
965    , m_separateColourPlaneFlag (0)
966    , m_picWidthInLumaSamples   (352)
967    , m_picHeightInLumaSamples  (288)
968    , m_bitDepthLuma            (8)
969    , m_bitDepthChroma          (8)
970  {}
971};
972std::istringstream &operator>>(std::istringstream &in, RepFormatCfg &repFormatCfg);
973#endif
974#endif //SVC_EXTENSION
975
976//! \}
977
978#endif // !defined(AFX_TENCCFG_H__6B99B797_F4DA_4E46_8E78_7656339A6C41__INCLUDED_)
Note: See TracBrowser for help on using the repository browser.