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

Last change on this file since 427 was 397, checked in by seregin, 11 years ago

set max_tid_il_ref_pics_plus1 and max_tid_ref_present_flag in the config file (configuration setting). Patch provided by Hahyun Lee <hanilee@…>

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