source: 3DVCSoftware/branches/HTM-10.1-dev0/source/Lib/TLibEncoder/TEncCfg.h @ 876

Last change on this file since 876 was 876, checked in by tech, 10 years ago

Cleanups part 1.

  • Property svn:eol-style set to native
File size: 57.1 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-2014, 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_numActiveRefLayerPics;
77  Int m_interLayerPredLayerIdc [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_numActiveRefLayerPics(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_interLayerPredLayerIdc,   0, sizeof(m_interLayerPredLayerIdc) );
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  Bool m_progressiveSourceFlag;
136  Bool m_interlacedSourceFlag;
137  Bool m_nonPackedConstraintFlag;
138  Bool m_frameOnlyConstraintFlag;
139
140  //====== Coding Structure ========
141  UInt      m_uiIntraPeriod;
142  UInt      m_uiDecodingRefreshType;            ///< the type of decoding refresh employed for the random access.
143  Int       m_iGOPSize;
144#if H_MV
145  GOPEntry  m_GOPList[MAX_GOP+1];
146#else
147  GOPEntry  m_GOPList[MAX_GOP];
148#endif
149  Int       m_extraRPSs;
150  Int       m_maxDecPicBuffering[MAX_TLAYER];
151  Int       m_numReorderPics[MAX_TLAYER];
152 
153  Int       m_iQP;                              //  if (AdaptiveQP == OFF)
154 
155  Int       m_aiPad[2];
156 
157
158  Int       m_iMaxRefPicNum;                     ///< this is used to mimic the sliding mechanism used by the decoder
159                                                 // TODO: We need to have a common sliding mechanism used by both the encoder and decoder
160
161  Int       m_maxTempLayer;                      ///< Max temporal layer
162  Bool m_useAMP;
163  //======= Transform =============
164  UInt      m_uiQuadtreeTULog2MaxSize;
165  UInt      m_uiQuadtreeTULog2MinSize;
166  UInt      m_uiQuadtreeTUMaxDepthInter;
167  UInt      m_uiQuadtreeTUMaxDepthIntra;
168 
169  //====== Loop/Deblock Filter ========
170  Bool      m_bLoopFilterDisable;
171  Bool      m_loopFilterOffsetInPPS;
172  Int       m_loopFilterBetaOffsetDiv2;
173  Int       m_loopFilterTcOffsetDiv2;
174  Bool      m_DeblockingFilterControlPresent;
175  Bool      m_DeblockingFilterMetric;
176  Bool      m_bUseSAO;
177  Int       m_maxNumOffsetsPerPic;
178  Bool      m_saoLcuBoundary;
179  //====== Motion search ========
180  Int       m_iFastSearch;                      //  0:Full search  1:Diamond  2:PMVFAST
181  Int       m_iSearchRange;                     //  0:Full frame
182  Int       m_bipredSearchRange;
183
184  //====== Quality control ========
185  Int       m_iMaxDeltaQP;                      //  Max. absolute delta QP (1:default)
186  Int       m_iMaxCuDQPDepth;                   //  Max. depth for a minimum CuDQP (0:default)
187
188  Int       m_chromaCbQpOffset;                 //  Chroma Cb QP Offset (0:default)
189  Int       m_chromaCrQpOffset;                 //  Chroma Cr Qp Offset (0:default)
190
191#if ADAPTIVE_QP_SELECTION
192  Bool      m_bUseAdaptQpSelect;
193#endif
194
195  Bool      m_bUseAdaptiveQP;
196  Int       m_iQPAdaptationRange;
197 
198  //====== Tool list ========
199  Bool      m_bUseASR;
200  Bool      m_bUseHADME;
201  Bool      m_useRDOQ;
202  Bool      m_useRDOQTS;
203  UInt      m_rdPenalty;
204  Bool      m_bUseFastEnc;
205  Bool      m_bUseEarlyCU;
206  Bool      m_useFastDecisionForMerge;
207  Bool      m_bUseCbfFastMode;
208  Bool      m_useEarlySkipDetection;
209  Bool      m_useTransformSkip;
210  Bool      m_useTransformSkipFast;
211  Int*      m_aidQP;
212  UInt      m_uiDeltaQpRD;
213 
214  Bool      m_bUseConstrainedIntraPred;
215  Bool      m_usePCM;
216  UInt      m_pcmLog2MaxSize;
217  UInt      m_uiPCMLog2MinSize;
218  //====== Slice ========
219  Int       m_sliceMode;
220  Int       m_sliceArgument; 
221  //====== Dependent Slice ========
222  Int       m_sliceSegmentMode;
223  Int       m_sliceSegmentArgument;
224  Bool      m_bLFCrossSliceBoundaryFlag;
225
226  Bool      m_bPCMInputBitDepthFlag;
227  UInt      m_uiPCMBitDepthLuma;
228  UInt      m_uiPCMBitDepthChroma;
229  Bool      m_bPCMFilterDisableFlag;
230  Bool      m_loopFilterAcrossTilesEnabledFlag;
231  Int       m_iUniformSpacingIdr;
232  Int       m_iNumColumnsMinus1;
233  UInt*     m_puiColumnWidth;
234  Int       m_iNumRowsMinus1;
235  UInt*     m_puiRowHeight;
236
237  Int       m_iWaveFrontSynchro;
238  Int       m_iWaveFrontSubstreams;
239
240  Int       m_decodedPictureHashSEIEnabled;              ///< Checksum(3)/CRC(2)/MD5(1)/disable(0) acting on decoded picture hash SEI message
241  Int       m_bufferingPeriodSEIEnabled;
242  Int       m_pictureTimingSEIEnabled;
243  Int       m_recoveryPointSEIEnabled;
244  Bool      m_toneMappingInfoSEIEnabled;
245  Int       m_toneMapId;
246  Bool      m_toneMapCancelFlag;
247  Bool      m_toneMapPersistenceFlag;
248  Int       m_codedDataBitDepth;
249  Int       m_targetBitDepth;
250  Int       m_modelId; 
251  Int       m_minValue;
252  Int       m_maxValue;
253  Int       m_sigmoidMidpoint;
254  Int       m_sigmoidWidth;
255  Int       m_numPivots;
256  Int       m_cameraIsoSpeedIdc;
257  Int       m_cameraIsoSpeedValue;
258  Int       m_exposureCompensationValueSignFlag;
259  Int       m_exposureCompensationValueNumerator;
260  Int       m_exposureCompensationValueDenomIdc;
261  Int       m_refScreenLuminanceWhite;
262  Int       m_extendedRangeWhiteLevel;
263  Int       m_nominalBlackLevelLumaCodeValue;
264  Int       m_nominalWhiteLevelLumaCodeValue;
265  Int       m_extendedWhiteLevelLumaCodeValue;
266  Int*      m_startOfCodedInterval;
267  Int*      m_codedPivotValue;
268  Int*      m_targetPivotValue;
269  Int       m_framePackingSEIEnabled;
270  Int       m_framePackingSEIType;
271  Int       m_framePackingSEIId;
272  Int       m_framePackingSEIQuincunx;
273  Int       m_framePackingSEIInterpretation;
274  Int       m_displayOrientationSEIAngle;
275  Int       m_temporalLevel0IndexSEIEnabled;
276  Int       m_gradualDecodingRefreshInfoEnabled;
277  Int       m_decodingUnitInfoSEIEnabled;
278  Int       m_SOPDescriptionSEIEnabled;
279  Int       m_scalableNestingSEIEnabled;
280  //====== Weighted Prediction ========
281  Bool      m_useWeightedPred;       //< Use of Weighting Prediction (P_SLICE)
282  Bool      m_useWeightedBiPred;    //< Use of Bi-directional Weighting Prediction (B_SLICE)
283  UInt      m_log2ParallelMergeLevelMinus2;       ///< Parallel merge estimation region
284  UInt      m_maxNumMergeCand;                    ///< Maximum number of merge candidates
285  Int       m_useScalingListId;            ///< Using quantization matrix i.e. 0=off, 1=default, 2=file.
286  Char*     m_scalingListFile;          ///< quantization matrix file name
287  Int       m_TMVPModeId;
288  Int       m_signHideFlag;
289  Bool      m_RCEnableRateControl;
290  Int       m_RCTargetBitrate;
291  Int       m_RCKeepHierarchicalBit;
292  Bool      m_RCLCULevelRC;
293  Bool      m_RCUseLCUSeparateModel;
294  Int       m_RCInitialQP;
295  Bool      m_RCForceIntraQP;
296
297#if KWU_RC_MADPRED_E0227
298  UInt       m_depthMADPred;
299#endif
300#if KWU_RC_VIEWRC_E0227
301  Bool      m_bViewWiseRateCtrl;
302#endif
303  Bool      m_TransquantBypassEnableFlag;                     ///< transquant_bypass_enable_flag setting in PPS.
304  Bool      m_CUTransquantBypassFlagForce;                    ///< if transquant_bypass_enable_flag, then, if true, all CU transquant bypass flags will be set to true.
305#if H_MV
306  TComVPS*  m_cVPS;                                           ///< pointer to VPS, same for all layers
307#else
308  TComVPS                    m_cVPS;
309#endif
310
311#if H_3D
312  TComDLT*  m_cDLT;
313#endif
314
315  Bool      m_recalculateQPAccordingToLambda;                 ///< recalculate QP value according to the lambda value
316  Int       m_activeParameterSetsSEIEnabled;                  ///< enable active parameter set SEI message
317  Bool      m_vuiParametersPresentFlag;                       ///< enable generation of VUI parameters
318  Bool      m_aspectRatioInfoPresentFlag;                     ///< Signals whether aspect_ratio_idc is present
319  Int       m_aspectRatioIdc;                                 ///< aspect_ratio_idc
320  Int       m_sarWidth;                                       ///< horizontal size of the sample aspect ratio
321  Int       m_sarHeight;                                      ///< vertical size of the sample aspect ratio
322  Bool      m_overscanInfoPresentFlag;                        ///< Signals whether overscan_appropriate_flag is present
323  Bool      m_overscanAppropriateFlag;                        ///< Indicates whether conformant decoded pictures are suitable for display using overscan
324  Bool      m_videoSignalTypePresentFlag;                     ///< Signals whether video_format, video_full_range_flag, and colour_description_present_flag are present
325  Int       m_videoFormat;                                    ///< Indicates representation of pictures
326  Bool      m_videoFullRangeFlag;                             ///< Indicates the black level and range of luma and chroma signals
327  Bool      m_colourDescriptionPresentFlag;                   ///< Signals whether colour_primaries, transfer_characteristics and matrix_coefficients are present
328  Int       m_colourPrimaries;                                ///< Indicates chromaticity coordinates of the source primaries
329  Int       m_transferCharacteristics;                        ///< Indicates the opto-electronic transfer characteristics of the source
330  Int       m_matrixCoefficients;                             ///< Describes the matrix coefficients used in deriving luma and chroma from RGB primaries
331  Bool      m_chromaLocInfoPresentFlag;                       ///< Signals whether chroma_sample_loc_type_top_field and chroma_sample_loc_type_bottom_field are present
332  Int       m_chromaSampleLocTypeTopField;                    ///< Specifies the location of chroma samples for top field
333  Int       m_chromaSampleLocTypeBottomField;                 ///< Specifies the location of chroma samples for bottom field
334  Bool      m_neutralChromaIndicationFlag;                    ///< Indicates that the value of all decoded chroma samples is equal to 1<<(BitDepthCr-1)
335  Window    m_defaultDisplayWindow;                           ///< Represents the default display window parameters
336  Bool      m_frameFieldInfoPresentFlag;                      ///< Indicates that pic_struct and other field coding related values are present in picture timing SEI messages
337  Bool      m_pocProportionalToTimingFlag;                    ///< Indicates that the POC value is proportional to the output time w.r.t. first picture in CVS
338  Int       m_numTicksPocDiffOneMinus1;                       ///< Number of ticks minus 1 that for a POC difference of one
339  Bool      m_bitstreamRestrictionFlag;                       ///< Signals whether bitstream restriction parameters are present
340  Bool      m_tilesFixedStructureFlag;                        ///< Indicates that each active picture parameter set has the same values of the syntax elements related to tiles
341  Bool      m_motionVectorsOverPicBoundariesFlag;             ///< Indicates that no samples outside the picture boundaries are used for inter prediction
342  Int       m_minSpatialSegmentationIdc;                      ///< Indicates the maximum size of the spatial segments in the pictures in the coded video sequence
343  Int       m_maxBytesPerPicDenom;                            ///< Indicates a number of bytes not exceeded by the sum of the sizes of the VCL NAL units associated with any coded picture
344  Int       m_maxBitsPerMinCuDenom;                           ///< Indicates an upper bound for the number of bits of coding_unit() data
345  Int       m_log2MaxMvLengthHorizontal;                      ///< Indicate the maximum absolute value of a decoded horizontal MV component in quarter-pel luma units
346  Int       m_log2MaxMvLengthVertical;                        ///< Indicate the maximum absolute value of a decoded vertical MV component in quarter-pel luma units
347
348  Bool      m_useStrongIntraSmoothing;                        ///< enable the use of strong intra smoothing (bi_linear interpolation) for 32x32 blocks when reference samples are flat.
349#if H_MV_HLS_7_SEI_P0204_26
350  Bool              m_subBistreamPropSEIEnabled;
351  Int               m_numAdditionalSubStreams;
352  std::vector<Int>  m_subBitstreamMode;
353  std::vector<Int>  m_outputLayerSetIdxToVps;
354  std::vector<Int>  m_highestSublayerId;
355  std::vector<Int>  m_avgBitRate;
356  std::vector<Int>  m_maxBitRate;
357#endif
358
359#if H_MV
360  Int       m_layerId;
361  Int       m_layerIdInVps;
362  Int       m_viewId;
363  Int       m_viewIndex; 
364#endif
365
366#if H_3D
367  Bool      m_isDepth;
368
369  //====== Camera Parameters ======
370  UInt      m_uiCamParPrecision;
371  Bool      m_bCamParInSliceHeader;
372  Int**     m_aaiCodedScale;
373  Int**     m_aaiCodedOffset;
374  TAppComCamPara* m_cameraParameters; 
375 
376#if H_3D_VSO
377  //====== View Synthesis Optimization ======
378  TRenModSetupStrParser* m_renderModelParameters; 
379  Bool      m_bUseVSO;
380  Bool      m_bForceLambdaScale;
381  Bool      m_bAllowNegDist;
382  Double    m_dLambdaScaleVSO;
383  UInt      m_uiVSOMode;
384  // LGE_WVSO_A0119
385  Bool      m_bUseWVSO;
386  Int       m_iVSOWeight;
387  Int       m_iVSDWeight;
388  Int       m_iDWeight;
389  // SAIT_VSO_EST_A0033
390  Bool      m_bUseEstimatedVSD; 
391  Double    m_dDispCoeff;
392#endif
393#if H_3D_ARP
394  UInt      m_uiUseAdvResPred;
395  UInt      m_uiARPStepNum;
396#endif
397#if H_3D_SPIVMP
398  Int      m_iSubPULog2Size;
399  Int      m_iSubPUMPILog2Size;
400#endif
401#if H_3D_IC
402  Bool      m_bUseIC;
403#endif
404#if H_3D_INTER_SDC
405  bool      m_bInterSDC;
406#endif
407#if H_3D_DBBP
408  Bool      m_bUseDBBP;
409#endif
410  //====== Depth Intra Modes ======
411#if H_3D_DIM
412  Bool      m_useDMM;
413  Bool      m_useSDC;
414  Bool      m_useDLT;
415#endif
416#if H_3D_IV_MERGE
417  Bool      m_useMPI;
418#endif
419#if H_3D_QTLPC
420  Bool      m_bUseQTL;
421  Bool      m_bUsePC;
422#endif
423#endif
424public:
425  TEncCfg()
426  : m_puiColumnWidth()
427  , m_puiRowHeight()
428#if H_MV
429  , m_layerId(-1)
430  , m_layerIdInVps(-1)
431  , m_viewId(-1)
432  , m_viewIndex(-1)
433#if H_3D
434  , m_isDepth(false)
435  , m_bUseVSO(false)
436#endif
437#endif
438  {}
439
440  virtual ~TEncCfg()
441  {
442    delete[] m_puiColumnWidth;
443    delete[] m_puiRowHeight;
444  }
445 
446  Void setProfile(Profile::Name profile) { m_profile = profile; }
447  Void setLevel(Level::Tier tier, Level::Name level) { m_levelTier = tier; m_level = level; }
448
449  Void      setFrameRate                    ( Int   i )      { m_iFrameRate = i; }
450  Void      setFrameSkip                    ( UInt i ) { m_FrameSkip = i; }
451  Void      setSourceWidth                  ( Int   i )      { m_iSourceWidth = i; }
452  Void      setSourceHeight                 ( Int   i )      { m_iSourceHeight = i; }
453
454  Window   &getConformanceWindow()                           { return m_conformanceWindow; }
455  Void      setConformanceWindow (Int confLeft, Int confRight, Int confTop, Int confBottom ) { m_conformanceWindow.setWindow (confLeft, confRight, confTop, confBottom); }
456
457  Void      setFramesToBeEncoded            ( Int   i )      { m_framesToBeEncoded = i; }
458 
459#if H_MV
460  Void      setLayerId                       ( Int layerId )      { m_layerId = layerId; }
461  Int       getLayerId                       ()                   { return m_layerId;    }
462  Int       getLayerIdInVps                  ()                   { return m_layerIdInVps; }
463  Void      setLayerIdInVps                  ( Int layerIdInVps)  { m_layerIdInVps = layerIdInVps; }
464  Void      setViewId                        ( Int viewId  )      { m_viewId  = viewId;  }
465  Int       getViewId                        ()                   { return m_viewId;    }
466  Void      setViewIndex                     ( Int viewIndex  )   { m_viewIndex  = viewIndex;  }
467  Int       getViewIndex                     ()                   { return m_viewIndex;    }
468#if H_3D
469  Void      setIsDepth                       ( Bool isDepth )   { m_isDepth = isDepth; }
470  Bool      getIsDepth                       ()                 { return m_isDepth; }
471#endif
472#endif
473  //====== Coding Structure ========
474  Void      setIntraPeriod                  ( Int   i )      { m_uiIntraPeriod = (UInt)i; }
475  Void      setDecodingRefreshType          ( Int   i )      { m_uiDecodingRefreshType = (UInt)i; }
476  Void      setGOPSize                      ( Int   i )      { m_iGOPSize = i; }
477#if H_MV
478  Void      setGopList                      ( GOPEntry*  GOPList ) {  for ( Int i = 0; i < MAX_GOP+1; i++ ) m_GOPList[i] = GOPList[i]; }
479#else
480  Void      setGopList                      ( GOPEntry*  GOPList ) {  for ( Int i = 0; i < MAX_GOP; i++ ) m_GOPList[i] = GOPList[i]; }
481#endif
482  Void      setExtraRPSs                    ( Int   i )      { m_extraRPSs = i; }
483  GOPEntry  getGOPEntry                     ( Int   i )      { return m_GOPList[i]; }
484  Void      setMaxDecPicBuffering           ( UInt u, UInt tlayer ) { m_maxDecPicBuffering[tlayer] = u;    }
485  Void      setNumReorderPics               ( Int  i, UInt tlayer ) { m_numReorderPics[tlayer] = i;    }
486 
487  Void      setQP                           ( Int   i )      { m_iQP = i; }
488 
489  Void      setPad                          ( Int*  iPad                   )      { for ( Int i = 0; i < 2; i++ ) m_aiPad[i] = iPad[i]; }
490 
491  Int       getMaxRefPicNum                 ()                              { return m_iMaxRefPicNum;           }
492  Void      setMaxRefPicNum                 ( Int iMaxRefPicNum )           { m_iMaxRefPicNum = iMaxRefPicNum;  }
493
494  Bool      getMaxTempLayer                 ()                              { return m_maxTempLayer;              } 
495  Void      setMaxTempLayer                 ( Int maxTempLayer )            { m_maxTempLayer = maxTempLayer;      }
496
497#if H_3D_ARP
498  UInt       getUseAdvRP                    ( )              { return m_uiUseAdvResPred; }
499  Void       setUseAdvRP                    ( UInt  u )      { m_uiUseAdvResPred = u;    }
500
501  UInt       getARPStepNum                  ()               { return m_uiARPStepNum;    }
502  Void       setARPStepNum                  ( UInt  u )      { m_uiARPStepNum = u;       }
503#endif
504#if H_3D_SPIVMP
505  Int        getSubPULog2Size                   ()                   { return m_iSubPULog2Size;}
506  Void       setSubPULog2Size                   (Int u)              { m_iSubPULog2Size = u; }     
507  Int        getSubPUMPILog2Size            ()               { return m_iSubPUMPILog2Size;}
508  Void       setSubPUMPILog2Size            (Int u)          { m_iSubPUMPILog2Size = u;   }     
509#endif
510#if H_3D_IC
511  Void       setUseIC                       ( Bool bVal )    { m_bUseIC = bVal; }
512  Bool       getUseIC                       ()               { return m_bUseIC; }
513#endif
514#if H_3D_INTER_SDC
515  Void       setInterSDCEnable              ( Bool bVal )    { m_bInterSDC = bVal; }
516  Bool       getInterSDCEnable              ()               { return m_bInterSDC; }
517#endif
518#if H_3D_DBBP
519  Void       setUseDBBP                     ( Bool  b )      { m_bUseDBBP   = b; }
520  Bool       getUseDBBP()                                    { return m_bUseDBBP;     }
521#endif
522  //======== Transform =============
523  Void      setQuadtreeTULog2MaxSize        ( UInt  u )      { m_uiQuadtreeTULog2MaxSize = u; }
524  Void      setQuadtreeTULog2MinSize        ( UInt  u )      { m_uiQuadtreeTULog2MinSize = u; }
525  Void      setQuadtreeTUMaxDepthInter      ( UInt  u )      { m_uiQuadtreeTUMaxDepthInter = u; }
526  Void      setQuadtreeTUMaxDepthIntra      ( UInt  u )      { m_uiQuadtreeTUMaxDepthIntra = u; }
527 
528  Void setUseAMP( Bool b ) { m_useAMP = b; }
529 
530  //====== Loop/Deblock Filter ========
531  Void      setLoopFilterDisable            ( Bool  b )      { m_bLoopFilterDisable       = b; }
532  Void      setLoopFilterOffsetInPPS        ( Bool  b )      { m_loopFilterOffsetInPPS      = b; }
533  Void      setLoopFilterBetaOffset         ( Int   i )      { m_loopFilterBetaOffsetDiv2  = i; }
534  Void      setLoopFilterTcOffset           ( Int   i )      { m_loopFilterTcOffsetDiv2    = i; }
535  Void      setDeblockingFilterControlPresent ( Bool b ) { m_DeblockingFilterControlPresent = b; }
536  Void      setDeblockingFilterMetric       ( Bool  b )      { m_DeblockingFilterMetric = b; }
537
538  //====== Motion search ========
539  Void      setFastSearch                   ( Int   i )      { m_iFastSearch = i; }
540  Void      setSearchRange                  ( Int   i )      { m_iSearchRange = i; }
541  Void      setBipredSearchRange            ( Int   i )      { m_bipredSearchRange = i; }
542
543  //====== Quality control ========
544  Void      setMaxDeltaQP                   ( Int   i )      { m_iMaxDeltaQP = i; }
545  Void      setMaxCuDQPDepth                ( Int   i )      { m_iMaxCuDQPDepth = i; }
546
547  Void      setChromaCbQpOffset             ( Int   i )      { m_chromaCbQpOffset = i; }
548  Void      setChromaCrQpOffset             ( Int   i )      { m_chromaCrQpOffset = i; }
549
550#if ADAPTIVE_QP_SELECTION
551  Void      setUseAdaptQpSelect             ( Bool   i ) { m_bUseAdaptQpSelect    = i; }
552  Bool      getUseAdaptQpSelect             ()           { return   m_bUseAdaptQpSelect; }
553#endif
554
555  Void      setUseAdaptiveQP                ( Bool  b )      { m_bUseAdaptiveQP = b; }
556  Void      setQPAdaptationRange            ( Int   i )      { m_iQPAdaptationRange = i; }
557 
558  //====== Sequence ========
559  Int       getFrameRate                    ()      { return  m_iFrameRate; }
560  UInt      getFrameSkip                    ()      { return  m_FrameSkip; }
561  Int       getSourceWidth                  ()      { return  m_iSourceWidth; }
562  Int       getSourceHeight                 ()      { return  m_iSourceHeight; }
563  Int       getFramesToBeEncoded            ()      { return  m_framesToBeEncoded; }
564  void setLambdaModifier                    ( UInt uiIndex, Double dValue ) { m_adLambdaModifier[ uiIndex ] = dValue; }
565  Double getLambdaModifier                  ( UInt uiIndex ) const { return m_adLambdaModifier[ uiIndex ]; }
566
567  //==== Coding Structure ========
568  UInt      getIntraPeriod                  ()      { return  m_uiIntraPeriod; }
569  UInt      getDecodingRefreshType          ()      { return  m_uiDecodingRefreshType; }
570  Int       getGOPSize                      ()      { return  m_iGOPSize; }
571  Int       getMaxDecPicBuffering           (UInt tlayer) { return m_maxDecPicBuffering[tlayer]; }
572  Int       getNumReorderPics               (UInt tlayer) { return m_numReorderPics[tlayer]; }
573  Int       getQP                           ()      { return  m_iQP; }
574 
575  Int       getPad                          ( Int i )      { assert (i < 2 );                      return  m_aiPad[i]; }
576 
577  //======== Transform =============
578  UInt      getQuadtreeTULog2MaxSize        ()      const { return m_uiQuadtreeTULog2MaxSize; }
579  UInt      getQuadtreeTULog2MinSize        ()      const { return m_uiQuadtreeTULog2MinSize; }
580  UInt      getQuadtreeTUMaxDepthInter      ()      const { return m_uiQuadtreeTUMaxDepthInter; }
581  UInt      getQuadtreeTUMaxDepthIntra      ()      const { return m_uiQuadtreeTUMaxDepthIntra; }
582 
583  //==== Loop/Deblock Filter ========
584  Bool      getLoopFilterDisable            ()      { return  m_bLoopFilterDisable;       }
585  Bool      getLoopFilterOffsetInPPS        ()      { return m_loopFilterOffsetInPPS; }
586  Int       getLoopFilterBetaOffset         ()      { return m_loopFilterBetaOffsetDiv2; }
587  Int       getLoopFilterTcOffset           ()      { return m_loopFilterTcOffsetDiv2; }
588  Bool      getDeblockingFilterControlPresent()  { return  m_DeblockingFilterControlPresent; }
589  Bool      getDeblockingFilterMetric       ()      { return m_DeblockingFilterMetric; }
590
591  //==== Motion search ========
592  Int       getFastSearch                   ()      { return  m_iFastSearch; }
593  Int       getSearchRange                  ()      { return  m_iSearchRange; }
594
595  //==== Quality control ========
596  Int       getMaxDeltaQP                   ()      { return  m_iMaxDeltaQP; }
597  Int       getMaxCuDQPDepth                ()      { return  m_iMaxCuDQPDepth; }
598  Bool      getUseAdaptiveQP                ()      { return  m_bUseAdaptiveQP; }
599  Int       getQPAdaptationRange            ()      { return  m_iQPAdaptationRange; }
600 
601  //==== Tool list ========
602  Void      setUseASR                       ( Bool  b )     { m_bUseASR     = b; }
603  Void      setUseHADME                     ( Bool  b )     { m_bUseHADME   = b; }
604  Void      setUseRDOQ                      ( Bool  b )     { m_useRDOQ    = b; }
605  Void      setUseRDOQTS                    ( Bool  b )     { m_useRDOQTS  = b; }
606  Void      setRDpenalty                 ( UInt  b )     { m_rdPenalty  = b; }
607  Void      setUseFastEnc                   ( Bool  b )     { m_bUseFastEnc = b; }
608  Void      setUseEarlyCU                   ( Bool  b )     { m_bUseEarlyCU = b; }
609  Void      setUseFastDecisionForMerge      ( Bool  b )     { m_useFastDecisionForMerge = b; }
610  Void      setUseCbfFastMode            ( Bool  b )     { m_bUseCbfFastMode = b; }
611  Void      setUseEarlySkipDetection        ( Bool  b )     { m_useEarlySkipDetection = b; }
612  Void      setUseConstrainedIntraPred      ( Bool  b )     { m_bUseConstrainedIntraPred = b; }
613  Void      setPCMInputBitDepthFlag         ( Bool  b )     { m_bPCMInputBitDepthFlag = b; }
614  Void      setPCMFilterDisableFlag         ( Bool  b )     {  m_bPCMFilterDisableFlag = b; }
615  Void      setUsePCM                       ( Bool  b )     {  m_usePCM = b;               }
616  Void      setPCMLog2MaxSize               ( UInt u )      { m_pcmLog2MaxSize = u;      }
617  Void      setPCMLog2MinSize               ( UInt u )     { m_uiPCMLog2MinSize = u;      }
618  Void      setdQPs                         ( Int*  p )     { m_aidQP       = p; }
619  Void      setDeltaQpRD                    ( UInt  u )     {m_uiDeltaQpRD  = u; }
620  Bool      getUseASR                       ()      { return m_bUseASR;     }
621  Bool      getUseHADME                     ()      { return m_bUseHADME;   }
622  Bool      getUseRDOQ                      ()      { return m_useRDOQ;    }
623  Bool      getUseRDOQTS                    ()      { return m_useRDOQTS;  }
624  Int      getRDpenalty                  ()      { return m_rdPenalty;  }
625  Bool      getUseFastEnc                   ()      { return m_bUseFastEnc; }
626  Bool      getUseEarlyCU                   ()      { return m_bUseEarlyCU; }
627  Bool      getUseFastDecisionForMerge      ()      { return m_useFastDecisionForMerge; }
628  Bool      getUseCbfFastMode           ()      { return m_bUseCbfFastMode; }
629  Bool      getUseEarlySkipDetection        ()      { return m_useEarlySkipDetection; }
630  Bool      getUseConstrainedIntraPred      ()      { return m_bUseConstrainedIntraPred; }
631  Bool      getPCMInputBitDepthFlag         ()      { return m_bPCMInputBitDepthFlag;   }
632  Bool      getPCMFilterDisableFlag         ()      { return m_bPCMFilterDisableFlag;   } 
633  Bool      getUsePCM                       ()      { return m_usePCM;                 }
634  UInt      getPCMLog2MaxSize               ()      { return m_pcmLog2MaxSize;  }
635  UInt      getPCMLog2MinSize               ()      { return  m_uiPCMLog2MinSize;  }
636
637  Bool getUseTransformSkip                             ()      { return m_useTransformSkip;        }
638  Void setUseTransformSkip                             ( Bool b ) { m_useTransformSkip  = b;       }
639  Bool getUseTransformSkipFast                         ()      { return m_useTransformSkipFast;    }
640  Void setUseTransformSkipFast                         ( Bool b ) { m_useTransformSkipFast  = b;   }
641  Int*      getdQPs                         ()      { return m_aidQP;       }
642  UInt      getDeltaQpRD                    ()      { return m_uiDeltaQpRD; }
643
644  //====== Slice ========
645  Void  setSliceMode                   ( Int  i )       { m_sliceMode = i;              }
646  Void  setSliceArgument               ( Int  i )       { m_sliceArgument = i;          }
647  Int   getSliceMode                   ()              { return m_sliceMode;           }
648  Int   getSliceArgument               ()              { return m_sliceArgument;       }
649  //====== Dependent Slice ========
650  Void  setSliceSegmentMode            ( Int  i )      { m_sliceSegmentMode = i;       }
651  Void  setSliceSegmentArgument        ( Int  i )      { m_sliceSegmentArgument = i;   }
652  Int   getSliceSegmentMode            ()              { return m_sliceSegmentMode;    }
653  Int   getSliceSegmentArgument        ()              { return m_sliceSegmentArgument;}
654  Void      setLFCrossSliceBoundaryFlag     ( Bool   bValue  )    { m_bLFCrossSliceBoundaryFlag = bValue; }
655  Bool      getLFCrossSliceBoundaryFlag     ()                    { return m_bLFCrossSliceBoundaryFlag;   }
656
657  Void      setUseSAO                  (Bool bVal)     {m_bUseSAO = bVal;}
658  Bool      getUseSAO                  ()              {return m_bUseSAO;}
659  Void  setMaxNumOffsetsPerPic                   (Int iVal)            { m_maxNumOffsetsPerPic = iVal; }
660  Int   getMaxNumOffsetsPerPic                   ()                    { return m_maxNumOffsetsPerPic; }
661  Void  setSaoLcuBoundary              (Bool val)      { m_saoLcuBoundary = val; }
662  Bool  getSaoLcuBoundary              ()              { return m_saoLcuBoundary; }
663  Void  setLFCrossTileBoundaryFlag               ( Bool   val  )       { m_loopFilterAcrossTilesEnabledFlag = val; }
664  Bool  getLFCrossTileBoundaryFlag               ()                    { return m_loopFilterAcrossTilesEnabledFlag;   }
665  Void  setUniformSpacingIdr           ( Int i )           { m_iUniformSpacingIdr = i; }
666  Int   getUniformSpacingIdr           ()                  { return m_iUniformSpacingIdr; }
667  Void  setNumColumnsMinus1            ( Int i )           { m_iNumColumnsMinus1 = i; }
668  Int   getNumColumnsMinus1            ()                  { return m_iNumColumnsMinus1; }
669  Void  setColumnWidth ( UInt* columnWidth )
670  {
671    if( m_iUniformSpacingIdr == 0 && m_iNumColumnsMinus1 > 0 )
672    {
673      Int  m_iWidthInCU = ( m_iSourceWidth%g_uiMaxCUWidth ) ? m_iSourceWidth/g_uiMaxCUWidth + 1 : m_iSourceWidth/g_uiMaxCUWidth;
674      m_puiColumnWidth = new UInt[ m_iNumColumnsMinus1 ];
675
676      for(Int i=0; i<m_iNumColumnsMinus1; i++)
677      {
678        m_puiColumnWidth[i] = columnWidth[i];
679        printf("col: m_iWidthInCU= %4d i=%4d width= %4d\n",m_iWidthInCU,i,m_puiColumnWidth[i]); //AFU
680      }
681    }
682  }
683  UInt  getColumnWidth                 ( UInt columnidx )  { return *( m_puiColumnWidth + columnidx ); }
684  Void  setNumRowsMinus1               ( Int i )           { m_iNumRowsMinus1 = i; }
685  Int   getNumRowsMinus1               ()                  { return m_iNumRowsMinus1; }
686  Void  setRowHeight (UInt* rowHeight)
687  {
688    if( m_iUniformSpacingIdr == 0 && m_iNumRowsMinus1 > 0 )
689    {
690      Int  m_iHeightInCU = ( m_iSourceHeight%g_uiMaxCUHeight ) ? m_iSourceHeight/g_uiMaxCUHeight + 1 : m_iSourceHeight/g_uiMaxCUHeight;
691      m_puiRowHeight = new UInt[ m_iNumRowsMinus1 ];
692
693      for(Int i=0; i<m_iNumRowsMinus1; i++)
694      {
695        m_puiRowHeight[i] = rowHeight[i];
696        printf("row: m_iHeightInCU=%4d i=%4d height=%4d\n",m_iHeightInCU,i,m_puiRowHeight[i]); //AFU
697      }
698    }
699  }
700  UInt  getRowHeight                   ( UInt rowIdx )     { return *( m_puiRowHeight + rowIdx ); }
701  Void  xCheckGSParameters();
702  Void  setWaveFrontSynchro(Int iWaveFrontSynchro)       { m_iWaveFrontSynchro = iWaveFrontSynchro; }
703  Int   getWaveFrontsynchro()                            { return m_iWaveFrontSynchro; }
704  Void  setWaveFrontSubstreams(Int iWaveFrontSubstreams) { m_iWaveFrontSubstreams = iWaveFrontSubstreams; }
705  Int   getWaveFrontSubstreams()                         { return m_iWaveFrontSubstreams; }
706  Void  setDecodedPictureHashSEIEnabled(Int b)           { m_decodedPictureHashSEIEnabled = b; }
707  Int   getDecodedPictureHashSEIEnabled()                { return m_decodedPictureHashSEIEnabled; }
708  Void  setBufferingPeriodSEIEnabled(Int b)              { m_bufferingPeriodSEIEnabled = b; }
709  Int   getBufferingPeriodSEIEnabled()                   { return m_bufferingPeriodSEIEnabled; }
710  Void  setPictureTimingSEIEnabled(Int b)                { m_pictureTimingSEIEnabled = b; }
711  Int   getPictureTimingSEIEnabled()                     { return m_pictureTimingSEIEnabled; }
712  Void  setRecoveryPointSEIEnabled(Int b)                { m_recoveryPointSEIEnabled = b; }
713  Int   getRecoveryPointSEIEnabled()                     { return m_recoveryPointSEIEnabled; }
714  Void  setToneMappingInfoSEIEnabled(Bool b)                 {  m_toneMappingInfoSEIEnabled = b;  }
715  Bool  getToneMappingInfoSEIEnabled()                       {  return m_toneMappingInfoSEIEnabled;  }
716  Void  setTMISEIToneMapId(Int b)                            {  m_toneMapId = b;  }
717  Int   getTMISEIToneMapId()                                 {  return m_toneMapId;  }
718  Void  setTMISEIToneMapCancelFlag(Bool b)                   {  m_toneMapCancelFlag=b;  }
719  Bool  getTMISEIToneMapCancelFlag()                         {  return m_toneMapCancelFlag;  }
720  Void  setTMISEIToneMapPersistenceFlag(Bool b)              {  m_toneMapPersistenceFlag = b;  }
721  Bool   getTMISEIToneMapPersistenceFlag()                   {  return m_toneMapPersistenceFlag;  }
722  Void  setTMISEICodedDataBitDepth(Int b)                    {  m_codedDataBitDepth = b;  }
723  Int   getTMISEICodedDataBitDepth()                         {  return m_codedDataBitDepth;  }
724  Void  setTMISEITargetBitDepth(Int b)                       {  m_targetBitDepth = b;  }
725  Int   getTMISEITargetBitDepth()                            {  return m_targetBitDepth;  }
726  Void  setTMISEIModelID(Int b)                              {  m_modelId = b;  }
727  Int   getTMISEIModelID()                                   {  return m_modelId;  }
728  Void  setTMISEIMinValue(Int b)                             {  m_minValue = b;  }
729  Int   getTMISEIMinValue()                                  {  return m_minValue;  }
730  Void  setTMISEIMaxValue(Int b)                             {  m_maxValue = b;  }
731  Int   getTMISEIMaxValue()                                  {  return m_maxValue;  }
732  Void  setTMISEISigmoidMidpoint(Int b)                      {  m_sigmoidMidpoint = b;  }
733  Int   getTMISEISigmoidMidpoint()                           {  return m_sigmoidMidpoint;  }
734  Void  setTMISEISigmoidWidth(Int b)                         {  m_sigmoidWidth = b;  }
735  Int   getTMISEISigmoidWidth()                              {  return m_sigmoidWidth;  }
736  Void  setTMISEIStartOfCodedInterva( Int*  p )              {  m_startOfCodedInterval = p;  }
737  Int*  getTMISEIStartOfCodedInterva()                       {  return m_startOfCodedInterval;  }
738  Void  setTMISEINumPivots(Int b)                            {  m_numPivots = b;  }
739  Int   getTMISEINumPivots()                                 {  return m_numPivots;  }
740  Void  setTMISEICodedPivotValue( Int*  p )                  {  m_codedPivotValue = p;  }
741  Int*  getTMISEICodedPivotValue()                           {  return m_codedPivotValue;  }
742  Void  setTMISEITargetPivotValue( Int*  p )                 {  m_targetPivotValue = p;  }
743  Int*  getTMISEITargetPivotValue()                          {  return m_targetPivotValue;  }
744  Void  setTMISEICameraIsoSpeedIdc(Int b)                    {  m_cameraIsoSpeedIdc = b;  }
745  Int   getTMISEICameraIsoSpeedIdc()                         {  return m_cameraIsoSpeedIdc;  }
746  Void  setTMISEICameraIsoSpeedValue(Int b)                  {  m_cameraIsoSpeedValue = b;  }
747  Int   getTMISEICameraIsoSpeedValue()                       {  return m_cameraIsoSpeedValue;  }
748  Void  setTMISEIExposureCompensationValueSignFlag(Int b)    {  m_exposureCompensationValueSignFlag = b;  }
749  Int   getTMISEIExposureCompensationValueSignFlag()         {  return m_exposureCompensationValueSignFlag;  }
750  Void  setTMISEIExposureCompensationValueNumerator(Int b)   {  m_exposureCompensationValueNumerator = b;  }
751  Int   getTMISEIExposureCompensationValueNumerator()        {  return m_exposureCompensationValueNumerator;  }
752  Void  setTMISEIExposureCompensationValueDenomIdc(Int b)    {  m_exposureCompensationValueDenomIdc =b;  }
753  Int   getTMISEIExposureCompensationValueDenomIdc()         {  return m_exposureCompensationValueDenomIdc;  }
754  Void  setTMISEIRefScreenLuminanceWhite(Int b)              {  m_refScreenLuminanceWhite = b;  }
755  Int   getTMISEIRefScreenLuminanceWhite()                   {  return m_refScreenLuminanceWhite;  }
756  Void  setTMISEIExtendedRangeWhiteLevel(Int b)              {  m_extendedRangeWhiteLevel = b;  }
757  Int   getTMISEIExtendedRangeWhiteLevel()                   {  return m_extendedRangeWhiteLevel;  }
758  Void  setTMISEINominalBlackLevelLumaCodeValue(Int b)       {  m_nominalBlackLevelLumaCodeValue = b;  }
759  Int   getTMISEINominalBlackLevelLumaCodeValue()            {  return m_nominalBlackLevelLumaCodeValue;  }
760  Void  setTMISEINominalWhiteLevelLumaCodeValue(Int b)       {  m_nominalWhiteLevelLumaCodeValue = b;  }
761  Int   getTMISEINominalWhiteLevelLumaCodeValue()            {  return m_nominalWhiteLevelLumaCodeValue;  }
762  Void  setTMISEIExtendedWhiteLevelLumaCodeValue(Int b)      {  m_extendedWhiteLevelLumaCodeValue =b;  }
763  Int   getTMISEIExtendedWhiteLevelLumaCodeValue()           {  return m_extendedWhiteLevelLumaCodeValue;  }
764  Void  setFramePackingArrangementSEIEnabled(Int b)      { m_framePackingSEIEnabled = b; }
765  Int   getFramePackingArrangementSEIEnabled()           { return m_framePackingSEIEnabled; }
766  Void  setFramePackingArrangementSEIType(Int b)         { m_framePackingSEIType = b; }
767  Int   getFramePackingArrangementSEIType()              { return m_framePackingSEIType; }
768  Void  setFramePackingArrangementSEIId(Int b)           { m_framePackingSEIId = b; }
769  Int   getFramePackingArrangementSEIId()                { return m_framePackingSEIId; }
770  Void  setFramePackingArrangementSEIQuincunx(Int b)     { m_framePackingSEIQuincunx = b; }
771  Int   getFramePackingArrangementSEIQuincunx()          { return m_framePackingSEIQuincunx; }
772  Void  setFramePackingArrangementSEIInterpretation(Int b)  { m_framePackingSEIInterpretation = b; }
773  Int   getFramePackingArrangementSEIInterpretation()    { return m_framePackingSEIInterpretation; }
774  Void  setDisplayOrientationSEIAngle(Int b)             { m_displayOrientationSEIAngle = b; }
775  Int   getDisplayOrientationSEIAngle()                  { return m_displayOrientationSEIAngle; }
776  Void  setTemporalLevel0IndexSEIEnabled(Int b)          { m_temporalLevel0IndexSEIEnabled = b; }
777  Int   getTemporalLevel0IndexSEIEnabled()               { return m_temporalLevel0IndexSEIEnabled; }
778  Void  setGradualDecodingRefreshInfoEnabled(Int b)      { m_gradualDecodingRefreshInfoEnabled = b;    }
779  Int   getGradualDecodingRefreshInfoEnabled()           { return m_gradualDecodingRefreshInfoEnabled; }
780  Void  setDecodingUnitInfoSEIEnabled(Int b)                { m_decodingUnitInfoSEIEnabled = b;    }
781  Int   getDecodingUnitInfoSEIEnabled()                     { return m_decodingUnitInfoSEIEnabled; }
782  Void  setSOPDescriptionSEIEnabled(Int b)                { m_SOPDescriptionSEIEnabled = b; }
783  Int   getSOPDescriptionSEIEnabled()                     { return m_SOPDescriptionSEIEnabled; }
784  Void  setScalableNestingSEIEnabled(Int b)                { m_scalableNestingSEIEnabled = b; }
785  Int   getScalableNestingSEIEnabled()                     { return m_scalableNestingSEIEnabled; }
786
787#if H_MV_HLS_7_SEI_P0204_26
788  Bool   getSubBitstreamPropSEIEnabled()        { return m_subBistreamPropSEIEnabled;}
789  Void   setSubBitstreamPropSEIEnabled(Bool x)  { m_subBistreamPropSEIEnabled = x;}
790
791  Int    getNumAdditionalSubStreams()           { return m_numAdditionalSubStreams;}
792  Void   setNumAdditionalSubStreams(Int x)      { m_numAdditionalSubStreams = x;}
793
794  std::vector<Int> const &getSubBitstreamMode()  { return m_subBitstreamMode;}
795  Int   getSubBitstreamMode(Int idx)  { return m_subBitstreamMode[idx];}
796  Void  setSubBitstreamMode(std::vector<Int> &x)  { m_subBitstreamMode = x;}
797
798  std::vector<Int> const &getOutputLayerSetIdxToVps()  { return m_outputLayerSetIdxToVps;}
799  Int   getOutputLayerSetIdxToVps(Int idx)  { return m_outputLayerSetIdxToVps[idx];}
800  Void  setOutputLayerSetIdxToVps(std::vector<Int> &x)  { m_outputLayerSetIdxToVps = x;}
801
802  std::vector<Int> const &getHighestSublayerId()  { return m_highestSublayerId;}
803  Int   getHighestSublayerId(Int idx)  { return m_highestSublayerId[idx];}
804  Void  setHighestSublayerId(std::vector<Int> &x)  { m_highestSublayerId = x;}
805
806  std::vector<Int> const &getAvgBitRate()  { return m_avgBitRate;}
807  Int   getAvgBitRate(Int idx)  { return m_avgBitRate[idx];}
808  Void  setAvgBitRate(std::vector<Int> &x)  { m_avgBitRate = x;}
809
810  std::vector<Int> const &getMaxBitRate()  { return m_maxBitRate;}
811  Int   getMaxBitRate(Int idx)  { return m_maxBitRate[idx];}
812  Void  setMaxBitRate(std::vector<Int> &x)  { m_maxBitRate = x;}
813
814#endif
815  Void      setUseWP               ( Bool b )    { m_useWeightedPred   = b;    }
816  Void      setWPBiPred            ( Bool b )    { m_useWeightedBiPred = b;    }
817  Bool      getUseWP               ()            { return m_useWeightedPred;   }
818  Bool      getWPBiPred            ()            { return m_useWeightedBiPred; }
819  Void      setLog2ParallelMergeLevelMinus2   ( UInt u )    { m_log2ParallelMergeLevelMinus2       = u;    }
820  UInt      getLog2ParallelMergeLevelMinus2   ()            { return m_log2ParallelMergeLevelMinus2;       }
821  Void      setMaxNumMergeCand                ( UInt u )    { m_maxNumMergeCand = u;      }
822  UInt      getMaxNumMergeCand                ()            { return m_maxNumMergeCand;   }
823  Void      setUseScalingListId    ( Int  u )    { m_useScalingListId       = u;   }
824  Int       getUseScalingListId    ()            { return m_useScalingListId;      }
825  Void      setScalingListFile     ( Char*  pch ){ m_scalingListFile     = pch; }
826  Char*     getScalingListFile     ()            { return m_scalingListFile;    }
827  Void      setTMVPModeId ( Int  u ) { m_TMVPModeId = u;    }
828  Int       getTMVPModeId ()         { return m_TMVPModeId; }
829  Void      setSignHideFlag( Int signHideFlag ) { m_signHideFlag = signHideFlag; }
830  Int       getSignHideFlag()                    { return m_signHideFlag; }
831  Bool      getUseRateCtrl         ()              { return m_RCEnableRateControl;   }
832  Void      setUseRateCtrl         ( Bool b )      { m_RCEnableRateControl = b;      }
833  Int       getTargetBitrate       ()              { return m_RCTargetBitrate;       }
834  Void      setTargetBitrate       ( Int bitrate ) { m_RCTargetBitrate  = bitrate;   }
835  Int       getKeepHierBit         ()              { return m_RCKeepHierarchicalBit; }
836  Void      setKeepHierBit         ( Int i )       { m_RCKeepHierarchicalBit = i;    }
837  Bool      getLCULevelRC          ()              { return m_RCLCULevelRC; }
838  Void      setLCULevelRC          ( Bool b )      { m_RCLCULevelRC = b; }
839  Bool      getUseLCUSeparateModel ()              { return m_RCUseLCUSeparateModel; }
840  Void      setUseLCUSeparateModel ( Bool b )      { m_RCUseLCUSeparateModel = b;    }
841  Int       getInitialQP           ()              { return m_RCInitialQP;           }
842  Void      setInitialQP           ( Int QP )      { m_RCInitialQP = QP;             }
843  Bool      getForceIntraQP        ()              { return m_RCForceIntraQP;        }
844  Void      setForceIntraQP        ( Bool b )      { m_RCForceIntraQP = b;           }
845
846#if KWU_RC_MADPRED_E0227
847  UInt      getUseDepthMADPred    ()                { return m_depthMADPred;        }
848  Void      setUseDepthMADPred    (UInt b)          { m_depthMADPred    = b;        }
849#endif
850#if KWU_RC_VIEWRC_E0227
851  Bool      getUseViewWiseRateCtrl    ()                { return m_bViewWiseRateCtrl;        }
852  Void      setUseViewWiseRateCtrl    (Bool b)          { m_bViewWiseRateCtrl    = b;        }
853#endif
854  Bool      getTransquantBypassEnableFlag()           { return m_TransquantBypassEnableFlag; }
855  Void      setTransquantBypassEnableFlag(Bool flag)  { m_TransquantBypassEnableFlag = flag; }
856  Bool      getCUTransquantBypassFlagForceValue()          { return m_CUTransquantBypassFlagForce; }
857  Void      setCUTransquantBypassFlagForceValue(Bool flag) { m_CUTransquantBypassFlagForce = flag; }
858#if H_MV
859  Void      setVPS           ( TComVPS *p ) { m_cVPS = p;    }
860  TComVPS*  getVPS           ()             { return m_cVPS; }
861#else
862  Void setVPS(TComVPS *p) { m_cVPS = *p; }
863  TComVPS *getVPS() { return &m_cVPS; }
864#endif
865
866#if H_3D
867  Void      setDLT           ( TComDLT *p ) { m_cDLT = p; }
868  TComDLT*  getDLT           ()             { return m_cDLT; }
869#endif
870
871  Void      setUseRecalculateQPAccordingToLambda ( Bool b ) { m_recalculateQPAccordingToLambda = b;    }
872  Bool      getUseRecalculateQPAccordingToLambda ()         { return m_recalculateQPAccordingToLambda; }
873
874  Void      setUseStrongIntraSmoothing ( Bool b ) { m_useStrongIntraSmoothing = b;    }
875  Bool      getUseStrongIntraSmoothing ()         { return m_useStrongIntraSmoothing; }
876
877  Void      setActiveParameterSetsSEIEnabled ( Int b )  { m_activeParameterSetsSEIEnabled = b; } 
878  Int       getActiveParameterSetsSEIEnabled ()         { return m_activeParameterSetsSEIEnabled; }
879  Bool      getVuiParametersPresentFlag()                 { return m_vuiParametersPresentFlag; }
880  Void      setVuiParametersPresentFlag(Bool i)           { m_vuiParametersPresentFlag = i; }
881  Bool      getAspectRatioInfoPresentFlag()               { return m_aspectRatioInfoPresentFlag; }
882  Void      setAspectRatioInfoPresentFlag(Bool i)         { m_aspectRatioInfoPresentFlag = i; }
883  Int       getAspectRatioIdc()                           { return m_aspectRatioIdc; }
884  Void      setAspectRatioIdc(Int i)                      { m_aspectRatioIdc = i; }
885  Int       getSarWidth()                                 { return m_sarWidth; }
886  Void      setSarWidth(Int i)                            { m_sarWidth = i; }
887  Int       getSarHeight()                                { return m_sarHeight; }
888  Void      setSarHeight(Int i)                           { m_sarHeight = i; }
889  Bool      getOverscanInfoPresentFlag()                  { return m_overscanInfoPresentFlag; }
890  Void      setOverscanInfoPresentFlag(Bool i)            { m_overscanInfoPresentFlag = i; }
891  Bool      getOverscanAppropriateFlag()                  { return m_overscanAppropriateFlag; }
892  Void      setOverscanAppropriateFlag(Bool i)            { m_overscanAppropriateFlag = i; }
893  Bool      getVideoSignalTypePresentFlag()               { return m_videoSignalTypePresentFlag; }
894  Void      setVideoSignalTypePresentFlag(Bool i)         { m_videoSignalTypePresentFlag = i; }
895  Int       getVideoFormat()                              { return m_videoFormat; }
896  Void      setVideoFormat(Int i)                         { m_videoFormat = i; }
897  Bool      getVideoFullRangeFlag()                       { return m_videoFullRangeFlag; }
898  Void      setVideoFullRangeFlag(Bool i)                 { m_videoFullRangeFlag = i; }
899  Bool      getColourDescriptionPresentFlag()             { return m_colourDescriptionPresentFlag; }
900  Void      setColourDescriptionPresentFlag(Bool i)       { m_colourDescriptionPresentFlag = i; }
901  Int       getColourPrimaries()                          { return m_colourPrimaries; }
902  Void      setColourPrimaries(Int i)                     { m_colourPrimaries = i; }
903  Int       getTransferCharacteristics()                  { return m_transferCharacteristics; }
904  Void      setTransferCharacteristics(Int i)             { m_transferCharacteristics = i; }
905  Int       getMatrixCoefficients()                       { return m_matrixCoefficients; }
906  Void      setMatrixCoefficients(Int i)                  { m_matrixCoefficients = i; }
907  Bool      getChromaLocInfoPresentFlag()                 { return m_chromaLocInfoPresentFlag; }
908  Void      setChromaLocInfoPresentFlag(Bool i)           { m_chromaLocInfoPresentFlag = i; }
909  Int       getChromaSampleLocTypeTopField()              { return m_chromaSampleLocTypeTopField; }
910  Void      setChromaSampleLocTypeTopField(Int i)         { m_chromaSampleLocTypeTopField = i; }
911  Int       getChromaSampleLocTypeBottomField()           { return m_chromaSampleLocTypeBottomField; }
912  Void      setChromaSampleLocTypeBottomField(Int i)      { m_chromaSampleLocTypeBottomField = i; }
913  Bool      getNeutralChromaIndicationFlag()              { return m_neutralChromaIndicationFlag; }
914  Void      setNeutralChromaIndicationFlag(Bool i)        { m_neutralChromaIndicationFlag = i; }
915  Window   &getDefaultDisplayWindow()                     { return m_defaultDisplayWindow; }
916  Void      setDefaultDisplayWindow (Int offsetLeft, Int offsetRight, Int offsetTop, Int offsetBottom ) { m_defaultDisplayWindow.setWindow (offsetLeft, offsetRight, offsetTop, offsetBottom); }
917  Bool      getFrameFieldInfoPresentFlag()                { return m_frameFieldInfoPresentFlag; }
918  Void      setFrameFieldInfoPresentFlag(Bool i)          { m_frameFieldInfoPresentFlag = i; } 
919  Bool      getPocProportionalToTimingFlag()              { return m_pocProportionalToTimingFlag; }
920  Void      setPocProportionalToTimingFlag(Bool x)        { m_pocProportionalToTimingFlag = x;    }
921  Int       getNumTicksPocDiffOneMinus1()                 { return m_numTicksPocDiffOneMinus1;    }
922  Void      setNumTicksPocDiffOneMinus1(Int x)            { m_numTicksPocDiffOneMinus1 = x;       }
923  Bool      getBitstreamRestrictionFlag()                 { return m_bitstreamRestrictionFlag; }
924  Void      setBitstreamRestrictionFlag(Bool i)           { m_bitstreamRestrictionFlag = i; }
925  Bool      getTilesFixedStructureFlag()                  { return m_tilesFixedStructureFlag; }
926  Void      setTilesFixedStructureFlag(Bool i)            { m_tilesFixedStructureFlag = i; }
927  Bool      getMotionVectorsOverPicBoundariesFlag()       { return m_motionVectorsOverPicBoundariesFlag; }
928  Void      setMotionVectorsOverPicBoundariesFlag(Bool i) { m_motionVectorsOverPicBoundariesFlag = i; }
929  Int       getMinSpatialSegmentationIdc()                { return m_minSpatialSegmentationIdc; }
930  Void      setMinSpatialSegmentationIdc(Int i)           { m_minSpatialSegmentationIdc = i; }
931  Int       getMaxBytesPerPicDenom()                      { return m_maxBytesPerPicDenom; }
932  Void      setMaxBytesPerPicDenom(Int i)                 { m_maxBytesPerPicDenom = i; }
933  Int       getMaxBitsPerMinCuDenom()                     { return m_maxBitsPerMinCuDenom; }
934  Void      setMaxBitsPerMinCuDenom(Int i)                { m_maxBitsPerMinCuDenom = i; }
935  Int       getLog2MaxMvLengthHorizontal()                { return m_log2MaxMvLengthHorizontal; }
936  Void      setLog2MaxMvLengthHorizontal(Int i)           { m_log2MaxMvLengthHorizontal = i; }
937  Int       getLog2MaxMvLengthVertical()                  { return m_log2MaxMvLengthVertical; }
938  Void      setLog2MaxMvLengthVertical(Int i)             { m_log2MaxMvLengthVertical = i; }
939 
940  Bool getProgressiveSourceFlag() const { return m_progressiveSourceFlag; }
941  Void setProgressiveSourceFlag(Bool b) { m_progressiveSourceFlag = b; }
942 
943  Bool getInterlacedSourceFlag() const { return m_interlacedSourceFlag; }
944  Void setInterlacedSourceFlag(Bool b) { m_interlacedSourceFlag = b; }
945 
946  Bool getNonPackedConstraintFlag() const { return m_nonPackedConstraintFlag; }
947  Void setNonPackedConstraintFlag(Bool b) { m_nonPackedConstraintFlag = b; }
948 
949  Bool getFrameOnlyConstraintFlag() const { return m_frameOnlyConstraintFlag; }
950  Void setFrameOnlyConstraintFlag(Bool b) { m_frameOnlyConstraintFlag = b; }
951#if H_3D
952  /// 3D Tools
953
954 //==== CAMERA PARAMETERS  ==========
955  Void      setCamParPrecision              ( UInt  u )      { m_uiCamParPrecision      = u; }
956  Void      setCamParInSliceHeader          ( Bool  b )      { m_bCamParInSliceHeader   = b; }
957  Void      setCodedScale                   ( Int** p )      { m_aaiCodedScale          = p; }
958  Void      setCodedOffset                  ( Int** p )      { m_aaiCodedOffset         = p; }
959  Void      setCameraParameters             ( TAppComCamPara* c) { m_cameraParameters   = c; }
960
961#if H_3D_VSO
962 //==== VSO  ==========
963  Void      setRenderModelParameters ( TRenModSetupStrParser* c ) { m_renderModelParameters = c; }
964  Bool      getUseVSO                       ()              { return m_bUseVSO;     }
965  Void      setUseVSO                       ( Bool  b  )    { m_bUseVSO     = b; }
966  UInt      getVSOMode                      ()              { return m_uiVSOMode; }
967  Void      setVSOMode                      ( UInt  ui )    { m_uiVSOMode   = ui; }
968  Bool      getForceLambdaScaleVSO          ()              { return m_bForceLambdaScale; }
969  Void      setForceLambdaScaleVSO          ( Bool   b )    { m_bForceLambdaScale = b; };
970  Double    getLambdaScaleVSO               ()              { return m_dLambdaScaleVSO;   }
971  Void      setLambdaScaleVSO               ( Double d )    { m_dLambdaScaleVSO   = d; };
972  Bool      getAllowNegDist                 ()              { return m_bAllowNegDist;     }
973  Void      setAllowNegDist                 ( Bool   b )    { m_bAllowNegDist     = b; };
974
975  // LGE_WVSO_A0119
976  Bool      getUseWVSO                      ()              { return m_bUseWVSO;     }
977  Void      setUseWVSO                      ( Bool  b )     { m_bUseWVSO   = b; }
978  Int       getVSOWeight                    ()              { return m_iVSOWeight;    }
979  Void      setVSOWeight                    ( Int   i )     { m_iVSOWeight = i; }
980  Int       getVSDWeight                    ()              { return m_iVSDWeight;    }
981  Void      setVSDWeight                    ( Int   i )     { m_iVSDWeight = i; }
982  Int       getDWeight                      ()              { return m_iDWeight;    }
983  Void      setDWeight                      ( Int   i )     { m_iDWeight   = i; }
984
985  // SAIT_VSO_EST_A0033
986  Bool      getUseEstimatedVSD              ()              { return m_bUseEstimatedVSD; }
987  Void      setUseEstimatedVSD              ( Bool  b )     { m_bUseEstimatedVSD = b; }
988  Double    getDispCoeff                    ()              { return m_dDispCoeff;    }
989  Void      setDispCoeff                    ( Double  d )   { m_dDispCoeff  = d; }
990#endif // H_3D_VSO
991
992 //==== DIM  ==========
993#if H_3D_DIM
994  Bool      getUseDMM                       ()        { return m_useDMM; }
995  Void      setUseDMM                       ( Bool b) { m_useDMM = b;    }
996  Bool      getUseSDC                       ()        { return m_useSDC; }
997  Void      setUseSDC                       ( Bool b) { m_useSDC = b;    }
998  Bool      getUseDLT                       ()        { return m_useDLT; }
999  Void      setUseDLT                       ( Bool b) { m_useDLT = b;    }
1000#endif
1001#if H_3D_QTLPC
1002  Void      setUseQTL                       ( Bool b ) { m_bUseQTL = b;    }
1003  Bool      getUseQTL                       ()         { return m_bUseQTL; }
1004  Void      setUsePC                        ( Bool b ) { m_bUsePC  = b;    }
1005  Bool      getUsePC                        ()         { return m_bUsePC;  }
1006#endif
1007#if H_3D_IV_MERGE
1008  Void      setUseMPI                       ( Bool b ) { m_useMPI = b;    }
1009  Bool      getUseMPI                       ()         { return m_useMPI; }
1010#endif
1011#endif // H_3D
1012};
1013
1014//! \}
1015
1016#endif // !defined(AFX_TENCCFG_H__6B99B797_F4DA_4E46_8E78_7656339A6C41__INCLUDED_)
Note: See TracBrowser for help on using the repository browser.