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

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

merge with SHM-6-dev

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