source: 3DVCSoftware/branches/HTM-DEV-0.1-dev/source/Lib/TLibEncoder/TEncCfg.h @ 331

Last change on this file since 331 was 324, checked in by tech, 12 years ago

Initial development version for update to latest HM version.
Includes MV-HEVC and basic extensions for 3D-HEVC.

  • Property svn:eol-style set to native
File size: 43.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-2013, ITU/ISO/IEC
7 * All rights reserved.
8 *
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are met:
11 *
12 *  * Redistributions of source code must retain the above copyright notice,
13 *    this list of conditions and the following disclaimer.
14 *  * Redistributions in binary form must reproduce the above copyright notice,
15 *    this list of conditions and the following disclaimer in the documentation
16 *    and/or other materials provided with the distribution.
17 *  * Neither the name of the ITU/ISO/IEC nor the names of its contributors may
18 *    be used to endorse or promote products derived from this software without
19 *    specific prior written permission.
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS
25 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
31 * THE POSSIBILITY OF SUCH DAMAGE.
32 */
33
34/** \file     TEncCfg.h
35    \brief    encoder configuration class (header)
36*/
37
38#ifndef __TENCCFG__
39#define __TENCCFG__
40
41#if _MSC_VER > 1000
42#pragma once
43#endif // _MSC_VER > 1000
44
45#include "TLibCommon/CommonDef.h"
46#include "TLibCommon/TComSlice.h"
47#include <assert.h>
48
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#if H_MV
72  Int m_numInterViewRefPics;
73  Int m_interViewRefs    [MAX_NUM_REF_PICS];
74  Int m_interViewRefPosL[2][MAX_NUM_REF_PICS]; 
75#endif
76
77  GOPEntry()
78  : m_POC(-1)
79  , m_QPOffset(0)
80  , m_QPFactor(0)
81  , m_tcOffsetDiv2(0)
82  , m_betaOffsetDiv2(0)
83  , m_temporalId(0)
84  , m_refPic(false)
85  , m_numRefPicsActive(0)
86  , m_sliceType('P')
87  , m_numRefPics(0)
88  , m_interRPSPrediction(false)
89  , m_deltaRPS(0)
90  , m_numRefIdc(0)
91#if H_MV
92  , m_numInterViewRefPics(0)
93#endif
94  {
95    ::memset( m_referencePics, 0, sizeof(m_referencePics) );
96    ::memset( m_usedByCurrPic, 0, sizeof(m_usedByCurrPic) );
97    ::memset( m_refIdc,        0, sizeof(m_refIdc) );
98#if H_MV
99    ::memset( m_interViewRefs,   0, sizeof(m_interViewRefs) );
100    ::memset( m_interViewRefPosL[0], -1, sizeof(m_interViewRefPosL[0]) );
101    ::memset( m_interViewRefPosL[1], -1, sizeof(m_interViewRefPosL[1]) );
102#endif
103  }
104};
105
106std::istringstream &operator>>(std::istringstream &in, GOPEntry &entry);     //input
107//! \ingroup TLibEncoder
108//! \{
109
110// ====================================================================================================================
111// Class definition
112// ====================================================================================================================
113
114/// encoder configuration class
115class TEncCfg
116{
117protected:
118  //==== File I/O ========
119  Int       m_iFrameRate;
120  Int       m_FrameSkip;
121  Int       m_iSourceWidth;
122  Int       m_iSourceHeight;
123  Int       m_conformanceMode;
124  Window    m_conformanceWindow;
125  Int       m_framesToBeEncoded;
126  Double    m_adLambdaModifier[ MAX_TLAYER ];
127
128  /* profile & level */
129  Profile::Name m_profile;
130  Level::Tier   m_levelTier;
131  Level::Name   m_level;
132#if L0046_CONSTRAINT_FLAGS
133  Bool m_progressiveSourceFlag;
134  Bool m_interlacedSourceFlag;
135  Bool m_nonPackedConstraintFlag;
136  Bool m_frameOnlyConstraintFlag;
137#endif
138
139  //====== Coding Structure ========
140  UInt      m_uiIntraPeriod;
141  UInt      m_uiDecodingRefreshType;            ///< the type of decoding refresh employed for the random access.
142  Int       m_iGOPSize;
143#if H_MV
144  GOPEntry  m_GOPList[MAX_GOP+1];
145#else
146  GOPEntry  m_GOPList[MAX_GOP];
147#endif
148  Int       m_extraRPSs;
149  Int       m_maxDecPicBuffering[MAX_TLAYER];
150  Int       m_numReorderPics[MAX_TLAYER];
151 
152  Int       m_iQP;                              //  if (AdaptiveQP == OFF)
153 
154  Int       m_aiPad[2];
155 
156
157  Int       m_iMaxRefPicNum;                     ///< this is used to mimic the sliding mechanism used by the decoder
158                                                 // TODO: We need to have a common sliding mechanism used by both the encoder and decoder
159
160  Int       m_maxTempLayer;                      ///< Max temporal layer
161  Bool m_useAMP;
162  //======= Transform =============
163  UInt      m_uiQuadtreeTULog2MaxSize;
164  UInt      m_uiQuadtreeTULog2MinSize;
165  UInt      m_uiQuadtreeTUMaxDepthInter;
166  UInt      m_uiQuadtreeTUMaxDepthIntra;
167 
168  //====== Loop/Deblock Filter ========
169  Bool      m_bLoopFilterDisable;
170  Bool      m_loopFilterOffsetInPPS;
171  Int       m_loopFilterBetaOffsetDiv2;
172  Int       m_loopFilterTcOffsetDiv2;
173  Bool      m_DeblockingFilterControlPresent;
174  Bool      m_bUseSAO;
175  Int       m_maxNumOffsetsPerPic;
176  Bool      m_saoLcuBoundary;
177  Bool      m_saoLcuBasedOptimization;
178
179  //====== Lossless ========
180  Bool      m_useLossless;
181  //====== Motion search ========
182  Int       m_iFastSearch;                      //  0:Full search  1:Diamond  2:PMVFAST
183  Int       m_iSearchRange;                     //  0:Full frame
184  Int       m_bipredSearchRange;
185
186  //====== Quality control ========
187  Int       m_iMaxDeltaQP;                      //  Max. absolute delta QP (1:default)
188  Int       m_iMaxCuDQPDepth;                   //  Max. depth for a minimum CuDQP (0:default)
189
190  Int       m_chromaCbQpOffset;                 //  Chroma Cb QP Offset (0:default)
191  Int       m_chromaCrQpOffset;                 //  Chroma Cr Qp Offset (0:default)
192
193#if ADAPTIVE_QP_SELECTION
194  Bool      m_bUseAdaptQpSelect;
195#endif
196
197  Bool      m_bUseAdaptiveQP;
198  Int       m_iQPAdaptationRange;
199 
200  //====== Tool list ========
201  Bool      m_bUseSBACRD;
202  Bool      m_bUseASR;
203  Bool      m_bUseHADME;
204  Bool      m_bUseLComb;
205  Bool      m_useRDOQ;
206  Bool      m_useRDOQTS;
207#if L0232_RD_PENALTY
208  UInt      m_rdPenalty;
209#endif
210  Bool      m_bUseFastEnc;
211  Bool      m_bUseEarlyCU;
212  Bool      m_useFastDecisionForMerge;
213  Bool      m_bUseCbfFastMode;
214  Bool      m_useEarlySkipDetection;
215  Bool      m_useTransformSkip;
216  Bool      m_useTransformSkipFast;
217  Int*      m_aidQP;
218  UInt      m_uiDeltaQpRD;
219 
220  Bool      m_bUseConstrainedIntraPred;
221  Bool      m_usePCM;
222  UInt      m_pcmLog2MaxSize;
223  UInt      m_uiPCMLog2MinSize;
224  //====== Slice ========
225  Int       m_sliceMode;
226  Int       m_sliceArgument; 
227  //====== Dependent Slice ========
228  Int       m_sliceSegmentMode;
229  Int       m_sliceSegmentArgument;
230  Bool      m_bLFCrossSliceBoundaryFlag;
231
232  Bool      m_bPCMInputBitDepthFlag;
233  UInt      m_uiPCMBitDepthLuma;
234  UInt      m_uiPCMBitDepthChroma;
235  Bool      m_bPCMFilterDisableFlag;
236  Bool      m_loopFilterAcrossTilesEnabledFlag;
237  Int       m_iUniformSpacingIdr;
238  Int       m_iNumColumnsMinus1;
239  UInt*     m_puiColumnWidth;
240  Int       m_iNumRowsMinus1;
241  UInt*     m_puiRowHeight;
242
243  Int       m_iWaveFrontSynchro;
244  Int       m_iWaveFrontSubstreams;
245
246  Int       m_decodedPictureHashSEIEnabled;              ///< Checksum(3)/CRC(2)/MD5(1)/disable(0) acting on decoded picture hash SEI message
247  Int       m_bufferingPeriodSEIEnabled;
248  Int       m_pictureTimingSEIEnabled;
249  Int       m_recoveryPointSEIEnabled;
250  Int       m_framePackingSEIEnabled;
251  Int       m_framePackingSEIType;
252  Int       m_framePackingSEIId;
253  Int       m_framePackingSEIQuincunx;
254  Int       m_framePackingSEIInterpretation;
255  Int       m_displayOrientationSEIAngle;
256  Int       m_temporalLevel0IndexSEIEnabled;
257  Int       m_gradualDecodingRefreshInfoEnabled;
258  Int       m_decodingUnitInfoSEIEnabled;
259  //====== Weighted Prediction ========
260  Bool      m_useWeightedPred;       //< Use of Weighting Prediction (P_SLICE)
261  Bool      m_useWeightedBiPred;    //< Use of Bi-directional Weighting Prediction (B_SLICE)
262  UInt      m_log2ParallelMergeLevelMinus2;       ///< Parallel merge estimation region
263  UInt      m_maxNumMergeCand;                    ///< Maximum number of merge candidates
264  Int       m_useScalingListId;            ///< Using quantization matrix i.e. 0=off, 1=default, 2=file.
265  Char*     m_scalingListFile;          ///< quantization matrix file name
266  Int       m_TMVPModeId;
267  Int       m_signHideFlag;
268#if RATE_CONTROL_LAMBDA_DOMAIN
269  Bool      m_RCEnableRateControl;
270  Int       m_RCTargetBitrate;
271  Bool      m_RCKeepHierarchicalBit;
272  Bool      m_RCLCULevelRC;
273  Bool      m_RCUseLCUSeparateModel;
274  Int       m_RCInitialQP;
275  Bool      m_RCForceIntraQP;
276#else
277  Bool      m_enableRateCtrl;                                ///< Flag for using rate control algorithm
278  Int       m_targetBitrate;                                 ///< target bitrate
279  Int       m_numLCUInUnit;                                  ///< Total number of LCUs in a frame should be divided by the NumLCUInUnit
280#endif
281  Bool      m_TransquantBypassEnableFlag;                     ///< transquant_bypass_enable_flag setting in PPS.
282  Bool      m_CUTransquantBypassFlagValue;                    ///< if transquant_bypass_enable_flag, the fixed value to use for the per-CU cu_transquant_bypass_flag.
283  TComVPS                    m_cVPS;
284  Bool      m_recalculateQPAccordingToLambda;                 ///< recalculate QP value according to the lambda value
285  Int       m_activeParameterSetsSEIEnabled;                  ///< enable active parameter set SEI message
286  Bool      m_vuiParametersPresentFlag;                       ///< enable generation of VUI parameters
287  Bool      m_aspectRatioInfoPresentFlag;                     ///< Signals whether aspect_ratio_idc is present
288  Int       m_aspectRatioIdc;                                 ///< aspect_ratio_idc
289  Int       m_sarWidth;                                       ///< horizontal size of the sample aspect ratio
290  Int       m_sarHeight;                                      ///< vertical size of the sample aspect ratio
291  Bool      m_overscanInfoPresentFlag;                        ///< Signals whether overscan_appropriate_flag is present
292  Bool      m_overscanAppropriateFlag;                        ///< Indicates whether conformant decoded pictures are suitable for display using overscan
293  Bool      m_videoSignalTypePresentFlag;                     ///< Signals whether video_format, video_full_range_flag, and colour_description_present_flag are present
294  Int       m_videoFormat;                                    ///< Indicates representation of pictures
295  Bool      m_videoFullRangeFlag;                             ///< Indicates the black level and range of luma and chroma signals
296  Bool      m_colourDescriptionPresentFlag;                   ///< Signals whether colour_primaries, transfer_characteristics and matrix_coefficients are present
297  Int       m_colourPrimaries;                                ///< Indicates chromaticity coordinates of the source primaries
298  Int       m_transferCharacteristics;                        ///< Indicates the opto-electronic transfer characteristics of the source
299  Int       m_matrixCoefficients;                             ///< Describes the matrix coefficients used in deriving luma and chroma from RGB primaries
300  Bool      m_chromaLocInfoPresentFlag;                       ///< Signals whether chroma_sample_loc_type_top_field and chroma_sample_loc_type_bottom_field are present
301  Int       m_chromaSampleLocTypeTopField;                    ///< Specifies the location of chroma samples for top field
302  Int       m_chromaSampleLocTypeBottomField;                 ///< Specifies the location of chroma samples for bottom field
303  Bool      m_neutralChromaIndicationFlag;                    ///< Indicates that the value of all decoded chroma samples is equal to 1<<(BitDepthCr-1)
304  Window    m_defaultDisplayWindow;                           ///< Represents the default display window parameters
305  Bool      m_frameFieldInfoPresentFlag;                      ///< Indicates that pic_struct and other field coding related values are present in picture timing SEI messages
306  Bool      m_pocProportionalToTimingFlag;                    ///< Indicates that the POC value is proportional to the output time w.r.t. first picture in CVS
307  Int       m_numTicksPocDiffOneMinus1;                       ///< Number of ticks minus 1 that for a POC difference of one
308  Bool      m_bitstreamRestrictionFlag;                       ///< Signals whether bitstream restriction parameters are present
309  Bool      m_tilesFixedStructureFlag;                        ///< Indicates that each active picture parameter set has the same values of the syntax elements related to tiles
310  Bool      m_motionVectorsOverPicBoundariesFlag;             ///< Indicates that no samples outside the picture boundaries are used for inter prediction
311  Int       m_minSpatialSegmentationIdc;                      ///< Indicates the maximum size of the spatial segments in the pictures in the coded video sequence
312  Int       m_maxBytesPerPicDenom;                            ///< Indicates a number of bytes not exceeded by the sum of the sizes of the VCL NAL units associated with any coded picture
313  Int       m_maxBitsPerMinCuDenom;                           ///< Indicates an upper bound for the number of bits of coding_unit() data
314  Int       m_log2MaxMvLengthHorizontal;                      ///< Indicate the maximum absolute value of a decoded horizontal MV component in quarter-pel luma units
315  Int       m_log2MaxMvLengthVertical;                        ///< Indicate the maximum absolute value of a decoded vertical MV component in quarter-pel luma units
316
317  Bool      m_useStrongIntraSmoothing;                        ///< enable the use of strong intra smoothing (bi_linear interpolation) for 32x32 blocks when reference samples are flat.
318
319#if H_MV
320  Int       m_layerId;
321  Int       m_layerIdInVps;
322  Int       m_viewId;
323#if H_3D
324  Bool      m_isDepth;
325#endif
326#endif
327
328public:
329  TEncCfg()
330  : m_puiColumnWidth()
331  , m_puiRowHeight()
332#if H_MV
333  , m_layerId(-1)
334  , m_layerIdInVps(-1)
335  , m_viewId(-1)
336#if H_3D
337  , m_isDepth(false)
338#endif
339#endif
340  {}
341
342  virtual ~TEncCfg()
343  {
344    delete[] m_puiColumnWidth;
345    delete[] m_puiRowHeight;
346  }
347 
348  Void setProfile(Profile::Name profile) { m_profile = profile; }
349  Void setLevel(Level::Tier tier, Level::Name level) { m_levelTier = tier; m_level = level; }
350
351  Void      setFrameRate                    ( Int   i )      { m_iFrameRate = i; }
352  Void      setFrameSkip                    ( UInt i ) { m_FrameSkip = i; }
353  Void      setSourceWidth                  ( Int   i )      { m_iSourceWidth = i; }
354  Void      setSourceHeight                 ( Int   i )      { m_iSourceHeight = i; }
355
356  Window   &getConformanceWindow()                           { return m_conformanceWindow; }
357  Void      setConformanceWindow (Int confLeft, Int confRight, Int confTop, Int confBottom ) { m_conformanceWindow.setWindow (confLeft, confRight, confTop, confBottom); }
358
359  Void      setFramesToBeEncoded            ( Int   i )      { m_framesToBeEncoded = i; }
360 
361#if H_MV
362  Void      setLayerId                       ( Int layerId )      { m_layerId = layerId; }
363  Int       getLayerId                       ()                   { return m_layerId;    }
364  Int       getLayerIdInVps                  ()                   { return m_layerIdInVps; }
365  Void      setLayerIdInVps                  ( Int layerIdInVps)  { m_layerIdInVps = layerIdInVps; }
366  Void      setViewId                        ( Int viewId  )      { m_viewId  = viewId;  }
367  Int       getViewId                        ()                   { return m_viewId;    }
368#if H_3D
369  Void      setIsDepth                       ( Bool isDepth )   { m_isDepth = isDepth; }
370  Bool      getIsDepth                       ()                 { return m_isDepth; }
371#endif
372#endif
373
374  //====== Coding Structure ========
375  Void      setIntraPeriod                  ( Int   i )      { m_uiIntraPeriod = (UInt)i; }
376  Void      setDecodingRefreshType          ( Int   i )      { m_uiDecodingRefreshType = (UInt)i; }
377  Void      setGOPSize                      ( Int   i )      { m_iGOPSize = i; }
378#if H_MV
379  Void      setGopList                      ( GOPEntry*  GOPList ) {  for ( Int i = 0; i < MAX_GOP+1; i++ ) m_GOPList[i] = GOPList[i]; }
380#else
381  Void      setGopList                      ( GOPEntry*  GOPList ) {  for ( Int i = 0; i < MAX_GOP; i++ ) m_GOPList[i] = GOPList[i]; }
382#endif
383  Void      setExtraRPSs                    ( Int   i )      { m_extraRPSs = i; }
384  GOPEntry  getGOPEntry                     ( Int   i )      { return m_GOPList[i]; }
385  Void      setMaxDecPicBuffering           ( UInt u, UInt tlayer ) { m_maxDecPicBuffering[tlayer] = u;    }
386  Void      setNumReorderPics               ( Int  i, UInt tlayer ) { m_numReorderPics[tlayer] = i;    }
387 
388  Void      setQP                           ( Int   i )      { m_iQP = i; }
389 
390  Void      setPad                          ( Int*  iPad                   )      { for ( Int i = 0; i < 2; i++ ) m_aiPad[i] = iPad[i]; }
391 
392  Int       getMaxRefPicNum                 ()                              { return m_iMaxRefPicNum;           }
393  Void      setMaxRefPicNum                 ( Int iMaxRefPicNum )           { m_iMaxRefPicNum = iMaxRefPicNum;  }
394
395  Bool      getMaxTempLayer                 ()                              { return m_maxTempLayer;              } 
396  Void      setMaxTempLayer                 ( Int maxTempLayer )            { m_maxTempLayer = maxTempLayer;      }
397  //======== Transform =============
398  Void      setQuadtreeTULog2MaxSize        ( UInt  u )      { m_uiQuadtreeTULog2MaxSize = u; }
399  Void      setQuadtreeTULog2MinSize        ( UInt  u )      { m_uiQuadtreeTULog2MinSize = u; }
400  Void      setQuadtreeTUMaxDepthInter      ( UInt  u )      { m_uiQuadtreeTUMaxDepthInter = u; }
401  Void      setQuadtreeTUMaxDepthIntra      ( UInt  u )      { m_uiQuadtreeTUMaxDepthIntra = u; }
402 
403  Void setUseAMP( Bool b ) { m_useAMP = b; }
404 
405  //====== Loop/Deblock Filter ========
406  Void      setLoopFilterDisable            ( Bool  b )      { m_bLoopFilterDisable       = b; }
407  Void      setLoopFilterOffsetInPPS        ( Bool  b )      { m_loopFilterOffsetInPPS      = b; }
408  Void      setLoopFilterBetaOffset         ( Int   i )      { m_loopFilterBetaOffsetDiv2  = i; }
409  Void      setLoopFilterTcOffset           ( Int   i )      { m_loopFilterTcOffsetDiv2    = i; }
410  Void      setDeblockingFilterControlPresent ( Bool b ) { m_DeblockingFilterControlPresent = b; }
411
412  //====== Motion search ========
413  Void      setFastSearch                   ( Int   i )      { m_iFastSearch = i; }
414  Void      setSearchRange                  ( Int   i )      { m_iSearchRange = i; }
415  Void      setBipredSearchRange            ( Int   i )      { m_bipredSearchRange = i; }
416
417  //====== Quality control ========
418  Void      setMaxDeltaQP                   ( Int   i )      { m_iMaxDeltaQP = i; }
419  Void      setMaxCuDQPDepth                ( Int   i )      { m_iMaxCuDQPDepth = i; }
420
421  Void      setChromaCbQpOffset             ( Int   i )      { m_chromaCbQpOffset = i; }
422  Void      setChromaCrQpOffset             ( Int   i )      { m_chromaCrQpOffset = i; }
423
424#if ADAPTIVE_QP_SELECTION
425  Void      setUseAdaptQpSelect             ( Bool   i ) { m_bUseAdaptQpSelect    = i; }
426  Bool      getUseAdaptQpSelect             ()           { return   m_bUseAdaptQpSelect; }
427#endif
428
429  Void      setUseAdaptiveQP                ( Bool  b )      { m_bUseAdaptiveQP = b; }
430  Void      setQPAdaptationRange            ( Int   i )      { m_iQPAdaptationRange = i; }
431 
432  //====== Lossless ========
433  Void      setUseLossless                  (Bool    b  )        { m_useLossless = b;  }
434  //====== Sequence ========
435  Int       getFrameRate                    ()      { return  m_iFrameRate; }
436  UInt      getFrameSkip                    ()      { return  m_FrameSkip; }
437  Int       getSourceWidth                  ()      { return  m_iSourceWidth; }
438  Int       getSourceHeight                 ()      { return  m_iSourceHeight; }
439  Int       getFramesToBeEncoded            ()      { return  m_framesToBeEncoded; }
440  void setLambdaModifier                    ( UInt uiIndex, Double dValue ) { m_adLambdaModifier[ uiIndex ] = dValue; }
441  Double getLambdaModifier                  ( UInt uiIndex ) const { return m_adLambdaModifier[ uiIndex ]; }
442
443  //==== Coding Structure ========
444  UInt      getIntraPeriod                  ()      { return  m_uiIntraPeriod; }
445  UInt      getDecodingRefreshType          ()      { return  m_uiDecodingRefreshType; }
446  Int       getGOPSize                      ()      { return  m_iGOPSize; }
447  Int       getMaxDecPicBuffering           (UInt tlayer) { return m_maxDecPicBuffering[tlayer]; }
448  Int       getNumReorderPics               (UInt tlayer) { return m_numReorderPics[tlayer]; }
449  Int       getQP                           ()      { return  m_iQP; }
450 
451  Int       getPad                          ( Int i )      { assert (i < 2 );                      return  m_aiPad[i]; }
452 
453  //======== Transform =============
454  UInt      getQuadtreeTULog2MaxSize        ()      const { return m_uiQuadtreeTULog2MaxSize; }
455  UInt      getQuadtreeTULog2MinSize        ()      const { return m_uiQuadtreeTULog2MinSize; }
456  UInt      getQuadtreeTUMaxDepthInter      ()      const { return m_uiQuadtreeTUMaxDepthInter; }
457  UInt      getQuadtreeTUMaxDepthIntra      ()      const { return m_uiQuadtreeTUMaxDepthIntra; }
458 
459  //==== Loop/Deblock Filter ========
460  Bool      getLoopFilterDisable            ()      { return  m_bLoopFilterDisable;       }
461  Bool      getLoopFilterOffsetInPPS        ()      { return m_loopFilterOffsetInPPS; }
462  Int       getLoopFilterBetaOffset         ()      { return m_loopFilterBetaOffsetDiv2; }
463  Int       getLoopFilterTcOffset           ()      { return m_loopFilterTcOffsetDiv2; }
464  Bool      getDeblockingFilterControlPresent()  { return  m_DeblockingFilterControlPresent; }
465
466  //==== Motion search ========
467  Int       getFastSearch                   ()      { return  m_iFastSearch; }
468  Int       getSearchRange                  ()      { return  m_iSearchRange; }
469
470  //==== Quality control ========
471  Int       getMaxDeltaQP                   ()      { return  m_iMaxDeltaQP; }
472  Int       getMaxCuDQPDepth                ()      { return  m_iMaxCuDQPDepth; }
473  Bool      getUseAdaptiveQP                ()      { return  m_bUseAdaptiveQP; }
474  Int       getQPAdaptationRange            ()      { return  m_iQPAdaptationRange; }
475  //====== Lossless ========
476  Bool      getUseLossless                  ()      { return  m_useLossless;  }
477 
478  //==== Tool list ========
479  Void      setUseSBACRD                    ( Bool  b )     { m_bUseSBACRD  = b; }
480  Void      setUseASR                       ( Bool  b )     { m_bUseASR     = b; }
481  Void      setUseHADME                     ( Bool  b )     { m_bUseHADME   = b; }
482  Void      setUseLComb                     ( Bool  b )     { m_bUseLComb   = b; }
483  Void      setUseRDOQ                      ( Bool  b )     { m_useRDOQ    = b; }
484  Void      setUseRDOQTS                    ( Bool  b )     { m_useRDOQTS  = b; }
485#if L0232_RD_PENALTY
486  Void      setRDpenalty                 ( UInt  b )     { m_rdPenalty  = b; }
487#endif
488  Void      setUseFastEnc                   ( Bool  b )     { m_bUseFastEnc = b; }
489  Void      setUseEarlyCU                   ( Bool  b )     { m_bUseEarlyCU = b; }
490  Void      setUseFastDecisionForMerge      ( Bool  b )     { m_useFastDecisionForMerge = b; }
491  Void      setUseCbfFastMode            ( Bool  b )     { m_bUseCbfFastMode = b; }
492  Void      setUseEarlySkipDetection        ( Bool  b )     { m_useEarlySkipDetection = b; }
493  Void      setUseConstrainedIntraPred      ( Bool  b )     { m_bUseConstrainedIntraPred = b; }
494  Void      setPCMInputBitDepthFlag         ( Bool  b )     { m_bPCMInputBitDepthFlag = b; }
495  Void      setPCMFilterDisableFlag         ( Bool  b )     {  m_bPCMFilterDisableFlag = b; }
496  Void      setUsePCM                       ( Bool  b )     {  m_usePCM = b;               }
497  Void      setPCMLog2MaxSize               ( UInt u )      { m_pcmLog2MaxSize = u;      }
498  Void      setPCMLog2MinSize               ( UInt u )     { m_uiPCMLog2MinSize = u;      }
499  Void      setdQPs                         ( Int*  p )     { m_aidQP       = p; }
500  Void      setDeltaQpRD                    ( UInt  u )     {m_uiDeltaQpRD  = u; }
501  Bool      getUseSBACRD                    ()      { return m_bUseSBACRD;  }
502  Bool      getUseASR                       ()      { return m_bUseASR;     }
503  Bool      getUseHADME                     ()      { return m_bUseHADME;   }
504  Bool      getUseLComb                     ()      { return m_bUseLComb;   }
505  Bool      getUseRDOQ                      ()      { return m_useRDOQ;    }
506  Bool      getUseRDOQTS                    ()      { return m_useRDOQTS;  }
507#if L0232_RD_PENALTY
508  Int      getRDpenalty                  ()      { return m_rdPenalty;  }
509#endif
510  Bool      getUseFastEnc                   ()      { return m_bUseFastEnc; }
511  Bool      getUseEarlyCU                   ()      { return m_bUseEarlyCU; }
512  Bool      getUseFastDecisionForMerge      ()      { return m_useFastDecisionForMerge; }
513  Bool      getUseCbfFastMode           ()      { return m_bUseCbfFastMode; }
514  Bool      getUseEarlySkipDetection        ()      { return m_useEarlySkipDetection; }
515  Bool      getUseConstrainedIntraPred      ()      { return m_bUseConstrainedIntraPred; }
516  Bool      getPCMInputBitDepthFlag         ()      { return m_bPCMInputBitDepthFlag;   }
517  Bool      getPCMFilterDisableFlag         ()      { return m_bPCMFilterDisableFlag;   } 
518  Bool      getUsePCM                       ()      { return m_usePCM;                 }
519  UInt      getPCMLog2MaxSize               ()      { return m_pcmLog2MaxSize;  }
520  UInt      getPCMLog2MinSize               ()      { return  m_uiPCMLog2MinSize;  }
521
522  Bool getUseTransformSkip                             ()      { return m_useTransformSkip;        }
523  Void setUseTransformSkip                             ( Bool b ) { m_useTransformSkip  = b;       }
524  Bool getUseTransformSkipFast                         ()      { return m_useTransformSkipFast;    }
525  Void setUseTransformSkipFast                         ( Bool b ) { m_useTransformSkipFast  = b;   }
526  Int*      getdQPs                         ()      { return m_aidQP;       }
527  UInt      getDeltaQpRD                    ()      { return m_uiDeltaQpRD; }
528
529  //====== Slice ========
530  Void  setSliceMode                   ( Int  i )       { m_sliceMode = i;              }
531  Void  setSliceArgument               ( Int  i )       { m_sliceArgument = i;          }
532  Int   getSliceMode                   ()              { return m_sliceMode;           }
533  Int   getSliceArgument               ()              { return m_sliceArgument;       }
534  //====== Dependent Slice ========
535  Void  setSliceSegmentMode            ( Int  i )      { m_sliceSegmentMode = i;       }
536  Void  setSliceSegmentArgument        ( Int  i )      { m_sliceSegmentArgument = i;   }
537  Int   getSliceSegmentMode            ()              { return m_sliceSegmentMode;    }
538  Int   getSliceSegmentArgument        ()              { return m_sliceSegmentArgument;}
539  Void      setLFCrossSliceBoundaryFlag     ( Bool   bValue  )    { m_bLFCrossSliceBoundaryFlag = bValue; }
540  Bool      getLFCrossSliceBoundaryFlag     ()                    { return m_bLFCrossSliceBoundaryFlag;   }
541
542  Void      setUseSAO                  (Bool bVal)     {m_bUseSAO = bVal;}
543  Bool      getUseSAO                  ()              {return m_bUseSAO;}
544  Void  setMaxNumOffsetsPerPic                   (Int iVal)            { m_maxNumOffsetsPerPic = iVal; }
545  Int   getMaxNumOffsetsPerPic                   ()                    { return m_maxNumOffsetsPerPic; }
546  Void  setSaoLcuBoundary              (Bool val)      { m_saoLcuBoundary = val; }
547  Bool  getSaoLcuBoundary              ()              { return m_saoLcuBoundary; }
548  Void  setSaoLcuBasedOptimization               (Bool val)            { m_saoLcuBasedOptimization = val; }
549  Bool  getSaoLcuBasedOptimization               ()                    { return m_saoLcuBasedOptimization; }
550  Void  setLFCrossTileBoundaryFlag               ( Bool   val  )       { m_loopFilterAcrossTilesEnabledFlag = val; }
551  Bool  getLFCrossTileBoundaryFlag               ()                    { return m_loopFilterAcrossTilesEnabledFlag;   }
552  Void  setUniformSpacingIdr           ( Int i )           { m_iUniformSpacingIdr = i; }
553  Int   getUniformSpacingIdr           ()                  { return m_iUniformSpacingIdr; }
554  Void  setNumColumnsMinus1            ( Int i )           { m_iNumColumnsMinus1 = i; }
555  Int   getNumColumnsMinus1            ()                  { return m_iNumColumnsMinus1; }
556  Void  setColumnWidth ( UInt* columnWidth )
557  {
558    if( m_iUniformSpacingIdr == 0 && m_iNumColumnsMinus1 > 0 )
559    {
560      Int  m_iWidthInCU = ( m_iSourceWidth%g_uiMaxCUWidth ) ? m_iSourceWidth/g_uiMaxCUWidth + 1 : m_iSourceWidth/g_uiMaxCUWidth;
561      m_puiColumnWidth = new UInt[ m_iNumColumnsMinus1 ];
562
563      for(Int i=0; i<m_iNumColumnsMinus1; i++)
564      {
565        m_puiColumnWidth[i] = columnWidth[i];
566        printf("col: m_iWidthInCU= %4d i=%4d width= %4d\n",m_iWidthInCU,i,m_puiColumnWidth[i]); //AFU
567      }
568    }
569  }
570  UInt  getColumnWidth                 ( UInt columnidx )  { return *( m_puiColumnWidth + columnidx ); }
571  Void  setNumRowsMinus1               ( Int i )           { m_iNumRowsMinus1 = i; }
572  Int   getNumRowsMinus1               ()                  { return m_iNumRowsMinus1; }
573  Void  setRowHeight (UInt* rowHeight)
574  {
575    if( m_iUniformSpacingIdr == 0 && m_iNumRowsMinus1 > 0 )
576    {
577      Int  m_iHeightInCU = ( m_iSourceHeight%g_uiMaxCUHeight ) ? m_iSourceHeight/g_uiMaxCUHeight + 1 : m_iSourceHeight/g_uiMaxCUHeight;
578      m_puiRowHeight = new UInt[ m_iNumRowsMinus1 ];
579
580      for(Int i=0; i<m_iNumRowsMinus1; i++)
581      {
582        m_puiRowHeight[i] = rowHeight[i];
583        printf("row: m_iHeightInCU=%4d i=%4d height=%4d\n",m_iHeightInCU,i,m_puiRowHeight[i]); //AFU
584      }
585    }
586  }
587  UInt  getRowHeight                   ( UInt rowIdx )     { return *( m_puiRowHeight + rowIdx ); }
588  Void  xCheckGSParameters();
589  Void  setWaveFrontSynchro(Int iWaveFrontSynchro)       { m_iWaveFrontSynchro = iWaveFrontSynchro; }
590  Int   getWaveFrontsynchro()                            { return m_iWaveFrontSynchro; }
591  Void  setWaveFrontSubstreams(Int iWaveFrontSubstreams) { m_iWaveFrontSubstreams = iWaveFrontSubstreams; }
592  Int   getWaveFrontSubstreams()                         { return m_iWaveFrontSubstreams; }
593  Void  setDecodedPictureHashSEIEnabled(Int b)           { m_decodedPictureHashSEIEnabled = b; }
594  Int   getDecodedPictureHashSEIEnabled()                { return m_decodedPictureHashSEIEnabled; }
595  Void  setBufferingPeriodSEIEnabled(Int b)              { m_bufferingPeriodSEIEnabled = b; }
596  Int   getBufferingPeriodSEIEnabled()                   { return m_bufferingPeriodSEIEnabled; }
597  Void  setPictureTimingSEIEnabled(Int b)                { m_pictureTimingSEIEnabled = b; }
598  Int   getPictureTimingSEIEnabled()                     { return m_pictureTimingSEIEnabled; }
599  Void  setRecoveryPointSEIEnabled(Int b)                { m_recoveryPointSEIEnabled = b; }
600  Int   getRecoveryPointSEIEnabled()                     { return m_recoveryPointSEIEnabled; }
601  Void  setFramePackingArrangementSEIEnabled(Int b)      { m_framePackingSEIEnabled = b; }
602  Int   getFramePackingArrangementSEIEnabled()           { return m_framePackingSEIEnabled; }
603  Void  setFramePackingArrangementSEIType(Int b)         { m_framePackingSEIType = b; }
604  Int   getFramePackingArrangementSEIType()              { return m_framePackingSEIType; }
605  Void  setFramePackingArrangementSEIId(Int b)           { m_framePackingSEIId = b; }
606  Int   getFramePackingArrangementSEIId()                { return m_framePackingSEIId; }
607  Void  setFramePackingArrangementSEIQuincunx(Int b)     { m_framePackingSEIQuincunx = b; }
608  Int   getFramePackingArrangementSEIQuincunx()          { return m_framePackingSEIQuincunx; }
609  Void  setFramePackingArrangementSEIInterpretation(Int b)  { m_framePackingSEIInterpretation = b; }
610  Int   getFramePackingArrangementSEIInterpretation()    { return m_framePackingSEIInterpretation; }
611  Void  setDisplayOrientationSEIAngle(Int b)             { m_displayOrientationSEIAngle = b; }
612  Int   getDisplayOrientationSEIAngle()                  { return m_displayOrientationSEIAngle; }
613  Void  setTemporalLevel0IndexSEIEnabled(Int b)          { m_temporalLevel0IndexSEIEnabled = b; }
614  Int   getTemporalLevel0IndexSEIEnabled()               { return m_temporalLevel0IndexSEIEnabled; }
615  Void  setGradualDecodingRefreshInfoEnabled(Int b)      { m_gradualDecodingRefreshInfoEnabled = b;    }
616  Int   getGradualDecodingRefreshInfoEnabled()           { return m_gradualDecodingRefreshInfoEnabled; }
617  Void  setDecodingUnitInfoSEIEnabled(Int b)                { m_decodingUnitInfoSEIEnabled = b;    }
618  Int   getDecodingUnitInfoSEIEnabled()                     { return m_decodingUnitInfoSEIEnabled; }
619  Void      setUseWP               ( Bool b )    { m_useWeightedPred   = b;    }
620  Void      setWPBiPred            ( Bool b )    { m_useWeightedBiPred = b;    }
621  Bool      getUseWP               ()            { return m_useWeightedPred;   }
622  Bool      getWPBiPred            ()            { return m_useWeightedBiPred; }
623  Void      setLog2ParallelMergeLevelMinus2   ( UInt u )    { m_log2ParallelMergeLevelMinus2       = u;    }
624  UInt      getLog2ParallelMergeLevelMinus2   ()            { return m_log2ParallelMergeLevelMinus2;       }
625  Void      setMaxNumMergeCand                ( UInt u )    { m_maxNumMergeCand = u;      }
626  UInt      getMaxNumMergeCand                ()            { return m_maxNumMergeCand;   }
627  Void      setUseScalingListId    ( Int  u )    { m_useScalingListId       = u;   }
628  Int       getUseScalingListId    ()            { return m_useScalingListId;      }
629  Void      setScalingListFile     ( Char*  pch ){ m_scalingListFile     = pch; }
630  Char*     getScalingListFile     ()            { return m_scalingListFile;    }
631  Void      setTMVPModeId ( Int  u ) { m_TMVPModeId = u;    }
632  Int       getTMVPModeId ()         { return m_TMVPModeId; }
633  Void      setSignHideFlag( Int signHideFlag ) { m_signHideFlag = signHideFlag; }
634  Int       getSignHideFlag()                    { return m_signHideFlag; }
635#if RATE_CONTROL_LAMBDA_DOMAIN
636  Bool      getUseRateCtrl         ()              { return m_RCEnableRateControl;   }
637  Void      setUseRateCtrl         ( Bool b )      { m_RCEnableRateControl = b;      }
638  Int       getTargetBitrate       ()              { return m_RCTargetBitrate;       }
639  Void      setTargetBitrate       ( Int bitrate ) { m_RCTargetBitrate  = bitrate;   }
640  Bool      getKeepHierBit         ()              { return m_RCKeepHierarchicalBit; }
641  Void      setKeepHierBit         ( Bool b )      { m_RCKeepHierarchicalBit = b;    }
642  Bool      getLCULevelRC          ()              { return m_RCLCULevelRC; }
643  Void      setLCULevelRC          ( Bool b )      { m_RCLCULevelRC = b; }
644  Bool      getUseLCUSeparateModel ()              { return m_RCUseLCUSeparateModel; }
645  Void      setUseLCUSeparateModel ( Bool b )      { m_RCUseLCUSeparateModel = b;    }
646  Int       getInitialQP           ()              { return m_RCInitialQP;           }
647  Void      setInitialQP           ( Int QP )      { m_RCInitialQP = QP;             }
648  Bool      getForceIntraQP        ()              { return m_RCForceIntraQP;        }
649  Void      setForceIntraQP        ( Bool b )      { m_RCForceIntraQP = b;           }
650#else
651  Bool      getUseRateCtrl    ()                { return m_enableRateCtrl;    }
652  Void      setUseRateCtrl    (Bool flag)       { m_enableRateCtrl = flag;    }
653  Int       getTargetBitrate  ()                { return m_targetBitrate;     }
654  Void      setTargetBitrate  (Int target)      { m_targetBitrate  = target;  }
655  Int       getNumLCUInUnit   ()                { return m_numLCUInUnit;      }
656  Void      setNumLCUInUnit   (Int numLCUs)     { m_numLCUInUnit   = numLCUs; }
657#endif
658  Bool      getTransquantBypassEnableFlag()           { return m_TransquantBypassEnableFlag; }
659  Void      setTransquantBypassEnableFlag(Bool flag)  { m_TransquantBypassEnableFlag = flag; }
660  Bool      getCUTransquantBypassFlagValue()          { return m_CUTransquantBypassFlagValue; }
661  Void      setCUTransquantBypassFlagValue(Bool flag) { m_CUTransquantBypassFlagValue = flag; }
662  Void setVPS(TComVPS *p) { m_cVPS = *p; }
663  TComVPS *getVPS() { return &m_cVPS; }
664  Void      setUseRecalculateQPAccordingToLambda ( Bool b ) { m_recalculateQPAccordingToLambda = b;    }
665  Bool      getUseRecalculateQPAccordingToLambda ()         { return m_recalculateQPAccordingToLambda; }
666
667  Void      setUseStrongIntraSmoothing ( Bool b ) { m_useStrongIntraSmoothing = b;    }
668  Bool      getUseStrongIntraSmoothing ()         { return m_useStrongIntraSmoothing; }
669
670  Void      setActiveParameterSetsSEIEnabled ( Int b )  { m_activeParameterSetsSEIEnabled = b; } 
671  Int       getActiveParameterSetsSEIEnabled ()         { return m_activeParameterSetsSEIEnabled; }
672  Bool      getVuiParametersPresentFlag()                 { return m_vuiParametersPresentFlag; }
673  Void      setVuiParametersPresentFlag(Bool i)           { m_vuiParametersPresentFlag = i; }
674  Bool      getAspectRatioInfoPresentFlag()               { return m_aspectRatioInfoPresentFlag; }
675  Void      setAspectRatioInfoPresentFlag(Bool i)         { m_aspectRatioInfoPresentFlag = i; }
676  Int       getAspectRatioIdc()                           { return m_aspectRatioIdc; }
677  Void      setAspectRatioIdc(Int i)                      { m_aspectRatioIdc = i; }
678  Int       getSarWidth()                                 { return m_sarWidth; }
679  Void      setSarWidth(Int i)                            { m_sarWidth = i; }
680  Int       getSarHeight()                                { return m_sarHeight; }
681  Void      setSarHeight(Int i)                           { m_sarHeight = i; }
682  Bool      getOverscanInfoPresentFlag()                  { return m_overscanInfoPresentFlag; }
683  Void      setOverscanInfoPresentFlag(Bool i)            { m_overscanInfoPresentFlag = i; }
684  Bool      getOverscanAppropriateFlag()                  { return m_overscanAppropriateFlag; }
685  Void      setOverscanAppropriateFlag(Bool i)            { m_overscanAppropriateFlag = i; }
686  Bool      getVideoSignalTypePresentFlag()               { return m_videoSignalTypePresentFlag; }
687  Void      setVideoSignalTypePresentFlag(Bool i)         { m_videoSignalTypePresentFlag = i; }
688  Int       getVideoFormat()                              { return m_videoFormat; }
689  Void      setVideoFormat(Int i)                         { m_videoFormat = i; }
690  Bool      getVideoFullRangeFlag()                       { return m_videoFullRangeFlag; }
691  Void      setVideoFullRangeFlag(Bool i)                 { m_videoFullRangeFlag = i; }
692  Bool      getColourDescriptionPresentFlag()             { return m_colourDescriptionPresentFlag; }
693  Void      setColourDescriptionPresentFlag(Bool i)       { m_colourDescriptionPresentFlag = i; }
694  Int       getColourPrimaries()                          { return m_colourPrimaries; }
695  Void      setColourPrimaries(Int i)                     { m_colourPrimaries = i; }
696  Int       getTransferCharacteristics()                  { return m_transferCharacteristics; }
697  Void      setTransferCharacteristics(Int i)             { m_transferCharacteristics = i; }
698  Int       getMatrixCoefficients()                       { return m_matrixCoefficients; }
699  Void      setMatrixCoefficients(Int i)                  { m_matrixCoefficients = i; }
700  Bool      getChromaLocInfoPresentFlag()                 { return m_chromaLocInfoPresentFlag; }
701  Void      setChromaLocInfoPresentFlag(Bool i)           { m_chromaLocInfoPresentFlag = i; }
702  Int       getChromaSampleLocTypeTopField()              { return m_chromaSampleLocTypeTopField; }
703  Void      setChromaSampleLocTypeTopField(Int i)         { m_chromaSampleLocTypeTopField = i; }
704  Int       getChromaSampleLocTypeBottomField()           { return m_chromaSampleLocTypeBottomField; }
705  Void      setChromaSampleLocTypeBottomField(Int i)      { m_chromaSampleLocTypeBottomField = i; }
706  Bool      getNeutralChromaIndicationFlag()              { return m_neutralChromaIndicationFlag; }
707  Void      setNeutralChromaIndicationFlag(Bool i)        { m_neutralChromaIndicationFlag = i; }
708  Window   &getDefaultDisplayWindow()                     { return m_defaultDisplayWindow; }
709  Void      setDefaultDisplayWindow (Int offsetLeft, Int offsetRight, Int offsetTop, Int offsetBottom ) { m_defaultDisplayWindow.setWindow (offsetLeft, offsetRight, offsetTop, offsetBottom); }
710  Bool      getFrameFieldInfoPresentFlag()                { return m_frameFieldInfoPresentFlag; }
711  Void      setFrameFieldInfoPresentFlag(Bool i)          { m_frameFieldInfoPresentFlag = i; } 
712  Bool      getPocProportionalToTimingFlag()              { return m_pocProportionalToTimingFlag; }
713  Void      setPocProportionalToTimingFlag(Bool x)        { m_pocProportionalToTimingFlag = x;    }
714  Int       getNumTicksPocDiffOneMinus1()                 { return m_numTicksPocDiffOneMinus1;    }
715  Void      setNumTicksPocDiffOneMinus1(Int x)            { m_numTicksPocDiffOneMinus1 = x;       }
716  Bool      getBitstreamRestrictionFlag()                 { return m_bitstreamRestrictionFlag; }
717  Void      setBitstreamRestrictionFlag(Bool i)           { m_bitstreamRestrictionFlag = i; }
718  Bool      getTilesFixedStructureFlag()                  { return m_tilesFixedStructureFlag; }
719  Void      setTilesFixedStructureFlag(Bool i)            { m_tilesFixedStructureFlag = i; }
720  Bool      getMotionVectorsOverPicBoundariesFlag()       { return m_motionVectorsOverPicBoundariesFlag; }
721  Void      setMotionVectorsOverPicBoundariesFlag(Bool i) { m_motionVectorsOverPicBoundariesFlag = i; }
722  Int       getMinSpatialSegmentationIdc()                { return m_minSpatialSegmentationIdc; }
723  Void      setMinSpatialSegmentationIdc(Int i)           { m_minSpatialSegmentationIdc = i; }
724  Int       getMaxBytesPerPicDenom()                      { return m_maxBytesPerPicDenom; }
725  Void      setMaxBytesPerPicDenom(Int i)                 { m_maxBytesPerPicDenom = i; }
726  Int       getMaxBitsPerMinCuDenom()                     { return m_maxBitsPerMinCuDenom; }
727  Void      setMaxBitsPerMinCuDenom(Int i)                { m_maxBitsPerMinCuDenom = i; }
728  Int       getLog2MaxMvLengthHorizontal()                { return m_log2MaxMvLengthHorizontal; }
729  Void      setLog2MaxMvLengthHorizontal(Int i)           { m_log2MaxMvLengthHorizontal = i; }
730  Int       getLog2MaxMvLengthVertical()                  { return m_log2MaxMvLengthVertical; }
731  Void      setLog2MaxMvLengthVertical(Int i)             { m_log2MaxMvLengthVertical = i; }
732 
733#if L0046_CONSTRAINT_FLAGS
734  Bool getProgressiveSourceFlag() const { return m_progressiveSourceFlag; }
735  Void setProgressiveSourceFlag(Bool b) { m_progressiveSourceFlag = b; }
736 
737  Bool getInterlacedSourceFlag() const { return m_interlacedSourceFlag; }
738  Void setInterlacedSourceFlag(Bool b) { m_interlacedSourceFlag = b; }
739 
740  Bool getNonPackedConstraintFlag() const { return m_nonPackedConstraintFlag; }
741  Void setNonPackedConstraintFlag(Bool b) { m_nonPackedConstraintFlag = b; }
742 
743  Bool getFrameOnlyConstraintFlag() const { return m_frameOnlyConstraintFlag; }
744  Void setFrameOnlyConstraintFlag(Bool b) { m_frameOnlyConstraintFlag = b; }
745#endif
746};
747
748//! \}
749
750#endif // !defined(AFX_TENCCFG_H__6B99B797_F4DA_4E46_8E78_7656339A6C41__INCLUDED_)
Note: See TracBrowser for help on using the repository browser.