source: 3DVCSoftware/branches/HTM-DEV-0.3-dev2/source/Lib/TLibEncoder/TEncCfg.h @ 476

Last change on this file since 476 was 476, checked in by mediatek-htm, 11 years ago

Integration of 3D-HEVC merge related coding tools:
Inter-view motion merge candidate
HHI_INTER_VIEW_MOTION_PRED
SAIT_IMPROV_MOTION_PRED_M24829, improved inter-view motion vector prediction
QC_MRG_CANS_B0048 , JCT3V-B0048, B0086, B0069
OL_DISMV_POS_B0069 , different pos for disparity MV candidate, B0069
MTK_INTERVIEW_MERGE_A0049 , second part
QC_AMVP_MRG_UNIFY_IVCAN_C0051
TEXTURE MERGING CANDIDATE , JCT3V-C0137

Notes: Two configurations are added:
PredDepthMapGen : 1
MultiviewMvPred : 7

From: yiwen.chen@… (MediaTek)

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