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

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

undelete the code from the previous revision

  • Property svn:eol-style set to native
File size: 9.1 KB
RevLine 
[313]1
2/** \file     TAppEncLayerCfg.h
3    \brief    Handle encoder layer configuration parameters (header)
4*/
5#ifndef __TAPPENCLAYERCFG__
6#define __TAPPENCLAYERCFG__
7
8#include "TLibCommon/CommonDef.h"
9#include "TLibEncoder/TEncCfg.h"
10#include <sstream>
11
12using namespace std;
13#if SVC_EXTENSION
14class TAppEncCfg;
15#endif
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
[442]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)
[313]37  Int       m_conformanceMode;
38  Int       m_confLeft;
39  Int       m_confRight;
40  Int       m_confTop;
41  Int       m_confBottom;
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)
[467]45#if SVC_EXTENSION
[313]46#if VPS_EXTN_DIRECT_REF_LAYERS
47#if M0457_PREDICTION_INDICATIONS
48  Int       *m_samplePredRefLayerIds;
49  Int       m_numSamplePredRefLayers;
50  Int       *m_motionPredRefLayerIds;
51  Int       m_numMotionPredRefLayers;
52#else
53  Int       *m_refLayerIds;
54  Int       m_numDirectRefLayers;
55#endif
56  Int       *m_predLayerIds;
57  Int       m_numActiveRefLayers;
58#endif
59
[467]60#if LAYER_CTB
61  // coding unit (CU) definition
62  UInt      m_uiMaxCUWidth;                                   ///< max. CU width in pixel
63  UInt      m_uiMaxCUHeight;                                  ///< max. CU height in pixel
64  UInt      m_uiMaxCUDepth;                                   ///< max. CU depth
65 
66  // transfom unit (TU) definition
67  UInt      m_uiQuadtreeTULog2MaxSize;
68  UInt      m_uiQuadtreeTULog2MinSize;
69 
70  UInt      m_uiQuadtreeTUMaxDepthInter;
71  UInt      m_uiQuadtreeTUMaxDepthIntra;
72#endif
73
[313]74#if RC_SHVC_HARMONIZATION
75  Bool      m_RCEnableRateControl;                ///< enable rate control or not
76  Int       m_RCTargetBitrate;                    ///< target bitrate when rate control is enabled
77  Bool      m_RCKeepHierarchicalBit;              ///< whether keeping hierarchical bit allocation structure or not
78  Bool      m_RCLCULevelRC;                       ///< true: LCU level rate control; false: picture level rate control
79  Bool      m_RCUseLCUSeparateModel;              ///< use separate R-lambda model at LCU level
80  Int       m_RCInitialQP;                        ///< inital QP for rate control
81  Bool      m_RCForceIntraQP;                     ///< force all intra picture to use initial QP or not
82#endif
83
[442]84#if N0120_MAX_TID_REF_CFG
85  Int       m_maxTidIlRefPicsPlus1;
86#endif
[313]87  Int       m_iWaveFrontSubstreams; //< If iWaveFrontSynchro, this is the number of substreams per frame (dependent tiles) or per tile (independent tiles).
[467]88#endif //SVC_EXTENSION
[313]89
90  Int       m_iQP;                                            ///< QP value of key-picture (integer)
91  char*     m_pchdQPFile;                                     ///< QP offset for each slice (initialized from external file)
92  Int*      m_aidQP;                                          ///< array of slice QP values
93  TAppEncCfg* m_cAppEncCfg;                                   ///< pointer to app encoder config
[467]94#if SVC_EXTENSION
[313]95  Int       m_numScaledRefLayerOffsets  ;
96  Int       m_scaledRefLayerLeftOffset  [MAX_LAYERS];
97  Int       m_scaledRefLayerTopOffset   [MAX_LAYERS];
98  Int       m_scaledRefLayerRightOffset [MAX_LAYERS];
99  Int       m_scaledRefLayerBottomOffset[MAX_LAYERS];
[345]100#if FINAL_RPL_CHANGE_N0082
101  GOPEntry  m_GOPListLayer[MAX_GOP];                            ///< for layer
102#endif
[466]103#if O0194_DIFFERENT_BITDEPTH_EL_BL
104  Int       m_inputBitDepthY;                               ///< bit-depth of input file (luma component)
105  Int       m_inputBitDepthC;                               ///< bit-depth of input file (chroma component)
106  Int       m_internalBitDepthY;                            ///< bit-depth codec operates at in luma (input/output files will be converted)
107  Int       m_internalBitDepthC;                            ///< bit-depth codec operates at in chroma (input/output files will be converted)
108  Int       m_outputBitDepthY;                              ///< bit-depth of output file (luma component)
109  Int       m_outputBitDepthC;                              ///< bit-depth of output file (chroma component)
110#endif
[442]111#if REPN_FORMAT_IN_VPS
112  Int       m_repFormatIdx;
113#endif
[467]114#endif //SVC_EXTENSION
[313]115public:
116  TAppEncLayerCfg();
117  virtual ~TAppEncLayerCfg();
118
119public:
120  Void  create    ();                                         ///< create option handling class
121  Void  destroy   ();                                         ///< destroy option handling class
122  bool  parseCfg  ( const string& cfgFileName );              ///< parse layer configuration file to fill member variables
123
124#if AVC_SYNTAX
125  Void  xPrintParameter( UInt layerId );
126#else
127  Void  xPrintParameter();
128#endif
[442]129  Bool  xCheckParameter( Bool isField );
[313]130
131  Void    setAppEncCfg(TAppEncCfg* p) {m_cAppEncCfg = p;          }
132
133  string  getInputFile()              {return m_cInputFile;       }
134  string  getReconFile()              {return m_cReconFile;       }
135  Int     getFrameRate()              {return m_iFrameRate;       }
136  Int     getSourceWidth()            {return m_iSourceWidth;     }
137  Int     getSourceHeight()           {return m_iSourceHeight;    }
[442]138  Int     getSourceHeightOrg()        {return m_iSourceHeightOrg; }
[313]139  Int     getConformanceMode()        { return m_conformanceMode; }
140  Int*    getPad()                    {return m_aiPad;            }
141  Double  getFloatQP()                {return m_fQP;              }
142  Int     getConfLeft()               {return m_confLeft;         }
143  Int     getConfRight()              {return m_confRight;        }
144  Int     getConfTop()                {return m_confTop;          }
145  Int     getConfBottom()             {return m_confBottom;       }
146
147  Int     getIntQP()                  {return m_iQP;              } 
148  Int*    getdQPs()                   {return m_aidQP;            }
[467]149#if SVC_EXTENSION
[313]150#if VPS_EXTN_DIRECT_REF_LAYERS
151#if M0457_PREDICTION_INDICATIONS
152  Int     getNumSamplePredRefLayers()    {return m_numSamplePredRefLayers;   }
153  Int*    getSamplePredRefLayerIds()     {return m_samplePredRefLayerIds;    }
154  Int     getSamplePredRefLayerId(Int i) {return m_samplePredRefLayerIds[i]; }
155  Int     getNumMotionPredRefLayers()    {return m_numMotionPredRefLayers;   }
156  Int*    getMotionPredRefLayerIds()     {return m_motionPredRefLayerIds;    }
157  Int     getMotionPredRefLayerId(Int i) {return m_motionPredRefLayerIds[i]; }
158#else
159  Int     getNumDirectRefLayers()     {return m_numDirectRefLayers;}
160  Int*    getRefLayerIds()            {return m_refLayerIds;      }
161  Int     getRefLayerId(Int i)        {return m_refLayerIds[i];   }
162#endif
163
164  Int     getNumActiveRefLayers()     {return m_numActiveRefLayers;}
165  Int*    getPredLayerIds()           {return m_predLayerIds;     }
166  Int     getPredLayerId(Int i)       {return m_predLayerIds[i];  }
167#endif
168#if RC_SHVC_HARMONIZATION
169  Bool    getRCEnableRateControl()    {return m_RCEnableRateControl;   }
170  Int     getRCTargetBitrate()        {return m_RCTargetBitrate;       }
171  Bool    getRCKeepHierarchicalBit()  {return m_RCKeepHierarchicalBit; }
172  Bool    getRCLCULevelRC()           {return m_RCLCULevelRC;          }
173  Bool    getRCUseLCUSeparateModel()  {return m_RCUseLCUSeparateModel; }
174  Int     getRCInitialQP()            {return m_RCInitialQP;           }
175  Bool    getRCForceIntraQP()         {return m_RCForceIntraQP;        }
176#endif
[345]177#if FINAL_RPL_CHANGE_N0082
178  GOPEntry getGOPEntry(Int i )        {return m_GOPListLayer[i];  }
179#endif
[442]180#if REPN_FORMAT_IN_VPS
181  Int     getRepFormatIdx()           { return m_repFormatIdx;  }
182  Void    setRepFormatIdx(Int x)      { m_repFormatIdx = x;     }
183  Void    setSourceWidth(Int x)       { m_iSourceWidth = x;     }
184  Void    setSourceHeight(Int x)      { m_iSourceHeight = x;    }
185#endif
186#if N0120_MAX_TID_REF_CFG
187  Int     getMaxTidIlRefPicsPlus1()   { return m_maxTidIlRefPicsPlus1; }
[466]188#endif
[467]189#if LAYER_CTB
190  UInt getMaxCUWidth()             {return m_uiMaxCUWidth;      }
191  UInt getMaxCUHeight()            {return m_uiMaxCUHeight;     }
192  UInt getMaxCUDepth()             {return m_uiMaxCUDepth;      }
193#endif
194#endif //SVC_EXTENSION
[313]195}; // END CLASS DEFINITION TAppEncLayerCfg
196
197//! \}
198
199#endif // __TAPPENCLAYERCFG__
Note: See TracBrowser for help on using the repository browser.