source: SHVCSoftware/trunk/source/Lib/TLibEncoder/TEncCfg.h @ 644

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

merge with SHM-5.1-dev branch

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