source: SHVCSoftware/branches/HM-10.0-dev-SHM/source/Lib/TLibEncoder/TEncCfg.h @ 59

Last change on this file since 59 was 54, checked in by seregin, 12 years ago

port simulcast

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