source: 3DVCSoftware/branches/HTM-6.2-dev1-LG/source/Lib/TLibEncoder/TEncCfg.h

Last change on this file was 408, checked in by lg, 12 years ago

D0135->D0092->D0091

  • Property svn:eol-style set to native
File size: 38.2 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-2012, 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 <assert.h>
47
48struct GOPEntryMvc
49{
50  Int m_POC;
51  Int m_QPOffset;
52  Double m_QPFactor;
53  Int m_temporalId;
54  Bool m_refPic;
55  Int m_numRefPicsActive;
56  Char m_sliceType;
57  Int m_numRefPics;
58  Int m_referencePics[MAX_NUM_REF_PICS];
59  Int m_usedByCurrPic[MAX_NUM_REF_PICS];
60  Bool m_interRPSPrediction;
61  Int m_deltaRIdxMinus1;
62  Int m_deltaRPS;
63  Int m_numRefIdc;
64  Int m_refIdc[MAX_NUM_REF_PICS+1];
65  Int m_numInterViewRefPics;
66  Int m_interViewRefs[MAX_NUM_REF_PICS];
67  Int m_interViewRefPosL0[MAX_NUM_REF_PICS];
68  Int m_interViewRefPosL1[MAX_NUM_REF_PICS];
69 GOPEntryMvc()
70  : m_POC(-1)
71  , m_QPOffset()
72  , m_QPFactor()
73  , m_temporalId()
74  , m_refPic()
75  , m_numRefPicsActive()
76  , m_sliceType()
77  , m_numRefPics()
78  , m_interRPSPrediction()
79  , m_deltaRIdxMinus1()
80  , m_deltaRPS()
81  , m_numRefIdc()
82  , m_numInterViewRefPics()
83  {
84    ::memset( m_referencePics, 0, sizeof(m_referencePics) );
85    ::memset( m_usedByCurrPic, 0, sizeof(m_usedByCurrPic) );
86    ::memset( m_refIdc,        0, sizeof(m_refIdc) );
87    ::memset( m_interViewRefs,   0, sizeof(m_interViewRefs) );
88    ::memset( m_interViewRefPosL0, 0, sizeof(m_interViewRefPosL0) );
89    ::memset( m_interViewRefPosL1, 0, sizeof(m_interViewRefPosL1) );
90  }
91};
92
93std::istringstream &operator>>(std::istringstream &in, GOPEntryMvc &entry);
94
95//! \ingroup TLibEncoder
96//! \{
97
98// ====================================================================================================================
99// Class definition
100// ====================================================================================================================
101
102/// encoder configuration class
103class TEncCfg
104{
105protected:
106  //==== File I/O ========
107  Int       m_iFrameRate;
108  Int       m_FrameSkip;
109  Int       m_iSourceWidth;
110  Int       m_iSourceHeight;
111  Int       m_croppingMode;
112  Int       m_cropLeft;
113  Int       m_cropRight;
114  Int       m_cropTop;
115  Int       m_cropBottom;
116  Int       m_iFrameToBeEncoded;
117  Double    m_adLambdaModifier[ MAX_TLAYER ];
118
119  //====== Coding Structure ========
120  UInt      m_uiIntraPeriod;
121  UInt      m_uiDecodingRefreshType;            ///< the type of decoding refresh employed for the random access.
122  Int       m_iGOPSize;
123  GOPEntryMvc m_GOPList[MAX_GOP+1];
124  Int       m_extraRPSs;
125  Int       m_maxDecPicBuffering[MAX_TLAYER];
126  Int       m_numReorderPics[MAX_TLAYER];
127 
128  Int       m_iQP;                              //  if (AdaptiveQP == OFF)
129 
130  Int       m_aiTLayerQPOffset[MAX_TLAYER];
131  Int       m_aiPad[2];
132 
133
134  Int       m_iMaxRefPicNum;                     ///< this is used to mimic the sliding mechanism used by the decoder
135                                                 // TODO: We need to have a common sliding mechanism used by both the encoder and decoder
136
137  Int       m_maxTempLayer;                      ///< Max temporal layer
138  Bool      m_bDisInter4x4;
139  Bool m_useAMP;
140  //======= Transform =============
141  UInt      m_uiQuadtreeTULog2MaxSize;
142  UInt      m_uiQuadtreeTULog2MinSize;
143  UInt      m_uiQuadtreeTUMaxDepthInter;
144  UInt      m_uiQuadtreeTUMaxDepthIntra;
145 
146  Bool      m_useNSQT;
147 
148  //====== Loop/Deblock Filter ========
149  Bool      m_bLoopFilterDisable;
150  Bool      m_loopFilterOffsetInAPS;
151  Int       m_loopFilterBetaOffsetDiv2;
152  Int       m_loopFilterTcOffsetDiv2;
153  Bool      m_DeblockingFilterControlPresent;
154  Bool      m_bUseSAO;
155#if LGE_ILLUCOMP_B0045
156  Bool      m_bUseIC;
157#endif
158#if INTER_VIEW_VECTOR_SCALING_C0115
159  Bool      m_bUseIVS;
160#endif
161  Int       m_maxNumOffsetsPerPic;
162#if LGE_SAO_MIGRATION_D0091
163  Bool      m_saoLcuBoundary;
164  Bool      m_saoLcuBasedOptimization;
165#else
166  Bool      m_saoInterleavingFlag;
167#endif
168
169  //====== Lossless ========
170#if LOSSLESS_CODING
171  Bool      m_useLossless;
172#endif
173  //====== Motion search ========
174  Int       m_iFastSearch;                      //  0:Full search  1:Diamond  2:PMVFAST
175  Int       m_iSearchRange;                     //  0:Full frame
176  Int       m_bipredSearchRange;
177#if DV_V_RESTRICTION_B0037
178  Bool      m_bUseDisparitySearchRangeRestriction;
179  Int       m_iVerticalDisparitySearchRange;
180#endif
181  //====== Quality control ========
182  Int       m_iMaxDeltaQP;                      //  Max. absolute delta QP (1:default)
183  Int       m_iMaxCuDQPDepth;                   //  Max. depth for a minimum CuDQP (0:default)
184
185  Int       m_iChromaQpOffset  ;                //  ChromaQpOffset    (0:default)
186  Int       m_iChromaQpOffset2nd;               //  ChromaQpOffset2nd (0:default)
187
188#if ADAPTIVE_QP_SELECTION
189  Bool      m_bUseAdaptQpSelect;
190#endif
191
192  Bool      m_bUseAdaptiveQP;
193  Int       m_iQPAdaptationRange;
194 
195#if HHI_VSO
196  //====== View Synthesis Optimization ======
197  Bool      m_bUseVSO;
198  Bool      m_bForceLambdaScale;
199#if HHI_VSO_DIST_INT
200  Bool      m_bAllowNegDist;
201#endif
202  Double    m_dLambdaScaleVSO;
203  UInt      m_uiVSOMode;
204#if LGE_WVSO_A0119
205  Bool      m_bUseWVSO;
206  Int       m_iVSOWeight;
207  Int       m_iVSDWeight;
208  Int       m_iDWeight;
209#endif
210#endif
211#if SAIT_VSO_EST_A0033
212  Bool      m_bUseEstimatedVSD; 
213  Double    m_dDispCoeff;
214#endif
215
216
217  //====== Tool list ========
218  Bool      m_bUseSBACRD;
219  Bool      m_bUseALF;
220  Int       m_iALFEncodePassReduction;
221
222  Int       m_iALFMaxNumberFilters;
223  Bool      m_bALFParamInSlice;
224  Bool      m_bALFPicBasedEncode;
225
226  Bool      m_bUseASR;
227  Bool      m_bUseHADME;
228  Bool      m_bUseLComb;
229  Bool      m_bLCMod;
230  Bool      m_bUseRDOQ;
231  Bool      m_bUseFastEnc;
232  Bool      m_bUseEarlyCU;
233
234  Bool      m_useFastDecisionForMerge;
235  Bool      m_bUseCbfFastMode;
236  Bool      m_bUseLMChroma; 
237#if HHI_MPI
238  Bool      m_bUseMVI;
239#endif
240#if RWTH_SDC_DLT_B0036
241  Bool      m_bUseDLT;
242  Bool      m_bUseSDC;
243#endif
244
245  Int*      m_aidQP;
246  UInt      m_uiDeltaQpRD;
247 
248  Bool      m_bUseConstrainedIntraPred;
249  Bool      m_usePCM;
250  UInt      m_pcmLog2MaxSize;
251  UInt      m_uiPCMLog2MinSize;
252  //====== Slice ========
253  Int       m_iSliceMode;
254  Int       m_iSliceArgument; 
255  //====== Entropy Slice ========
256  Int       m_iEntropySliceMode;
257  Int       m_iEntropySliceArgument;
258  Int       m_iSliceGranularity;
259  Bool      m_bLFCrossSliceBoundaryFlag;
260
261  Bool      m_bPCMInputBitDepthFlag;
262  UInt      m_uiPCMBitDepthLuma;
263  UInt      m_uiPCMBitDepthChroma;
264  Bool      m_bPCMFilterDisableFlag;
265  Int       m_iTileBehaviorControlPresentFlag;
266  Bool      m_bLFCrossTileBoundaryFlag;
267  Int       m_iColumnRowInfoPresent;
268  Int       m_iUniformSpacingIdr;
269  Int       m_iNumColumnsMinus1;
270  UInt*     m_puiColumnWidth;
271  Int       m_iNumRowsMinus1;
272  UInt*     m_puiRowHeight;
273  Int       m_iTileLocationInSliceHeaderFlag; //< enable(1)/disable(0) transmitssion of tile location in slice header
274
275  Int       m_iTileMarkerFlag;              //< enable(1)/disable(0) transmitssion of light weight tile marker
276  Int       m_iMaxTileMarkerEntryPoints;    //< maximum number of tile markers allowed in a slice (controls degree of parallelism)
277  Double    m_dMaxTileMarkerOffset;         //< Calculated offset. Light weight tile markers will be transmitted for TileIdx= Offset, 2*Offset, 3*Offset ...
278
279  Int       m_iWaveFrontSynchro;
280  Int       m_iWaveFrontFlush;
281  Int       m_iWaveFrontSubstreams;
282
283  Bool      m_pictureDigestEnabled; ///< enable(1)/disable(0) md5 computation and SEI signalling
284
285  //====== Weighted Prediction ========
286  Bool      m_bUseWeightPred;       //< Use of Weighting Prediction (P_SLICE)
287  UInt      m_uiBiPredIdc;          //< Use of Bi-Directional Weighting Prediction (B_SLICE)
288  Int       m_useScalingListId;            ///< Using quantization matrix i.e. 0=off, 1=default, 2=file.
289  char*     m_scalingListFile;          ///< quantization matrix file name
290
291  Bool      m_bEnableTMVP;
292  Int       m_signHideFlag;
293  Int       m_signHidingThreshold;
294
295#if VIDYO_VPS_INTEGRATION|QC_MVHEVC_B0046
296  UInt     m_layerId;
297#endif
298 
299  Int      m_viewId;
300  Bool     m_isDepth;
301
302#if HHI_INTERVIEW_SKIP
303  Bool        m_bInterViewSkip;
304#if HHI_INTERVIEW_SKIP_LAMBDA_SCALE
305  Double      m_dInterViewSkipLambdaScale;
306#endif
307#endif
308#if HHI_DMM_WEDGE_INTRA || HHI_DMM_PRED_TEX
309  Bool     m_bUseDMM;
310#endif
311
312#if HHI_DMM_PRED_TEX && FLEX_CODING_ORDER_M23723
313  Bool m_bUseDMM34;
314#endif
315
316#if H3D_QTL
317  Bool     m_bUseQTLPC;
318#endif
319
320  Int      m_iViewOrderIdx;
321
322  UInt     m_uiCamParPrecision;
323  Bool     m_bCamParInSliceHeader;
324  Int**    m_aaiCodedScale;
325  Int**    m_aaiCodedOffset;
326
327#if DEPTH_MAP_GENERATION
328  UInt     m_uiPredDepthMapGeneration;
329  UInt     m_uiPdmPrecision;
330  Int**    m_aaiPdmScaleNomDelta;
331  Int**    m_aaiPdmOffset;
332#endif
333
334#if H3D_IVMP
335  UInt        m_uiMultiviewMvPredMode;
336  UInt        m_uiMultiviewMvRegMode;
337  Double      m_dMultiviewMvRegLambdaScale;
338#endif
339#if H3D_IVRP
340  UInt        m_uiMultiviewResPredMode;
341#endif
342
343#if MTK_D0156
344
345#if MERL_VSP_COMPENSATION_C0152
346  Bool      m_bUseVSPCompensation;
347#endif
348  Bool      m_bUseDVPRefine;
349#endif
350
351public:
352  TEncCfg()          {}
353  virtual ~TEncCfg()
354  {
355    if( m_iUniformSpacingIdr == 0 )
356    {
357      if( m_iNumColumnsMinus1 )
358      { 
359        delete[] m_puiColumnWidth; 
360        m_puiColumnWidth = NULL;
361      }
362      if( m_iNumRowsMinus1 )
363      {
364        delete[] m_puiRowHeight;
365        m_puiRowHeight = NULL;
366      }
367    }
368    m_iTileLocationInSliceHeaderFlag = 0;
369    m_iTileMarkerFlag              = 0;
370  }
371 
372  Void      setFrameRate                    ( Int   i )      { m_iFrameRate = i; }
373  Void      setFrameSkip                    ( unsigned int i ) { m_FrameSkip = i; }
374  Void      setSourceWidth                  ( Int   i )      { m_iSourceWidth = i; }
375  Void      setSourceHeight                 ( Int   i )      { m_iSourceHeight = i; }
376  Void      setCroppingMode                 ( Int   i )      { m_croppingMode = i; }
377  Void      setCropLeft                     ( Int   i )      { m_cropLeft = i; }
378  Void      setCropRight                    ( Int   i )      { m_cropRight = i; }
379  Void      setCropTop                      ( Int   i )      { m_cropTop = i; }
380  Void      setCropBottom                   ( Int   i )      { m_cropBottom = i; }
381  Void      setFrameToBeEncoded             ( Int   i )      { m_iFrameToBeEncoded = i; }
382 
383  //====== Coding Structure ========
384  Void      setIntraPeriod                  ( Int   i )      { m_uiIntraPeriod = (UInt)i; }
385  Void      setDecodingRefreshType          ( Int   i )      { m_uiDecodingRefreshType = (UInt)i; }
386  Void      setGOPSize                      ( Int   i )      { m_iGOPSize = i; }
387  Void      setGopList                      ( GOPEntryMvc* GOPList ) { for( Int i = 0; i < MAX_GOP+1; i++ ) m_GOPList[i] = GOPList[i]; }
388  Void      setExtraRPSs                    ( Int   i )      { m_extraRPSs = i; }
389  GOPEntryMvc getGOPEntry                   ( Int   i )      { return m_GOPList[i]; }
390  Void      setMaxDecPicBuffering           ( UInt u, UInt tlayer ) { m_maxDecPicBuffering[tlayer] = u;    }
391  Void      setNumReorderPics               ( Int  i, UInt tlayer ) { m_numReorderPics[tlayer] = i;    }
392 
393#if HHI_INTERVIEW_SKIP
394  Void      setInterViewSkip            ( UInt  u )       { m_bInterViewSkip         = u; }
395  Bool      getInterViewSkip            ( )       { return m_bInterViewSkip  ;}
396#if HHI_INTERVIEW_SKIP_LAMBDA_SCALE
397  Void      setInterViewSkipLambdaScale ( UInt  u )       { m_dInterViewSkipLambdaScale = u; }
398  Double      getInterViewSkipLambdaScale ()                { return m_dInterViewSkipLambdaScale; }
399#endif
400#endif
401  Void      setQP                           ( Int   i )      { m_iQP = i; }
402 
403  Void      setTemporalLayerQPOffset        ( Int*  piTemporalLayerQPOffset )      { for ( Int i = 0; i < MAX_TLAYER; i++ ) m_aiTLayerQPOffset[i] = piTemporalLayerQPOffset[i]; }
404  Void      setPad                          ( Int*  iPad                   )      { for ( Int i = 0; i < 2; i++ ) m_aiPad[i] = iPad[i]; }
405 
406  Int       getMaxRefPicNum                 ()                              { return m_iMaxRefPicNum;           }
407  Void      setMaxRefPicNum                 ( Int iMaxRefPicNum )           { m_iMaxRefPicNum = iMaxRefPicNum;  }
408
409  Bool      getMaxTempLayer                 ()                              { return m_maxTempLayer;              } 
410  Void      setMaxTempLayer                 ( Int maxTempLayer )            { m_maxTempLayer = maxTempLayer;      }
411
412  Bool      getDisInter4x4                  ()              { return m_bDisInter4x4;        }
413  Void      setDisInter4x4                  ( Bool b )      { m_bDisInter4x4  = b;          }
414  Bool      isDepthCoder                    ()               { return m_isDepth; }
415 
416#if DEPTH_MAP_GENERATION
417  Void      setPredDepthMapGeneration       ( UInt  u )      { m_uiPredDepthMapGeneration   = u; }
418  Void      setPdmPrecision                 ( UInt  u )      { m_uiPdmPrecision             = u; }
419  Void      setPdmScaleNomDelta             ( Int** p )      { m_aaiPdmScaleNomDelta        = p; }
420  Void      setPdmOffset                    ( Int** p )      { m_aaiPdmOffset               = p; }
421#endif
422
423#if H3D_IVMP
424  Void      setMultiviewMvPredMode          ( UInt  u )      { m_uiMultiviewMvPredMode      = u; }
425  Void      setMultiviewMvRegMode           ( UInt  u )      { m_uiMultiviewMvRegMode       = u; }
426  Void      setMultiviewMvRegLambdaScale    ( Double d)      { m_dMultiviewMvRegLambdaScale = d; }
427#endif
428#if H3D_IVRP
429  Void      setMultiviewResPredMode         ( UInt  u )      { m_uiMultiviewResPredMode     = u; }
430#endif
431 
432  //======== Transform =============
433  Void      setQuadtreeTULog2MaxSize        ( UInt  u )      { m_uiQuadtreeTULog2MaxSize = u; }
434  Void      setQuadtreeTULog2MinSize        ( UInt  u )      { m_uiQuadtreeTULog2MinSize = u; }
435  Void      setQuadtreeTUMaxDepthInter      ( UInt  u )      { m_uiQuadtreeTUMaxDepthInter = u; }
436  Void      setQuadtreeTUMaxDepthIntra      ( UInt  u )      { m_uiQuadtreeTUMaxDepthIntra = u; }
437 
438  Void setUseNSQT( Bool b ) { m_useNSQT = b; }
439  Void setUseAMP( Bool b ) { m_useAMP = b; }
440 
441  //====== Loop/Deblock Filter ========
442  Void      setLoopFilterDisable            ( Bool  b )      { m_bLoopFilterDisable       = b; }
443  Void      setLoopFilterOffsetInAPS        ( Bool  b )      { m_loopFilterOffsetInAPS      = b; }
444  Void      setLoopFilterBetaOffset         ( Int   i )      { m_loopFilterBetaOffsetDiv2  = i; }
445  Void      setLoopFilterTcOffset           ( Int   i )      { m_loopFilterTcOffsetDiv2    = i; }
446  Void      setDeblockingFilterControlPresent ( Bool b ) { m_DeblockingFilterControlPresent = b; }
447
448  //====== Motion search ========
449  Void      setFastSearch                   ( Int   i )      { m_iFastSearch = i; }
450  Void      setSearchRange                  ( Int   i )      { m_iSearchRange = i; }
451  Void      setBipredSearchRange            ( Int   i )      { m_bipredSearchRange = i; }
452#if DV_V_RESTRICTION_B0037
453  Void      setUseDisparitySearchRangeRestriction ( Bool   b )      { m_bUseDisparitySearchRangeRestriction = b; }
454  Void      setVerticalDisparitySearchRange ( Int   i )      { m_iVerticalDisparitySearchRange = i; }
455#endif
456#if H3D_IVMP
457  UInt      getMultiviewMvRegMode           ()      { return  m_uiMultiviewMvRegMode; }
458  Double    getMultiviewMvRegLambdaScale    ()      { return  m_dMultiviewMvRegLambdaScale; }
459#endif
460
461#if HHI_VSO
462 //==== VSO  ==========
463  Void      setVSOMode                      ( UInt  ui )    { m_uiVSOMode   = ui; }
464  Void      setForceLambdaScaleVSO          ( Bool  b )     { m_bForceLambdaScale = b; };
465  Void      setLambdaScaleVSO               ( Double d )    { m_dLambdaScaleVSO   = d; };
466#if HHI_VSO_DIST_INT
467  Void      setAllowNegDist                 ( Bool b  )     { m_bAllowNegDist     = b; };
468#endif
469#if LGE_WVSO_A0119
470  Void      setUseWVSO                      ( Bool  b )     { m_bUseWVSO   = b; }
471  Void      setVSOWeight                    ( Int   i )     { m_iVSOWeight = i; }
472  Void      setVSDWeight                    ( Int   i )     { m_iVSDWeight = i; }
473  Void      setDWeight                      ( Int   i )     { m_iDWeight   = i; }
474#endif
475#endif
476
477  //====== Quality control ========
478  Void      setMaxDeltaQP                   ( Int   i )      { m_iMaxDeltaQP = i; }
479  Void      setMaxCuDQPDepth                ( Int   i )      { m_iMaxCuDQPDepth = i; }
480
481  Void      setChromaQpOffset               ( Int   i ) { m_iChromaQpOffset    = i; }
482  Void      setChromaQpOffset2nd            ( Int   i ) { m_iChromaQpOffset2nd = i; }
483
484#if ADAPTIVE_QP_SELECTION
485  Void      setUseAdaptQpSelect             ( Bool   i ) { m_bUseAdaptQpSelect    = i; }
486  Bool      getUseAdaptQpSelect             ()           { return   m_bUseAdaptQpSelect; }
487#endif
488
489  Void      setUseAdaptiveQP                ( Bool  b )      { m_bUseAdaptiveQP = b; }
490  Void      setQPAdaptationRange            ( Int   i )      { m_iQPAdaptationRange = i; }
491 
492  //====== Lossless ========
493#if LOSSLESS_CODING
494  Void      setUseLossless                  (Bool    b  )        { m_useLossless = b;  }
495#endif
496  //====== Sequence ========
497  Int       getFrameRate                    ()      { return  m_iFrameRate; }
498  unsigned int getFrameSkip                 ()      { return  m_FrameSkip; }
499  Int       getSourceWidth                  ()      { return  m_iSourceWidth; }
500  Int       getSourceHeight                 ()      { return  m_iSourceHeight; }
501  Int       getCroppingMode                 ()      { return  m_croppingMode; }
502  Int       getCropLeft                     ()      { return  m_cropLeft; }
503  Int       getCropRight                    ()      { return  m_cropRight; }
504  Int       getCropTop                      ()      { return  m_cropTop; }
505  Int       getCropBottom                   ()      { return  m_cropBottom; }
506  Int       getFrameToBeEncoded             ()      { return  m_iFrameToBeEncoded; }
507  void setLambdaModifier                    ( UInt uiIndex, Double dValue ) { m_adLambdaModifier[ uiIndex ] = dValue; }
508  Double getLambdaModifier                  ( UInt uiIndex ) const { return m_adLambdaModifier[ uiIndex ]; }
509
510  //==== Coding Structure ========
511  UInt      getIntraPeriod                  ()      { return  m_uiIntraPeriod; }
512  UInt      getDecodingRefreshType          ()      { return  m_uiDecodingRefreshType; }
513  Int       getGOPSize                      ()      { return  m_iGOPSize; }
514  Int       getMaxDecPicBuffering           (UInt tlayer) { return m_maxDecPicBuffering[tlayer]; }
515  Int       getNumReorderPics               (UInt tlayer) { return m_numReorderPics[tlayer]; }
516  Int       getQP                           ()      { return  m_iQP; }
517 
518  Int       getTemporalLayerQPOffset        ( Int i )      { assert (i < MAX_TLAYER ); return  m_aiTLayerQPOffset[i]; }
519  Int       getPad                          ( Int i )      { assert (i < 2 );                      return  m_aiPad[i]; }
520 
521  //======== Transform =============
522  UInt      getQuadtreeTULog2MaxSize        ()      const { return m_uiQuadtreeTULog2MaxSize; }
523  UInt      getQuadtreeTULog2MinSize        ()      const { return m_uiQuadtreeTULog2MinSize; }
524  UInt      getQuadtreeTUMaxDepthInter      ()      const { return m_uiQuadtreeTUMaxDepthInter; }
525  UInt      getQuadtreeTUMaxDepthIntra      ()      const { return m_uiQuadtreeTUMaxDepthIntra; }
526 
527  //==== Loop/Deblock Filter ========
528  Bool      getLoopFilterDisable            ()      { return  m_bLoopFilterDisable;       }
529  Bool      getLoopFilterOffsetInAPS        ()      { return m_loopFilterOffsetInAPS; }
530  Int       getLoopFilterBetaOffset         ()      { return m_loopFilterBetaOffsetDiv2; }
531  Int       getLoopFilterTcOffset           ()      { return m_loopFilterTcOffsetDiv2; }
532  Bool      getDeblockingFilterControlPresent()  { return  m_DeblockingFilterControlPresent; }
533
534  //==== Motion search ========
535  Int       getFastSearch                   ()      { return  m_iFastSearch; }
536  Int       getSearchRange                  ()      { return  m_iSearchRange; }
537#if DV_V_RESTRICTION_B0037
538  Bool      getUseDisparitySearchRangeRestriction ()      { return  m_bUseDisparitySearchRangeRestriction; }
539  Int       getVerticalDisparitySearchRange ()      { return  m_iVerticalDisparitySearchRange; }
540#endif
541#if HHI_VSO
542  //==== VSO  ==========
543  UInt      getVSOMode                      ()      { return m_uiVSOMode; }
544  Bool      getForceLambdaScaleVSO          ()      { return m_bForceLambdaScale; }
545  Double    getLambdaScaleVSO               ()      { return m_dLambdaScaleVSO;   }
546#if HHI_VSO_DIST_INT
547  Bool      getAllowNegDist                 ()      { return m_bAllowNegDist;     }
548#endif
549#if LGE_WVSO_A0119
550  Bool      getUseWVSO                      ()      { return m_bUseWVSO;     }
551  Int       getVSOWeight                    ()      { return m_iVSOWeight;    }
552  Int       getVSDWeight                    ()      { return m_iVSDWeight;    }
553  Int       getDWeight                      ()      { return m_iDWeight;    }
554#endif
555#endif
556
557  //==== Quality control ========
558  Int       getMaxDeltaQP                   ()      { return  m_iMaxDeltaQP; }
559  Int       getMaxCuDQPDepth                ()      { return  m_iMaxCuDQPDepth; }
560  Bool      getUseAdaptiveQP                ()      { return  m_bUseAdaptiveQP; }
561  Int       getQPAdaptationRange            ()      { return  m_iQPAdaptationRange; }
562  //====== Lossless ========
563#if LOSSLESS_CODING
564  Bool      getUseLossless                  ()      { return  m_useLossless;  }
565#endif
566 
567  //==== Tool list ========
568  Void      setUseSBACRD                    ( Bool  b )     { m_bUseSBACRD  = b; }
569  Void      setUseASR                       ( Bool  b )     { m_bUseASR     = b; }
570  Void      setUseHADME                     ( Bool  b )     { m_bUseHADME   = b; }
571  Void      setUseALF                       ( Bool  b )     { m_bUseALF   = b; }
572  Void      setUseLComb                     ( Bool  b )     { m_bUseLComb   = b; }
573  Void      setLCMod                        ( Bool  b )     { m_bLCMod   = b;    }
574  Void      setUseRDOQ                      ( Bool  b )     { m_bUseRDOQ    = b; }
575#if HHI_VSO
576  Void      setUseVSO                       ( Bool  b )     { m_bUseVSO     = b; }
577#endif
578
579#if SAIT_VSO_EST_A0033
580  Void      setUseEstimatedVSD              ( Bool  b )     { m_bUseEstimatedVSD = b; }
581  Void      setDispCoeff                    ( Double  d )   { m_dDispCoeff  = d; }
582#endif
583
584  Void      setUseFastEnc                   ( Bool  b )     { m_bUseFastEnc = b; }
585  Void      setUseEarlyCU                   ( Bool  b )     { m_bUseEarlyCU = b; }
586  Void      setUseFastDecisionForMerge      ( Bool  b )     { m_useFastDecisionForMerge = b; }
587  Void      setUseCbfFastMode            ( Bool  b )     { m_bUseCbfFastMode = b; }
588  Void      setUseConstrainedIntraPred      ( Bool  b )     { m_bUseConstrainedIntraPred = b; }
589  Void      setPCMInputBitDepthFlag         ( Bool  b )     { m_bPCMInputBitDepthFlag = b; }
590  Void      setPCMFilterDisableFlag         ( Bool  b )     {  m_bPCMFilterDisableFlag = b; }
591  Void      setUsePCM                       ( Bool  b )     {  m_usePCM = b;               }
592  Void      setPCMLog2MaxSize               ( UInt u )      { m_pcmLog2MaxSize = u;      }
593  Void      setPCMLog2MinSize               ( UInt u )     { m_uiPCMLog2MinSize = u;      }
594  Void      setdQPs                         ( Int*  p )     { m_aidQP       = p; }
595  Void      setDeltaQpRD                    ( UInt  u )     {m_uiDeltaQpRD  = u; }
596  Bool      getUseSBACRD                    ()      { return m_bUseSBACRD;  }
597  Bool      getUseASR                       ()      { return m_bUseASR;     }
598  Bool      getUseHADME                     ()      { return m_bUseHADME;   }
599  Bool      getUseALF                       ()      { return m_bUseALF;     }
600  Void      setALFEncodePassReduction       (Int i)  { m_iALFEncodePassReduction = i; }
601  Int       getALFEncodePassReduction       ()       { return m_iALFEncodePassReduction; }
602
603  Void      setALFMaxNumberFilters          (Int i)  { m_iALFMaxNumberFilters = i; } 
604  Int       getALFMaxNumberFilters          ()       { return m_iALFMaxNumberFilters; } 
605  Void      setALFParamInSlice              (Bool b) {m_bALFParamInSlice = b;}
606  Bool      getALFParamInSlice              ()       {return m_bALFParamInSlice;}
607  Void      setALFPicBasedEncode            (Bool b) {m_bALFPicBasedEncode = b;}
608  Bool      getALFPicBasedEncode            ()       {return m_bALFPicBasedEncode;}
609
610  Bool      getUseLComb                     ()      { return m_bUseLComb;   }
611  Bool      getLCMod                        ()      { return m_bLCMod; }
612  Bool      getUseRDOQ                      ()      { return m_bUseRDOQ;    }
613
614#if HHI_VSO
615  Bool      getUseVSO                       ()      { return m_bUseVSO;     }
616#endif
617#if SAIT_VSO_EST_A0033
618  Bool      getUseEstimatedVSD              ()      { return m_bUseEstimatedVSD; }
619  Double    getDispCoeff                    ()      { return m_dDispCoeff;    }
620#endif
621
622  Bool      getUseFastEnc                   ()      { return m_bUseFastEnc; }
623  Bool      getUseEarlyCU                   ()      { return m_bUseEarlyCU; }
624  Bool      getUseFastDecisionForMerge      ()      { return m_useFastDecisionForMerge; }
625  Bool      getUseCbfFastMode           ()      { return m_bUseCbfFastMode; }
626  Bool      getUseConstrainedIntraPred      ()      { return m_bUseConstrainedIntraPred; }
627#if NS_HAD
628  Bool      getUseNSQT                      ()      { return m_useNSQT; }
629#endif
630  Bool      getPCMInputBitDepthFlag         ()      { return m_bPCMInputBitDepthFlag;   } 
631  Bool      getPCMFilterDisableFlag         ()      { return m_bPCMFilterDisableFlag;   } 
632  Bool      getUsePCM                       ()      { return m_usePCM;                 }
633  UInt      getPCMLog2MaxSize               ()      { return m_pcmLog2MaxSize;  }
634  UInt      getPCMLog2MinSize               ()      { return  m_uiPCMLog2MinSize;  }
635
636  Bool getUseLMChroma                       ()      { return m_bUseLMChroma;        }
637  Void setUseLMChroma                       ( Bool b ) { m_bUseLMChroma  = b;       }
638
639  Int*      getdQPs                         ()      { return m_aidQP;       }
640  UInt      getDeltaQpRD                    ()      { return m_uiDeltaQpRD; }
641
642  //====== Slice ========
643  Void  setSliceMode                   ( Int  i )       { m_iSliceMode = i;              }
644  Void  setSliceArgument               ( Int  i )       { m_iSliceArgument = i;          }
645  Int   getSliceMode                   ()              { return m_iSliceMode;           }
646  Int   getSliceArgument               ()              { return m_iSliceArgument;       }
647  //====== Entropy Slice ========
648  Void  setEntropySliceMode            ( Int  i )      { m_iEntropySliceMode = i;       }
649  Void  setEntropySliceArgument        ( Int  i )      { m_iEntropySliceArgument = i;   }
650  Int   getEntropySliceMode            ()              { return m_iEntropySliceMode;    }
651  Int   getEntropySliceArgument        ()              { return m_iEntropySliceArgument;}
652  Void  setSliceGranularity            ( Int  i )      { m_iSliceGranularity = i;       }
653  Int   getSliceGranularity            ()              { return m_iSliceGranularity;    }
654  Void  setLFCrossSliceBoundaryFlag    ( Bool   bValue  )    { m_bLFCrossSliceBoundaryFlag = bValue; }
655  Bool  getLFCrossSliceBoundaryFlag    ()                    { return m_bLFCrossSliceBoundaryFlag;   }
656
657#if HHI_MPI
658  Void  setUseMVI                      ( Bool bVal )   {m_bUseMVI = bVal;}
659#endif
660#if RWTH_SDC_DLT_B0036
661  Void  setUseDLT                       ( Bool  b )     { m_bUseDLT   = b; }
662  Void  setUseSDC                       ( Bool  b )     { m_bUseSDC   = b; }
663#endif
664  Void  setUseSAO                      ( Bool bVal )   {m_bUseSAO = bVal;}
665  Bool  getUseSAO                      ()              {return m_bUseSAO;}
666#if LGE_ILLUCOMP_B0045
667  Void  setUseIC                       ( Bool bVal )   {m_bUseIC = bVal;}
668  Bool  getUseIC                       ()              {return m_bUseIC;}
669#endif
670#if INTER_VIEW_VECTOR_SCALING_C0115
671  Void  setUseIVS                       ( Bool bVal )   {m_bUseIVS = bVal;}
672  Bool  getUseIVS                       ()              {return m_bUseIVS;}
673#endif
674  Void  setMaxNumOffsetsPerPic                   (Int iVal)            { m_maxNumOffsetsPerPic = iVal; }
675  Int   getMaxNumOffsetsPerPic                   ()                    { return m_maxNumOffsetsPerPic; }
676#if LGE_SAO_MIGRATION_D0091
677  Void  setSaoLcuBoundary              (Bool val)      { m_saoLcuBoundary = val; }
678  Bool  getSaoLcuBoundary              ()              { return m_saoLcuBoundary; }
679  Void  setSaoLcuBasedOptimization               (Bool val)            { m_saoLcuBasedOptimization = val; }
680  Bool  getSaoLcuBasedOptimization               ()                    { return m_saoLcuBasedOptimization; }
681#else
682  Void  setSaoInterleavingFlag                   (bool bVal)           { m_saoInterleavingFlag = bVal; }
683  Bool  getSaoInterleavingFlag                   ()                    { return m_saoInterleavingFlag; }
684#endif
685  Void  setTileBehaviorControlPresentFlag        ( Int i )             { m_iTileBehaviorControlPresentFlag = i;    }
686  Int   getTileBehaviorControlPresentFlag        ()                    { return m_iTileBehaviorControlPresentFlag; }
687  Void  setLFCrossTileBoundaryFlag               ( Bool   bValue  )    { m_bLFCrossTileBoundaryFlag = bValue; }
688  Bool  getLFCrossTileBoundaryFlag               ()                    { return m_bLFCrossTileBoundaryFlag;   }
689  Void  setColumnRowInfoPresent        ( Int i )           { m_iColumnRowInfoPresent = i; }
690  Int   getColumnRowInfoPresent        ()                  { return m_iColumnRowInfoPresent; }
691  Void  setUniformSpacingIdr           ( Int i )           { m_iUniformSpacingIdr = i; }
692  Int   getUniformSpacingIdr           ()                  { return m_iUniformSpacingIdr; }
693  Void  setNumColumnsMinus1            ( Int i )           { m_iNumColumnsMinus1 = i; }
694  Int   getNumColumnsMinus1            ()                  { return m_iNumColumnsMinus1; }
695  Void  setColumnWidth ( char* str )
696  {
697    char *columnWidth;
698    int  i=0;
699    Int  m_iWidthInCU = ( m_iSourceWidth%g_uiMaxCUWidth ) ? m_iSourceWidth/g_uiMaxCUWidth + 1 : m_iSourceWidth/g_uiMaxCUWidth;
700
701    if( m_iUniformSpacingIdr == 0 && m_iNumColumnsMinus1 > 0 )
702    {
703      m_puiColumnWidth = new UInt[m_iNumColumnsMinus1];
704
705      columnWidth = strtok(str, " ,-");
706      while(columnWidth!=NULL)
707      {
708        if( i>=m_iNumColumnsMinus1 )
709        {
710          printf( "The number of columns whose width are defined is larger than the allowed number of columns.\n" );
711          exit( EXIT_FAILURE );
712        }
713        *( m_puiColumnWidth + i ) = atoi( columnWidth );
714        printf("col: m_iWidthInCU= %4d i=%4d width= %4d\n",m_iWidthInCU,i,m_puiColumnWidth[i]); //AFU
715        columnWidth = strtok(NULL, " ,-");
716        i++;
717      }
718      if( i<m_iNumColumnsMinus1 )
719      {
720        printf( "The width of some columns is not defined.\n" );
721        exit( EXIT_FAILURE );
722      }
723    }
724  }
725  UInt  getColumnWidth                 ( UInt columnidx )  { return *( m_puiColumnWidth + columnidx ); }
726  Void  setNumRowsMinus1               ( Int i )           { m_iNumRowsMinus1 = i; }
727  Int   getNumRowsMinus1               ()                  { return m_iNumRowsMinus1; }
728  Void  setRowHeight (char* str)
729  {
730    char *rowHeight;
731    int  i=0;
732    Int  m_iHeightInCU = ( m_iSourceHeight%g_uiMaxCUHeight ) ? m_iSourceHeight/g_uiMaxCUHeight + 1 : m_iSourceHeight/g_uiMaxCUHeight;
733
734    if( m_iUniformSpacingIdr == 0 && m_iNumRowsMinus1 > 0 )
735    {
736      m_puiRowHeight = new UInt[m_iNumRowsMinus1];
737
738      rowHeight = strtok(str, " ,-");
739      while(rowHeight!=NULL)
740      {
741        if( i>=m_iNumRowsMinus1 )
742        {
743          printf( "The number of rows whose height are defined is larger than the allowed number of rows.\n" );
744          exit( EXIT_FAILURE );
745        }
746        *( m_puiRowHeight + i ) = atoi( rowHeight );
747        printf("row: m_iHeightInCU=%4d i=%4d height=%4d\n",m_iHeightInCU,i,m_puiRowHeight[i]); //AFU
748        rowHeight = strtok(NULL, " ,-");
749        i++;
750      }
751      if( i<m_iNumRowsMinus1 )
752      {
753        printf( "The height of some rows is not defined.\n" );
754        exit( EXIT_FAILURE );
755     }
756    }
757  }
758  UInt  getRowHeight                   ( UInt rowIdx )     { return *( m_puiRowHeight + rowIdx ); }
759  Void  xCheckGSParameters();
760  Int  getTileLocationInSliceHeaderFlag ()                 { return m_iTileLocationInSliceHeaderFlag; }
761  Void setTileLocationInSliceHeaderFlag ( Int iFlag )      { m_iTileLocationInSliceHeaderFlag = iFlag;}
762  Int  getTileMarkerFlag              ()                 { return m_iTileMarkerFlag;              }
763  Void setTileMarkerFlag              ( Int iFlag )      { m_iTileMarkerFlag = iFlag;             }
764  Int  getMaxTileMarkerEntryPoints    ()                 { return m_iMaxTileMarkerEntryPoints;    }
765  Void setMaxTileMarkerEntryPoints    ( Int iCount )     { m_iMaxTileMarkerEntryPoints = iCount;  }
766  Double getMaxTileMarkerOffset       ()                 { return m_dMaxTileMarkerOffset;         }
767  Void setMaxTileMarkerOffset         ( Double dCount )  { m_dMaxTileMarkerOffset = dCount;       }
768  Void  setWaveFrontSynchro(Int iWaveFrontSynchro)       { m_iWaveFrontSynchro = iWaveFrontSynchro; }
769  Int   getWaveFrontsynchro()                            { return m_iWaveFrontSynchro; }
770  Void  setWaveFrontFlush(Int iWaveFrontFlush)           { m_iWaveFrontFlush = iWaveFrontFlush; }
771  Int   getWaveFrontFlush()                              { return m_iWaveFrontFlush; }
772  Void  setWaveFrontSubstreams(Int iWaveFrontSubstreams) { m_iWaveFrontSubstreams = iWaveFrontSubstreams; }
773  Int   getWaveFrontSubstreams()                         { return m_iWaveFrontSubstreams; }
774  void setPictureDigestEnabled(bool b) { m_pictureDigestEnabled = b; }
775  bool getPictureDigestEnabled() { return m_pictureDigestEnabled; }
776
777  Void      setUseWP               ( Bool  b )   { m_bUseWeightPred    = b;    }
778  Void      setWPBiPredIdc         ( UInt u )    { m_uiBiPredIdc       = u;    }
779  Bool      getUseWP               ()            { return m_bUseWeightPred;    }
780  UInt      getWPBiPredIdc         ()            { return m_uiBiPredIdc;       }
781  Void      setUseScalingListId    ( Int  u )    { m_useScalingListId       = u;   }
782  Int       getUseScalingListId    ()            { return m_useScalingListId;      }
783  Void      setScalingListFile     ( char*  pch ){ m_scalingListFile     = pch; }
784  char*     getScalingListFile     ()            { return m_scalingListFile;    }
785
786  Void      setEnableTMVP          ( Bool b )    { m_bEnableTMVP = b;    }
787  Bool      getEnableTMVP          ()            { return m_bEnableTMVP; }
788  Void      setSignHideFlag( Int signHideFlag )  { m_signHideFlag = signHideFlag; }
789  Void      setTSIG( Int tsig )                  { m_signHidingThreshold = tsig; }
790  Int       getSignHideFlag()                    { return m_signHideFlag; }
791  Int       getTSIG()                            { return m_signHidingThreshold; }
792#if VIDYO_VPS_INTEGRATION |QC_MVHEVC_B0046
793  Void      setLayerId             ( UInt layerId )   { m_layerId = layerId; }
794  UInt      getLayerId             ()               { return m_layerId; }
795#endif
796
797  Void      setViewId             ( Int viewId )   { m_viewId = viewId; }
798  Int       getViewId             ()               { return m_viewId; }
799  Void      setIsDepth            ( Bool isDepth ) { m_isDepth = isDepth; }
800  Bool      getIsDepth            ()               { return m_isDepth; }
801
802#if HHI_DMM_WEDGE_INTRA || HHI_DMM_PRED_TEX
803  Void      setUseDMM( Bool b) { m_bUseDMM = b;    }
804  Bool      getUseDMM()        { return m_bUseDMM; }
805#endif
806
807#if HHI_DMM_PRED_TEX && FLEX_CODING_ORDER_M23723
808  Void setUseDMM34( Bool b) { m_bUseDMM34 = b;    }
809  Bool getUseDMM34()        { return m_bUseDMM34; }
810#endif
811
812#if H3D_QTL
813  Void      setUseQTLPC( Bool b ) { m_bUseQTLPC = b;    }
814  Bool      getUseQTLPC()         { return m_bUseQTLPC; }
815#endif
816 
817#if RWTH_SDC_DLT_B0036
818  Bool      getUseDLT()      { return m_bUseDLT;     }
819  Bool      getUseSDC()      { return m_bUseSDC;     }
820#endif
821
822  Void      setViewOrderIdx       ( Int   i )      { m_iViewOrderIdx          = i; }
823  Void      setCamParPrecision              ( UInt  u )      { m_uiCamParPrecision      = u; }
824  Void      setCamParInSliceHeader          ( Bool  b )      { m_bCamParInSliceHeader   = b; }
825  Void      setCodedScale                   ( Int** p )      { m_aaiCodedScale          = p; }
826  Void      setCodedOffset                  ( Int** p )      { m_aaiCodedOffset         = p; }
827
828#if INTER_VIEW_VECTOR_SCALING_C0115
829  Int       getViewOrderIdx                 ()      { return  m_iViewOrderIdx; }    // will be changed to view_id
830#endif
831
832#if MTK_D0156
833
834#if MERL_VSP_COMPENSATION_C0152
835  Bool    getUseVSPCompensation( ){  return m_bUseVSPCompensation;}
836  Void    setUseVSPCompensation( Bool bValue ){ m_bUseVSPCompensation = bValue;}
837#endif
838
839
840  Bool    getUseDVPRefine( ){  return m_bUseDVPRefine;}
841  Void    setUseDVPRefine( Bool bValue ){ m_bUseDVPRefine = bValue;}
842#endif
843
844};
845
846//! \}
847
848#endif // !defined(AFX_TENCCFG_H__6B99B797_F4DA_4E46_8E78_7656339A6C41__INCLUDED_)
Note: See TracBrowser for help on using the repository browser.