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

Last change on this file was 269, checked in by seregin, 11 years ago

add config parameter for NumActiveRefLayers

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