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

Last change on this file since 481 was 481, checked in by seregin, 11 years ago

update auto setting for representation format

  • Property svn:eol-style set to native
File size: 9.1 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_confLeft;
38  Int       m_confRight;
39  Int       m_confTop;
40  Int       m_confBottom;
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#if M0457_PREDICTION_INDICATIONS
51  Int       *m_samplePredRefLayerIds;
52  Int       m_numSamplePredRefLayers;
53  Int       *m_motionPredRefLayerIds;
54  Int       m_numMotionPredRefLayers;
55#else
56  Int       *m_refLayerIds;
57  Int       m_numDirectRefLayers;
58#endif
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#if N0120_MAX_TID_REF_CFG
88  Int       m_maxTidIlRefPicsPlus1;
89#endif
90  Int       m_iWaveFrontSubstreams; //< If iWaveFrontSynchro, this is the number of substreams per frame (dependent tiles) or per tile (independent tiles).
91
92  Int       m_iQP;                                            ///< QP value of key-picture (integer)
93  char*     m_pchdQPFile;                                     ///< QP offset for each slice (initialized from external file)
94  Int*      m_aidQP;                                          ///< array of slice QP values
95  TAppEncCfg* m_cAppEncCfg;                                   ///< pointer to app encoder config
96  Int       m_numScaledRefLayerOffsets  ;
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 O0194_DIFFERENT_BITDEPTH_EL_BL
102  Int       m_inputBitDepthY;                               ///< bit-depth of input file (luma component)
103  Int       m_inputBitDepthC;                               ///< bit-depth of input file (chroma component)
104  Int       m_internalBitDepthY;                            ///< bit-depth codec operates at in luma (input/output files will be converted)
105  Int       m_internalBitDepthC;                            ///< bit-depth codec operates at in chroma (input/output files will be converted)
106  Int       m_outputBitDepthY;                              ///< bit-depth of output file (luma component)
107  Int       m_outputBitDepthC;                              ///< bit-depth of output file (chroma component)
108#endif
109#if REPN_FORMAT_IN_VPS
110  Int       m_repFormatIdx;
111#endif
112public:
113  TAppEncLayerCfg();
114  virtual ~TAppEncLayerCfg();
115
116public:
117  Void  create    ();                                         ///< create option handling class
118  Void  destroy   ();                                         ///< destroy option handling class
119  bool  parseCfg  ( const string& cfgFileName );              ///< parse layer configuration file to fill member variables
120
121#if AVC_SYNTAX
122  Void  xPrintParameter( UInt layerId );
123#else
124  Void  xPrintParameter();
125#endif
126  Bool  xCheckParameter( Bool isField );
127
128  Void    setAppEncCfg(TAppEncCfg* p) {m_cAppEncCfg = p;          }
129
130  string  getInputFile()              {return m_cInputFile;       }
131  string  getReconFile()              {return m_cReconFile;       }
132  Int     getFrameRate()              {return m_iFrameRate;       }
133  Int     getSourceWidth()            {return m_iSourceWidth;     }
134  Int     getSourceHeight()           {return m_iSourceHeight;    }
135  Int     getSourceHeightOrg()        {return m_iSourceHeightOrg; }
136  Int     getConformanceMode()        { return m_conformanceMode; }
137  Int*    getPad()                    {return m_aiPad;            }
138  Double  getFloatQP()                {return m_fQP;              }
139  Int     getConfLeft()               {return m_confLeft;         }
140  Int     getConfRight()              {return m_confRight;        }
141  Int     getConfTop()                {return m_confTop;          }
142  Int     getConfBottom()             {return m_confBottom;       }
143#if AUXILIARY_PICTURES
144  ChromaFormat getInputChromaFormat()   {return m_InputChromaFormat;}
145  ChromaFormat getChromaFormatIDC()     {return m_chromaFormatIDC;  }
146  Int          getAuxId()               {return m_auxId;            }
147#endif
148
149  Int     getIntQP()                  {return m_iQP;              } 
150  Int*    getdQPs()                   {return m_aidQP;            }
151#if VPS_EXTN_DIRECT_REF_LAYERS
152#if M0457_PREDICTION_INDICATIONS
153  Int     getNumSamplePredRefLayers()    {return m_numSamplePredRefLayers;   }
154  Int*    getSamplePredRefLayerIds()     {return m_samplePredRefLayerIds;    }
155  Int     getSamplePredRefLayerId(Int i) {return m_samplePredRefLayerIds[i]; }
156  Int     getNumMotionPredRefLayers()    {return m_numMotionPredRefLayers;   }
157  Int*    getMotionPredRefLayerIds()     {return m_motionPredRefLayerIds;    }
158  Int     getMotionPredRefLayerId(Int i) {return m_motionPredRefLayerIds[i]; }
159#else
160  Int     getNumDirectRefLayers()     {return m_numDirectRefLayers;}
161  Int*    getRefLayerIds()            {return m_refLayerIds;      }
162  Int     getRefLayerId(Int i)        {return m_refLayerIds[i];   }
163#endif
164
165  Int     getNumActiveRefLayers()     {return m_numActiveRefLayers;}
166  Int*    getPredLayerIds()           {return m_predLayerIds;     }
167  Int     getPredLayerId(Int i)       {return m_predLayerIds[i];  }
168#endif
169#if RC_SHVC_HARMONIZATION
170  Bool    getRCEnableRateControl()    {return m_RCEnableRateControl;   }
171  Int     getRCTargetBitrate()        {return m_RCTargetBitrate;       }
172  Bool    getRCKeepHierarchicalBit()  {return m_RCKeepHierarchicalBit; }
173  Bool    getRCLCULevelRC()           {return m_RCLCULevelRC;          }
174  Bool    getRCUseLCUSeparateModel()  {return m_RCUseLCUSeparateModel; }
175  Int     getRCInitialQP()            {return m_RCInitialQP;           }
176  Bool    getRCForceIntraQP()         {return m_RCForceIntraQP;        }
177#endif
178#if REPN_FORMAT_IN_VPS
179  Int     getRepFormatIdx()           { return m_repFormatIdx;  }
180  Void    setRepFormatIdx(Int x)      { m_repFormatIdx = x;     }
181  Void    setSourceWidth(Int x)       { m_iSourceWidth = x;     }
182  Void    setSourceHeight(Int x)      { m_iSourceHeight = x;    }
183#endif
184#if N0120_MAX_TID_REF_CFG
185  Int     getMaxTidIlRefPicsPlus1()   { return m_maxTidIlRefPicsPlus1; }
186#endif
187#if LAYER_CTB
188  UInt    getMaxCUWidth()             {return m_uiMaxCUWidth;      }
189  UInt    getMaxCUHeight()            {return m_uiMaxCUHeight;     }
190  UInt    getMaxCUDepth()             {return m_uiMaxCUDepth;      }
191#endif
192}; // END CLASS DEFINITION TAppEncLayerCfg
193
194#endif //SVC_EXTENSION
195
196//! \}
197
198#endif // __TAPPENCLAYERCFG__
Note: See TracBrowser for help on using the repository browser.