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

Last change on this file since 978 was 978, checked in by nokia, 10 years ago

Implementation of JCTVC-R0071 - IRAP and EOS cross-layer impacts

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