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

Last change on this file since 776 was 776, checked in by sony, 11 years ago

JCTVC-P0050: Knee Function Information (MACRO: P0050_KNEE_FUNCTION_SEI)
ohji.nakagami@…

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