source: SHVCSoftware/branches/SHM-6-dev/source/Lib/TLibEncoder/TEncCfg.h @ 674

Last change on this file since 674 was 652, checked in by seregin, 11 years ago

update to HM-14.0

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