source: SHVCSoftware/branches/SHM-upgrade/source/App/TAppEncoder/TAppEncLayerCfg.h @ 917

Last change on this file since 917 was 916, checked in by seregin, 10 years ago

initial porting

  • Property svn:eol-style set to native
File size: 10.6 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
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#if AUXILIARY_PICTURES
50  Int       m_auxId;
51#endif
52#if VPS_EXTN_DIRECT_REF_LAYERS
53  Int       *m_samplePredRefLayerIds;
54  Int       m_numSamplePredRefLayers;
55  Int       *m_motionPredRefLayerIds;
56  Int       m_numMotionPredRefLayers;
57  Int       *m_predLayerIds;
58  Int       m_numActiveRefLayers;
59#endif
60
61#if LAYER_CTB
62  // coding unit (CU) definition
63  UInt      m_uiMaxCUWidth;                                   ///< max. CU width in pixel
64  UInt      m_uiMaxCUHeight;                                  ///< max. CU height in pixel
65  UInt      m_uiMaxCUDepth;                                   ///< max. CU depth
66 
67  // transfom unit (TU) definition
68  UInt      m_uiQuadtreeTULog2MaxSize;
69  UInt      m_uiQuadtreeTULog2MinSize;
70 
71  UInt      m_uiQuadtreeTUMaxDepthInter;
72  UInt      m_uiQuadtreeTUMaxDepthIntra;
73#endif
74
75#if RC_SHVC_HARMONIZATION
76  Bool      m_RCEnableRateControl;                ///< enable rate control or not
77  Int       m_RCTargetBitrate;                    ///< target bitrate when rate control is enabled
78  Bool      m_RCKeepHierarchicalBit;              ///< whether keeping hierarchical bit allocation structure or not
79  Bool      m_RCLCULevelRC;                       ///< true: LCU level rate control; false: picture level rate control
80  Bool      m_RCUseLCUSeparateModel;              ///< use separate R-lambda model at LCU level
81  Int       m_RCInitialQP;                        ///< inital QP for rate control
82  Bool      m_RCForceIntraQP;                     ///< force all intra picture to use initial QP or not
83#endif
84
85  Int       m_maxTidIlRefPicsPlus1;
86  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.
87  Int       m_iWaveFrontSubstreams;               ///< If iWaveFrontSynchro, this is the number of substreams per frame (dependent tiles) or per tile (independent tiles).
88
89  Int       m_iQP;                                            ///< QP value of key-picture (integer)
90  char*     m_pchdQPFile;                                     ///< QP offset for each slice (initialized from external file)
91  Int*      m_aidQP;                                          ///< array of slice QP values
92  TAppEncCfg* m_cAppEncCfg;                                   ///< pointer to app encoder config
93  Int       m_numScaledRefLayerOffsets;
94#if O0098_SCALED_REF_LAYER_ID
95  Int       m_scaledRefLayerId          [MAX_LAYERS];
96#endif
97  Int       m_scaledRefLayerLeftOffset  [MAX_LAYERS];
98  Int       m_scaledRefLayerTopOffset   [MAX_LAYERS];
99  Int       m_scaledRefLayerRightOffset [MAX_LAYERS];
100  Int       m_scaledRefLayerBottomOffset[MAX_LAYERS];
101#if REF_REGION_OFFSET
102  Bool      m_scaledRefLayerOffsetPresentFlag [MAX_LAYERS];
103  Bool      m_refRegionOffsetPresentFlag      [MAX_LAYERS];
104  Int       m_refRegionLeftOffset  [MAX_LAYERS];
105  Int       m_refRegionTopOffset   [MAX_LAYERS];
106  Int       m_refRegionRightOffset [MAX_LAYERS];
107  Int       m_refRegionBottomOffset[MAX_LAYERS];
108#endif
109#if P0312_VERT_PHASE_ADJ
110  Bool      m_vertPhasePositionEnableFlag[MAX_LAYERS];
111#endif
112#if R0209_GENERIC_PHASE
113  Int       m_phaseHorLuma  [MAX_LAYERS];
114  Int       m_phaseVerLuma  [MAX_LAYERS];
115  Int       m_phaseHorChroma[MAX_LAYERS];
116  Int       m_phaseVerChroma[MAX_LAYERS];
117  Bool      m_resamplePhaseSetPresentFlag [MAX_LAYERS];
118#endif
119
120  Int       m_inputBitDepth   [MAX_NUM_CHANNEL_TYPE];         ///< bit-depth of input file
121  Int       m_outputBitDepth  [MAX_NUM_CHANNEL_TYPE];         ///< bit-depth of output file
122  Int       m_MSBExtendedBitDepth[MAX_NUM_CHANNEL_TYPE];      ///< bit-depth of input samples after MSB extension
123  Int       m_internalBitDepth[MAX_NUM_CHANNEL_TYPE];         ///< bit-depth codec operates at (input/output files will be converted)
124  UInt      m_saoOffsetBitShift[MAX_NUM_CHANNEL_TYPE];
125  Bool      m_useExtendedPrecision;
126  Bool      m_useHighPrecisionPredictionWeighting;
127
128#if REPN_FORMAT_IN_VPS
129  Int       m_repFormatIdx;
130#endif
131#if Q0074_COLOUR_REMAPPING_SEI
132  string    m_colourRemapSEIFile;                           ///< Colour Remapping Information SEI message parameters file
133  Int       m_colourRemapSEIId;
134  Bool      m_colourRemapSEICancelFlag;
135  Bool      m_colourRemapSEIPersistenceFlag;
136  Bool      m_colourRemapSEIVideoSignalInfoPresentFlag;
137  Bool      m_colourRemapSEIFullRangeFlag;
138  Int       m_colourRemapSEIPrimaries;
139  Int       m_colourRemapSEITransferFunction;
140  Int       m_colourRemapSEIMatrixCoefficients;
141  Int       m_colourRemapSEIInputBitDepth;
142  Int       m_colourRemapSEIBitDepth;
143  Int       m_colourRemapSEIPreLutNumValMinus1[3];
144  Int*      m_colourRemapSEIPreLutCodedValue[3];
145  Int*      m_colourRemapSEIPreLutTargetValue[3];
146  Bool      m_colourRemapSEIMatrixPresentFlag;
147  Int       m_colourRemapSEILog2MatrixDenom;
148  Int       m_colourRemapSEICoeffs[3][3];
149  Int       m_colourRemapSEIPostLutNumValMinus1[3];
150  Int*      m_colourRemapSEIPostLutCodedValue[3];
151  Int*      m_colourRemapSEIPostLutTargetValue[3];
152#endif
153
154public:
155  TAppEncLayerCfg();
156  virtual ~TAppEncLayerCfg();
157
158public:
159  Void  create    ();                                         ///< create option handling class
160  Void  destroy   ();                                         ///< destroy option handling class
161  bool  parseCfg  ( const string& cfgFileName );              ///< parse layer configuration file to fill member variables
162
163  Void  xPrintParameter();
164  Bool  xCheckParameter( Bool isField );
165
166  Void    setAppEncCfg(TAppEncCfg* p) {m_cAppEncCfg = p;          }
167
168  string  getInputFile()              {return m_cInputFile;       }
169  string  getReconFile()              {return m_cReconFile;       }
170  Int     getFrameRate()              {return m_iFrameRate;       }
171  Int     getSourceWidth()            {return m_iSourceWidth;     }
172  Int     getSourceHeight()           {return m_iSourceHeight;    }
173  Int     getSourceHeightOrg()        {return m_iSourceHeightOrg; }
174  Int     getConformanceMode()        { return m_conformanceMode; }
175  Int*    getPad()                    {return m_aiPad;            }
176  Double  getFloatQP()                {return m_fQP;              }
177  Int     getConfWinLeft()            {return m_confWinLeft;         }
178  Int     getConfWinRight()           {return m_confWinRight;        }
179  Int     getConfWinTop()             {return m_confWinTop;          }
180  Int     getConfWinBottom()          {return m_confWinBottom;       }
181#if AUXILIARY_PICTURES
182  ChromaFormat getInputChromaFormat()   {return m_InputChromaFormatIDC;}
183  ChromaFormat getChromaFormatIDC()     {return m_chromaFormatIDC;  }
184  Int          getAuxId()               {return m_auxId;            }
185#endif
186
187  Int     getIntQP()                  {return m_iQP;              } 
188  Int*    getdQPs()                   {return m_aidQP;            }
189#if VPS_EXTN_DIRECT_REF_LAYERS
190  Int     getNumSamplePredRefLayers()    {return m_numSamplePredRefLayers;   }
191  Int*    getSamplePredRefLayerIds()     {return m_samplePredRefLayerIds;    }
192  Int     getSamplePredRefLayerId(Int i) {return m_samplePredRefLayerIds[i]; }
193  Int     getNumMotionPredRefLayers()    {return m_numMotionPredRefLayers;   }
194  Int*    getMotionPredRefLayerIds()     {return m_motionPredRefLayerIds;    }
195  Int     getMotionPredRefLayerId(Int i) {return m_motionPredRefLayerIds[i]; }
196
197  Int     getNumActiveRefLayers()     {return m_numActiveRefLayers;}
198  Int*    getPredLayerIds()           {return m_predLayerIds;     }
199  Int     getPredLayerId(Int i)       {return m_predLayerIds[i];  }
200#endif
201#if RC_SHVC_HARMONIZATION
202  Bool    getRCEnableRateControl()    {return m_RCEnableRateControl;   }
203  Int     getRCTargetBitrate()        {return m_RCTargetBitrate;       }
204  Bool    getRCKeepHierarchicalBit()  {return m_RCKeepHierarchicalBit; }
205  Bool    getRCLCULevelRC()           {return m_RCLCULevelRC;          }
206  Bool    getRCUseLCUSeparateModel()  {return m_RCUseLCUSeparateModel; }
207  Int     getRCInitialQP()            {return m_RCInitialQP;           }
208  Bool    getRCForceIntraQP()         {return m_RCForceIntraQP;        }
209#endif
210#if REPN_FORMAT_IN_VPS
211  Int     getRepFormatIdx()           { return m_repFormatIdx;  }
212  Void    setRepFormatIdx(Int x)      { m_repFormatIdx = x;     }
213  Void    setSourceWidth(Int x)       { m_iSourceWidth = x;     }
214  Void    setSourceHeight(Int x)      { m_iSourceHeight = x;    }
215#endif
216  Int     getMaxTidIlRefPicsPlus1()   { return m_maxTidIlRefPicsPlus1; }
217#if LAYER_CTB
218  UInt    getMaxCUWidth()             {return m_uiMaxCUWidth;      }
219  UInt    getMaxCUHeight()            {return m_uiMaxCUHeight;     }
220  UInt    getMaxCUDepth()             {return m_uiMaxCUDepth;      }
221#endif
222}; // END CLASS DEFINITION TAppEncLayerCfg
223
224#endif //SVC_EXTENSION
225
226//! \}
227
228#endif // __TAPPENCLAYERCFG__
Note: See TracBrowser for help on using the repository browser.