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 | |
---|
14 | using namespace std; |
---|
15 | class TAppEncCfg; |
---|
16 | //! \ingroup TAppEncoder |
---|
17 | //! \{ |
---|
18 | |
---|
19 | // ==================================================================================================================== |
---|
20 | // Class definition |
---|
21 | // ==================================================================================================================== |
---|
22 | |
---|
23 | /// encoder layer configuration class |
---|
24 | class TAppEncLayerCfg |
---|
25 | { |
---|
26 | friend class TAppEncCfg; |
---|
27 | friend class TAppEncTop; |
---|
28 | protected: |
---|
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 | Bool m_onePictureOnlyConstraintFlag; |
---|
52 | #if AUXILIARY_PICTURES |
---|
53 | Int m_auxId; |
---|
54 | #endif |
---|
55 | |
---|
56 | Int *m_samplePredRefLayerIds; |
---|
57 | Int m_numSamplePredRefLayers; |
---|
58 | Int *m_motionPredRefLayerIds; |
---|
59 | Int m_numMotionPredRefLayers; |
---|
60 | Int *m_predLayerIds; |
---|
61 | Int m_numActiveRefLayers; |
---|
62 | |
---|
63 | Int m_iMaxCuDQPDepth; ///< Max. depth for a minimum CuDQPSize (0:default) |
---|
64 | |
---|
65 | // coding unit (CU) definition |
---|
66 | UInt m_uiMaxCUWidth; ///< max. CU width in pixel |
---|
67 | UInt m_uiMaxCUHeight; ///< max. CU height in pixel |
---|
68 | UInt m_uiMaxCUDepth; ///< max. CU depth (as specified by command line) |
---|
69 | UInt m_uiMaxTotalCUDepth; ///< max. total CU depth - includes depth of transform-block structure |
---|
70 | UInt m_uiLog2DiffMaxMinCodingBlockSize; ///< difference between largest and smallest CU depth |
---|
71 | |
---|
72 | // transfom unit (TU) definition |
---|
73 | UInt m_uiQuadtreeTULog2MaxSize; |
---|
74 | UInt m_uiQuadtreeTULog2MinSize; |
---|
75 | |
---|
76 | UInt m_uiQuadtreeTUMaxDepthInter; |
---|
77 | UInt m_uiQuadtreeTUMaxDepthIntra; |
---|
78 | |
---|
79 | #if RC_SHVC_HARMONIZATION |
---|
80 | Bool m_RCEnableRateControl; ///< enable rate control or not |
---|
81 | Int m_RCTargetBitrate; ///< target bitrate when rate control is enabled |
---|
82 | Bool m_RCKeepHierarchicalBit; ///< whether keeping hierarchical bit allocation structure or not |
---|
83 | Bool m_RCLCULevelRC; ///< true: LCU level rate control; false: picture level rate control |
---|
84 | Bool m_RCUseLCUSeparateModel; ///< use separate R-lambda model at LCU level |
---|
85 | Int m_RCInitialQP; ///< inital QP for rate control |
---|
86 | Bool m_RCForceIntraQP; ///< force all intra picture to use initial QP or not |
---|
87 | #endif |
---|
88 | |
---|
89 | ScalingListMode m_useScalingListId; ///< using quantization matrix |
---|
90 | Char* m_scalingListFile; ///< quantization matrix file name |
---|
91 | |
---|
92 | Int m_maxTidIlRefPicsPlus1; |
---|
93 | 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. |
---|
94 | Int m_waveFrontFlush; ///< enable(1)/disable(0) the CABAC flush at the end of each line of LCUs. |
---|
95 | |
---|
96 | Int m_iQP; ///< QP value of key-picture (integer) |
---|
97 | Char* m_pchdQPFile; ///< QP offset for each slice (initialized from external file) |
---|
98 | Int* m_aidQP; ///< array of slice QP values |
---|
99 | TAppEncCfg* m_cAppEncCfg; ///< pointer to app encoder config |
---|
100 | Int m_numRefLayerLocationOffsets; |
---|
101 | Int m_refLocationOffsetLayerId [MAX_LAYERS]; |
---|
102 | Int m_scaledRefLayerLeftOffset [MAX_LAYERS]; |
---|
103 | Int m_scaledRefLayerTopOffset [MAX_LAYERS]; |
---|
104 | Int m_scaledRefLayerRightOffset [MAX_LAYERS]; |
---|
105 | Int m_scaledRefLayerBottomOffset[MAX_LAYERS]; |
---|
106 | Bool m_scaledRefLayerOffsetPresentFlag [MAX_LAYERS]; |
---|
107 | Bool m_refRegionOffsetPresentFlag [MAX_LAYERS]; |
---|
108 | Int m_refRegionLeftOffset [MAX_LAYERS]; |
---|
109 | Int m_refRegionTopOffset [MAX_LAYERS]; |
---|
110 | Int m_refRegionRightOffset [MAX_LAYERS]; |
---|
111 | Int m_refRegionBottomOffset[MAX_LAYERS]; |
---|
112 | Int m_phaseHorLuma [MAX_LAYERS]; |
---|
113 | Int m_phaseVerLuma [MAX_LAYERS]; |
---|
114 | Int m_phaseHorChroma[MAX_LAYERS]; |
---|
115 | Int m_phaseVerChroma[MAX_LAYERS]; |
---|
116 | Bool m_resamplePhaseSetPresentFlag [MAX_LAYERS]; |
---|
117 | |
---|
118 | Int m_inputBitDepth[MAX_NUM_CHANNEL_TYPE]; ///< bit-depth of input file |
---|
119 | Int m_outputBitDepth[MAX_NUM_CHANNEL_TYPE]; ///< bit-depth of output file |
---|
120 | Int m_MSBExtendedBitDepth[MAX_NUM_CHANNEL_TYPE]; ///< bit-depth of input samples after MSB extension |
---|
121 | Int m_internalBitDepth[MAX_NUM_CHANNEL_TYPE]; ///< bit-depth codec operates at (input/output files will be converted) |
---|
122 | UInt m_log2SaoOffsetScale[MAX_NUM_CHANNEL_TYPE]; |
---|
123 | Bool m_extendedPrecisionProcessingFlag; |
---|
124 | Bool m_highPrecisionOffsetsEnabledFlag; |
---|
125 | |
---|
126 | Int m_repFormatIdx; |
---|
127 | #if Q0074_COLOUR_REMAPPING_SEI |
---|
128 | string m_colourRemapSEIFileRoot; ///< Colour Remapping Information SEI message parameters file |
---|
129 | Int m_colourRemapSEIId; |
---|
130 | Bool m_colourRemapSEICancelFlag; |
---|
131 | Bool m_colourRemapSEIPersistenceFlag; |
---|
132 | Bool m_colourRemapSEIVideoSignalInfoPresentFlag; |
---|
133 | Bool m_colourRemapSEIFullRangeFlag; |
---|
134 | Int m_colourRemapSEIPrimaries; |
---|
135 | Int m_colourRemapSEITransferFunction; |
---|
136 | Int m_colourRemapSEIMatrixCoefficients; |
---|
137 | Int m_colourRemapSEIInputBitDepth; |
---|
138 | Int m_colourRemapSEIBitDepth; |
---|
139 | Int m_colourRemapSEIPreLutNumValMinus1[3]; |
---|
140 | Int* m_colourRemapSEIPreLutCodedValue[3]; |
---|
141 | Int* m_colourRemapSEIPreLutTargetValue[3]; |
---|
142 | Bool m_colourRemapSEIMatrixPresentFlag; |
---|
143 | Int m_colourRemapSEILog2MatrixDenom; |
---|
144 | Int m_colourRemapSEICoeffs[3][3]; |
---|
145 | Int m_colourRemapSEIPostLutNumValMinus1[3]; |
---|
146 | Int* m_colourRemapSEIPostLutCodedValue[3]; |
---|
147 | Int* m_colourRemapSEIPostLutTargetValue[3]; |
---|
148 | #endif |
---|
149 | |
---|
150 | Int m_layerSwitchOffBegin; |
---|
151 | Int m_layerSwitchOffEnd; |
---|
152 | |
---|
153 | // profile/level |
---|
154 | Int m_layerPTLIdx; |
---|
155 | |
---|
156 | public: |
---|
157 | TAppEncLayerCfg(); |
---|
158 | virtual ~TAppEncLayerCfg(); |
---|
159 | |
---|
160 | public: |
---|
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_InputChromaFormatIDC;} |
---|
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 | |
---|
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 getPredLayerIdx(Int i) {return m_predLayerIds[i]; } |
---|
202 | |
---|
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 | Int getRepFormatIdx() { return m_repFormatIdx; } |
---|
213 | Void setRepFormatIdx(Int x) { m_repFormatIdx = x; } |
---|
214 | Void setSourceWidth(Int x) { m_iSourceWidth = x; } |
---|
215 | Void setSourceHeight(Int x) { m_iSourceHeight = x; } |
---|
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__ |
---|