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

Last change on this file was 384, checked in by mediatek-htm, 12 years ago

D0156 source code

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