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

Last change on this file since 252 was 212, checked in by canon, 12 years ago

integration M0115 - Fast Intra Decision - cfg parameter: FIS (off by default)
edouard.francois@…

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