source: 3DVCSoftware/branches/HTM-DEV-0.2-dev/source/Lib/TLibEncoder/TEncCfg.h @ 437

Last change on this file since 437 was 372, checked in by tech, 12 years ago

Further minor cleanups.

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