source: 3DVCSoftware/trunk/source/Lib/TLibEncoder/TEncCfg.h @ 724

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

Merged HTM-8.2-dev0@723.

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