source: SHVCSoftware/branches/SHM-dev/source/App/TAppEncoder/TAppEncLayerCfg.h @ 1144

Last change on this file since 1144 was 1131, checked in by seregin, 9 years ago

macro cleanup: R0071_IRAP_EOS_CROSS_LAYER_IMPACTS

  • Property svn:eol-style set to native
File size: 10.7 KB
Line 
1
2/** \file     TAppEncLayerCfg.h
3    \brief    Handle encoder layer configuration parameters (header)
4*/
5#ifndef __TAPPENCLAYERCFG__
6#define __TAPPENCLAYERCFG__
7
8#if SVC_EXTENSION
9#include "TLibCommon/CommonDef.h"
10#include "TLibEncoder/TEncCfg.h"
11#include <sstream>
12#include <iomanip>
13
14using namespace std;
15class TAppEncCfg;
16//! \ingroup TAppEncoder
17//! \{
18
19// ====================================================================================================================
20// Class definition
21// ====================================================================================================================
22
23/// encoder layer configuration class
24class TAppEncLayerCfg
25{
26  friend class TAppEncCfg;
27  friend class TAppEncTop;
28protected:
29  // file I/O0
30  string    m_cInputFile;                                     ///< source file name
31  string    m_cReconFile;                                     ///< output reconstruction file
32  Int       m_layerId;                                        ///< layer Id
33  Int       m_iFrameRate;                                     ///< source frame-rates (Hz)
34  Int       m_iSourceWidth;                                   ///< source width in pixel
35  Int       m_iSourceHeight;                                  ///< source height in pixel (when interlaced = field height)
36  Int       m_iSourceHeightOrg;                               ///< original source height in pixel (when interlaced = frame height)
37  Int       m_conformanceMode;
38  Int       m_confWinLeft;
39  Int       m_confWinRight;
40  Int       m_confWinTop;
41  Int       m_confWinBottom;
42  Int       m_aiPad[2];                                       ///< number of padded pixels for width and height
43  Int       m_iIntraPeriod;                                   ///< period of I-slice (random access period)
44  Double    m_fQP;                                            ///< QP value of key-picture (floating point)
45  ChromaFormat m_chromaFormatIDC;
46  ChromaFormat m_InputChromaFormatIDC;
47  ChromaFormat m_chromaFormatConstraint;
48  UInt      m_bitDepthConstraint;
49  Bool      m_intraConstraintFlag;
50  Bool      m_lowerBitRateConstraintFlag;
51#if AUXILIARY_PICTURES
52  Int       m_auxId;
53#endif
54#if VPS_EXTN_DIRECT_REF_LAYERS
55  Int       *m_samplePredRefLayerIds;
56  Int       m_numSamplePredRefLayers;
57  Int       *m_motionPredRefLayerIds;
58  Int       m_numMotionPredRefLayers;
59  Int       *m_predLayerIds;
60  Int       m_numActiveRefLayers;
61#endif
62
63#if LAYER_CTB
64  // coding unit (CU) definition
65  UInt      m_uiMaxCUWidth;                                   ///< max. CU width in pixel
66  UInt      m_uiMaxCUHeight;                                  ///< max. CU height in pixel
67  UInt      m_uiMaxCUDepth;                                   ///< max. CU depth
68 
69  // transfom unit (TU) definition
70  UInt      m_uiQuadtreeTULog2MaxSize;
71  UInt      m_uiQuadtreeTULog2MinSize;
72 
73  UInt      m_uiQuadtreeTUMaxDepthInter;
74  UInt      m_uiQuadtreeTUMaxDepthIntra;
75#endif
76
77#if RC_SHVC_HARMONIZATION
78  Bool      m_RCEnableRateControl;                ///< enable rate control or not
79  Int       m_RCTargetBitrate;                    ///< target bitrate when rate control is enabled
80  Bool      m_RCKeepHierarchicalBit;              ///< whether keeping hierarchical bit allocation structure or not
81  Bool      m_RCLCULevelRC;                       ///< true: LCU level rate control; false: picture level rate control
82  Bool      m_RCUseLCUSeparateModel;              ///< use separate R-lambda model at LCU level
83  Int       m_RCInitialQP;                        ///< inital QP for rate control
84  Bool      m_RCForceIntraQP;                     ///< force all intra picture to use initial QP or not
85#endif
86
87  Int       m_maxTidIlRefPicsPlus1;
88  Int       m_waveFrontSynchro;                   ///< 0: no WPP. >= 1: WPP is enabled, the "Top right" from which inheritance occurs is this LCU offset in the line above the current.
89  Int       m_iWaveFrontSubstreams;               ///< If iWaveFrontSynchro, this is the number of substreams per frame (dependent tiles) or per tile (independent tiles).
90
91  Int       m_iQP;                                            ///< QP value of key-picture (integer)
92  char*     m_pchdQPFile;                                     ///< QP offset for each slice (initialized from external file)
93  Int*      m_aidQP;                                          ///< array of slice QP values
94  TAppEncCfg* m_cAppEncCfg;                                   ///< pointer to app encoder config
95  Int       m_numRefLayerLocationOffsets;
96#if O0098_SCALED_REF_LAYER_ID
97  Int       m_refLocationOffsetLayerId  [MAX_LAYERS];
98#endif
99  Int       m_scaledRefLayerLeftOffset  [MAX_LAYERS];
100  Int       m_scaledRefLayerTopOffset   [MAX_LAYERS];
101  Int       m_scaledRefLayerRightOffset [MAX_LAYERS];
102  Int       m_scaledRefLayerBottomOffset[MAX_LAYERS];
103  Bool      m_scaledRefLayerOffsetPresentFlag [MAX_LAYERS];
104  Bool      m_refRegionOffsetPresentFlag      [MAX_LAYERS];
105  Int       m_refRegionLeftOffset  [MAX_LAYERS];
106  Int       m_refRegionTopOffset   [MAX_LAYERS];
107  Int       m_refRegionRightOffset [MAX_LAYERS];
108  Int       m_refRegionBottomOffset[MAX_LAYERS];
109  Int       m_phaseHorLuma  [MAX_LAYERS];
110  Int       m_phaseVerLuma  [MAX_LAYERS];
111  Int       m_phaseHorChroma[MAX_LAYERS];
112  Int       m_phaseVerChroma[MAX_LAYERS];
113  Bool      m_resamplePhaseSetPresentFlag [MAX_LAYERS];
114
115  Int       m_inputBitDepth   [MAX_NUM_CHANNEL_TYPE];         ///< bit-depth of input file
116  Int       m_outputBitDepth  [MAX_NUM_CHANNEL_TYPE];         ///< bit-depth of output file
117  Int       m_MSBExtendedBitDepth[MAX_NUM_CHANNEL_TYPE];      ///< bit-depth of input samples after MSB extension
118  Int       m_internalBitDepth[MAX_NUM_CHANNEL_TYPE];         ///< bit-depth codec operates at (input/output files will be converted)
119  UInt      m_saoOffsetBitShift[MAX_NUM_CHANNEL_TYPE];
120  Bool      m_useExtendedPrecision;
121  Bool      m_useHighPrecisionPredictionWeighting;
122
123#if REPN_FORMAT_IN_VPS
124  Int       m_repFormatIdx;
125#endif
126#if Q0074_COLOUR_REMAPPING_SEI
127  string    m_colourRemapSEIFileRoot;                           ///< Colour Remapping Information SEI message parameters file
128  Int       m_colourRemapSEIId;
129  Bool      m_colourRemapSEICancelFlag;
130  Bool      m_colourRemapSEIPersistenceFlag;
131  Bool      m_colourRemapSEIVideoSignalInfoPresentFlag;
132  Bool      m_colourRemapSEIFullRangeFlag;
133  Int       m_colourRemapSEIPrimaries;
134  Int       m_colourRemapSEITransferFunction;
135  Int       m_colourRemapSEIMatrixCoefficients;
136  Int       m_colourRemapSEIInputBitDepth;
137  Int       m_colourRemapSEIBitDepth;
138  Int       m_colourRemapSEIPreLutNumValMinus1[3];
139  Int*      m_colourRemapSEIPreLutCodedValue[3];
140  Int*      m_colourRemapSEIPreLutTargetValue[3];
141  Bool      m_colourRemapSEIMatrixPresentFlag;
142  Int       m_colourRemapSEILog2MatrixDenom;
143  Int       m_colourRemapSEICoeffs[3][3];
144  Int       m_colourRemapSEIPostLutNumValMinus1[3];
145  Int*      m_colourRemapSEIPostLutCodedValue[3];
146  Int*      m_colourRemapSEIPostLutTargetValue[3];
147#endif
148
149  Int       m_layerSwitchOffBegin;
150  Int       m_layerSwitchOffEnd;
151
152#if MULTIPLE_PTL_SUPPORT
153  // profile/level
154  Int       m_layerPTLIdx;
155#endif
156
157public:
158  TAppEncLayerCfg();
159  virtual ~TAppEncLayerCfg();
160
161public:
162  Void  create    ();                                         ///< create option handling class
163  Void  destroy   ();                                         ///< destroy option handling class
164  bool  parseCfg  ( const string& cfgFileName );              ///< parse layer configuration file to fill member variables
165
166  Void  xPrintParameter();
167  Bool  xCheckParameter( Bool isField );
168
169  Void    setAppEncCfg(TAppEncCfg* p) {m_cAppEncCfg = p;          }
170
171  string  getInputFile()              {return m_cInputFile;       }
172  string  getReconFile()              {return m_cReconFile;       }
173  Int     getFrameRate()              {return m_iFrameRate;       }
174  Int     getSourceWidth()            {return m_iSourceWidth;     }
175  Int     getSourceHeight()           {return m_iSourceHeight;    }
176  Int     getSourceHeightOrg()        {return m_iSourceHeightOrg; }
177  Int     getConformanceMode()        { return m_conformanceMode; }
178  Int*    getPad()                    {return m_aiPad;            }
179  Double  getFloatQP()                {return m_fQP;              }
180  Int     getConfWinLeft()            {return m_confWinLeft;         }
181  Int     getConfWinRight()           {return m_confWinRight;        }
182  Int     getConfWinTop()             {return m_confWinTop;          }
183  Int     getConfWinBottom()          {return m_confWinBottom;       }
184#if AUXILIARY_PICTURES
185  ChromaFormat getInputChromaFormat()   {return m_InputChromaFormatIDC;}
186  ChromaFormat getChromaFormatIDC()     {return m_chromaFormatIDC;  }
187  Int          getAuxId()               {return m_auxId;            }
188#endif
189
190  Int     getIntQP()                  {return m_iQP;              } 
191  Int*    getdQPs()                   {return m_aidQP;            }
192#if VPS_EXTN_DIRECT_REF_LAYERS
193  Int     getNumSamplePredRefLayers()    {return m_numSamplePredRefLayers;   }
194  Int*    getSamplePredRefLayerIds()     {return m_samplePredRefLayerIds;    }
195  Int     getSamplePredRefLayerId(Int i) {return m_samplePredRefLayerIds[i]; }
196  Int     getNumMotionPredRefLayers()    {return m_numMotionPredRefLayers;   }
197  Int*    getMotionPredRefLayerIds()     {return m_motionPredRefLayerIds;    }
198  Int     getMotionPredRefLayerId(Int i) {return m_motionPredRefLayerIds[i]; }
199
200  Int     getNumActiveRefLayers()     {return m_numActiveRefLayers;}
201  Int*    getPredLayerIds()           {return m_predLayerIds;     }
202  Int     getPredLayerIdx(Int i)      {return m_predLayerIds[i];  }
203#endif
204#if RC_SHVC_HARMONIZATION
205  Bool    getRCEnableRateControl()    {return m_RCEnableRateControl;   }
206  Int     getRCTargetBitrate()        {return m_RCTargetBitrate;       }
207  Bool    getRCKeepHierarchicalBit()  {return m_RCKeepHierarchicalBit; }
208  Bool    getRCLCULevelRC()           {return m_RCLCULevelRC;          }
209  Bool    getRCUseLCUSeparateModel()  {return m_RCUseLCUSeparateModel; }
210  Int     getRCInitialQP()            {return m_RCInitialQP;           }
211  Bool    getRCForceIntraQP()         {return m_RCForceIntraQP;        }
212#endif
213#if REPN_FORMAT_IN_VPS
214  Int     getRepFormatIdx()           { return m_repFormatIdx;  }
215  Void    setRepFormatIdx(Int x)      { m_repFormatIdx = x;     }
216  Void    setSourceWidth(Int x)       { m_iSourceWidth = x;     }
217  Void    setSourceHeight(Int x)      { m_iSourceHeight = x;    }
218#endif
219  Int     getMaxTidIlRefPicsPlus1()   { return m_maxTidIlRefPicsPlus1; }
220#if LAYER_CTB
221  UInt    getMaxCUWidth()             {return m_uiMaxCUWidth;      }
222  UInt    getMaxCUHeight()            {return m_uiMaxCUHeight;     }
223  UInt    getMaxCUDepth()             {return m_uiMaxCUDepth;      }
224#endif
225}; // END CLASS DEFINITION TAppEncLayerCfg
226
227#endif //SVC_EXTENSION
228
229//! \}
230
231#endif // __TAPPENCLAYERCFG__
Note: See TracBrowser for help on using the repository browser.