source: SHVCSoftware/branches/SHM-dev/source/App/TAppEncoder/TAppEncCfg.h @ 941

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

support profile, tier and level for each layer, patch was provided by Hendry <fhendry@…>

  • Property svn:eol-style set to native
File size: 30.8 KB
Line 
1/* The copyright in this software is being made available under the BSD
2 * License, included below. This software may be subject to other third party
3 * and contributor rights, including patent rights, and no such rights are
4 * granted under this license. 
5 *
6 * Copyright (c) 2010-2014, ITU/ISO/IEC
7 * All rights reserved.
8 *
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are met:
11 *
12 *  * Redistributions of source code must retain the above copyright notice,
13 *    this list of conditions and the following disclaimer.
14 *  * Redistributions in binary form must reproduce the above copyright notice,
15 *    this list of conditions and the following disclaimer in the documentation
16 *    and/or other materials provided with the distribution.
17 *  * Neither the name of the ITU/ISO/IEC nor the names of its contributors may
18 *    be used to endorse or promote products derived from this software without
19 *    specific prior written permission.
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS
25 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
31 * THE POSSIBILITY OF SUCH DAMAGE.
32 */
33
34/** \file     TAppEncCfg.h
35    \brief    Handle encoder configuration parameters (header)
36*/
37
38#ifndef __TAPPENCCFG__
39#define __TAPPENCCFG__
40
41#include "TLibCommon/CommonDef.h"
42
43#include "TLibEncoder/TEncCfg.h"
44#if SVC_EXTENSION
45#include "TAppEncLayerCfg.h"
46#endif
47#include <sstream>
48#include <vector>
49//! \ingroup TAppEncoder
50//! \{
51
52// ====================================================================================================================
53// Class definition
54// ====================================================================================================================
55
56/// encoder configuration class
57class TAppEncCfg
58{
59protected:
60  // file I/O
61#if SVC_EXTENSION
62  TAppEncLayerCfg m_acLayerCfg [MAX_LAYERS];
63  Int       m_numLayers;                                      ///< number of layers
64  Int       m_scalabilityMask[MAX_VPS_NUM_SCALABILITY_TYPES]; ///< scalability_mask
65  Char*     m_pBitstreamFile;                                 ///< output bitstream file
66  Double    m_adLambdaModifier[ MAX_TLAYER ];                 ///< Lambda modifier array for each temporal layer
67  // source specification
68  UInt      m_FrameSkip;                                      ///< number of skipped frames from the beginning
69  Int       m_framesToBeEncoded;                              ///< number of encoded frames
70#if AVC_BASE
71#if VPS_AVC_BL_FLAG_REMOVAL
72  Int       m_nonHEVCBaseLayerFlag;                           ///< non HEVC BL
73#else
74  Int       m_avcBaseLayerFlag;                               ///< avc_baselayer_flag
75#endif
76#endif
77  Bool      m_maxTidRefPresentFlag; 
78#if Q0078_ADD_LAYER_SETS
79  Int       m_numLayerSets;
80  Int       m_numLayerInIdList[MAX_VPS_LAYER_SETS_PLUS1];
81  Int       m_layerSetLayerIdList[MAX_VPS_LAYER_SETS_PLUS1][MAX_VPS_LAYER_ID_PLUS1];
82  Int       m_numAddLayerSets;
83  Int       m_numHighestLayerIdx[MAX_VPS_LAYER_SETS_PLUS1];
84  Int       m_highestLayerIdx[MAX_VPS_LAYER_SETS_PLUS1][MAX_VPS_LAYER_ID_PLUS1];
85#endif
86#if OUTPUT_LAYER_SETS_CONFIG
87  std::vector<Int>                m_outputLayerSetIdx;
88  Int       m_defaultTargetOutputLayerIdc;
89  Int       m_numOutputLayerSets;
90  std::vector<Int>                m_numLayersInOutputLayerSet;
91  std::vector< std::vector<Int> > m_listOfOutputLayers;
92#endif
93#else
94  Char*     m_pchInputFile;                                   ///< source file name
95  Char*     m_pchBitstreamFile;                               ///< output bitstream file
96  Char*     m_pchReconFile;                                   ///< output reconstruction file
97  Double    m_adLambdaModifier[ MAX_TLAYER ];                 ///< Lambda modifier array for each temporal layer
98  // source specification
99  Int       m_iFrameRate;                                     ///< source frame-rates (Hz)
100  UInt      m_FrameSkip;                                      ///< number of skipped frames from the beginning
101  Int       m_iSourceWidth;                                   ///< source width in pixel
102  Int       m_iSourceHeight;                                  ///< source height in pixel (when interlaced = field height)
103 
104  Int       m_iSourceHeightOrg;                               ///< original source height in pixel (when interlaced = frame height)
105 
106 
107  Int       m_conformanceWindowMode;
108  Int       m_confWinLeft;
109  Int       m_confWinRight;
110  Int       m_confWinTop;
111  Int       m_confWinBottom;
112  Int       m_framesToBeEncoded;                              ///< number of encoded frames
113  Int       m_aiPad[2];                                       ///< number of padded pixels for width and height
114#endif 
115#if AUXILIARY_PICTURES
116  ChromaFormat m_InputChromaFormatIDC;
117#endif
118  Bool      m_isField;                                        ///< enable field coding
119  Bool      m_isTopFieldFirst;
120
121  // profile/level
122#if !MULTIPLE_PTL_SUPPORT
123  Profile::Name m_profile;
124  Level::Tier   m_levelTier;
125  Level::Name   m_level;
126  Bool m_progressiveSourceFlag;
127  Bool m_interlacedSourceFlag;
128  Bool m_nonPackedConstraintFlag;
129  Bool m_frameOnlyConstraintFlag;
130#else
131  Int           m_numPTLInfo;
132  Int           m_layerPTLIdx[MAX_VPS_LAYER_ID_PLUS1]; ///< scalability_mask
133  Profile::Name m_profileList[NUM_POSSIBLE_LEVEL];
134  Level::Tier   m_levelTierList[NUM_POSSIBLE_LEVEL];
135  Level::Name   m_levelList[NUM_POSSIBLE_LEVEL];
136  Bool          m_progressiveSourceFlagList[NUM_POSSIBLE_LEVEL];
137  Bool          m_interlacedSourceFlagList[NUM_POSSIBLE_LEVEL];
138  Bool          m_nonPackedConstraintFlagList[NUM_POSSIBLE_LEVEL];
139  Bool          m_frameOnlyConstraintFlagList[NUM_POSSIBLE_LEVEL];
140
141  std::vector< std::vector<Int> > m_listOfLayerPTLofOlss;
142#endif
143  // coding structure
144#if !SVC_EXTENSION
145  Int       m_iIntraPeriod;                                   ///< period of I-slice (random access period)
146#endif
147  Int       m_iDecodingRefreshType;                           ///< random access type
148  Int       m_iGOPSize;                                       ///< GOP size of hierarchical structure
149
150#if !Q0108_TSA_STSA
151  Int       m_extraRPSs;                                      ///< extra RPSs added to handle CRA
152#else
153  Int       m_extraRPSs[MAX_LAYERS];                          ///< extra RPSs added to handle CRA
154#endif
155
156  GOPEntry  m_GOPList[MAX_GOP];                               ///< the coding structure entries from the config file
157#if Q0108_TSA_STSA
158  GOPEntry  m_EhGOPList[MAX_LAYERS][MAX_GOP];                 ///< the enhancement layer coding structure entries from the config file
159  Int       m_inheritCodingStruct[MAX_LAYERS];
160#endif
161
162  Int       m_numReorderPics[MAX_TLAYER];                     ///< total number of reorder pictures
163  Int       m_maxDecPicBuffering[MAX_TLAYER];                 ///< total number of pictures in the decoded picture buffer
164  Bool      m_useTransformSkip;                               ///< flag for enabling intra transform skipping
165  Bool      m_useTransformSkipFast;                           ///< flag for enabling fast intra transform skipping
166  Bool      m_enableAMP;
167  // coding quality
168#if !SVC_EXTENSION
169  Double    m_fQP;                                            ///< QP value of key-picture (floating point)
170  Int       m_iQP;                                            ///< QP value of key-picture (integer)
171  Char*     m_pchdQPFile;                                     ///< QP offset for each slice (initialized from external file)
172  Int*      m_aidQP;                                          ///< array of slice QP values
173#endif
174  Int       m_iMaxDeltaQP;                                    ///< max. |delta QP|
175  UInt      m_uiDeltaQpRD;                                    ///< dQP range for multi-pass slice QP optimization
176  Int       m_iMaxCuDQPDepth;                                 ///< Max. depth for a minimum CuDQPSize (0:default)
177
178  Int       m_cbQpOffset;                                     ///< Chroma Cb QP Offset (0:default)
179  Int       m_crQpOffset;                                     ///< Chroma Cr QP Offset (0:default)
180
181#if ADAPTIVE_QP_SELECTION
182  Bool      m_bUseAdaptQpSelect;
183#endif
184
185  Bool      m_bUseAdaptiveQP;                                 ///< Flag for enabling QP adaptation based on a psycho-visual model
186  Int       m_iQPAdaptationRange;                             ///< dQP range by QP adaptation
187 
188  Int       m_maxTempLayer;                                  ///< Max temporal layer
189#if Q0108_TSA_STSA
190  Int       m_EhMaxTempLayer[MAX_LAYERS];                    ///< Max temporal layer
191#endif
192
193#if !LAYER_CTB
194  // coding unit (CU) definition
195  UInt      m_uiMaxCUWidth;                                   ///< max. CU width in pixel
196  UInt      m_uiMaxCUHeight;                                  ///< max. CU height in pixel
197  UInt      m_uiMaxCUDepth;                                   ///< max. CU depth
198 
199  // transfom unit (TU) definition
200  UInt      m_uiQuadtreeTULog2MaxSize;
201  UInt      m_uiQuadtreeTULog2MinSize;
202 
203  UInt      m_uiQuadtreeTUMaxDepthInter;
204  UInt      m_uiQuadtreeTUMaxDepthIntra;
205#endif
206 
207  // coding tools (bit-depth)
208#if !O0194_DIFFERENT_BITDEPTH_EL_BL
209  Int       m_inputBitDepthY;                               ///< bit-depth of input file (luma component)
210  Int       m_inputBitDepthC;                               ///< bit-depth of input file (chroma component)
211  Int       m_outputBitDepthY;                              ///< bit-depth of output file (luma component)
212  Int       m_outputBitDepthC;                              ///< bit-depth of output file (chroma component)
213  Int       m_internalBitDepthY;                            ///< bit-depth codec operates at in luma (input/output files will be converted)
214  Int       m_internalBitDepthC;                            ///< bit-depth codec operates at in chroma (input/output files will be converted)
215#endif
216#if AUXILIARY_PICTURES
217  ChromaFormat m_chromaFormatIDC;
218#endif
219
220  // coding tools (PCM bit-depth)
221  Bool      m_bPCMInputBitDepthFlag;                          ///< 0: PCM bit-depth is internal bit-depth. 1: PCM bit-depth is input bit-depth.
222
223  // coding tool (SAO)
224  Bool      m_bUseSAO; 
225  Int       m_maxNumOffsetsPerPic;                            ///< SAO maximun number of offset per picture
226  Bool      m_saoLcuBoundary;                                 ///< SAO parameter estimation using non-deblocked pixels for LCU bottom and right boundary areas
227  // coding tools (loop filter)
228  Bool      m_bLoopFilterDisable;                             ///< flag for using deblocking filter
229  Bool      m_loopFilterOffsetInPPS;                         ///< offset for deblocking filter in 0 = slice header, 1 = PPS
230  Int       m_loopFilterBetaOffsetDiv2;                     ///< beta offset for deblocking filter
231  Int       m_loopFilterTcOffsetDiv2;                       ///< tc offset for deblocking filter
232  Bool      m_DeblockingFilterControlPresent;                 ///< deblocking filter control present flag in PPS
233  Bool      m_DeblockingFilterMetric;                         ///< blockiness metric in encoder
234 
235  // coding tools (PCM)
236  Bool      m_usePCM;                                         ///< flag for using IPCM
237  UInt      m_pcmLog2MaxSize;                                 ///< log2 of maximum PCM block size
238  UInt      m_uiPCMLog2MinSize;                               ///< log2 of minimum PCM block size
239  Bool      m_bPCMFilterDisableFlag;                          ///< PCM filter disable flag
240
241  // coding tools (encoder-only parameters)
242  Bool      m_bUseASR;                                        ///< flag for using adaptive motion search range
243  Bool      m_bUseHADME;                                      ///< flag for using HAD in sub-pel ME
244  Bool      m_useRDOQ;                                       ///< flag for using RD optimized quantization
245  Bool      m_useRDOQTS;                                     ///< flag for using RD optimized quantization for transform skip
246  Int       m_rdPenalty;                                      ///< RD-penalty for 32x32 TU for intra in non-intra slices (0: no RD-penalty, 1: RD-penalty, 2: maximum RD-penalty)
247  Int       m_iFastSearch;                                    ///< ME mode, 0 = full, 1 = diamond, 2 = PMVFAST
248  Int       m_iSearchRange;                                   ///< ME search range
249  Int       m_bipredSearchRange;                              ///< ME search range for bipred refinement
250  Bool      m_bUseFastEnc;                                    ///< flag for using fast encoder setting
251  Bool      m_bUseEarlyCU;                                    ///< flag for using Early CU setting
252  Bool      m_useFastDecisionForMerge;                        ///< flag for using Fast Decision Merge RD-Cost
253  Bool      m_bUseCbfFastMode;                              ///< flag for using Cbf Fast PU Mode Decision
254  Bool      m_useEarlySkipDetection;                         ///< flag for using Early SKIP Detection
255#if FAST_INTRA_SHVC
256  Bool      m_useFastIntraScalable;                          ///< flag for using Fast Intra Decision for Scalable HEVC
257#endif
258  Int       m_sliceMode;                                     ///< 0: no slice limits, 1 : max number of CTBs per slice, 2: max number of bytes per slice,
259                                                             ///< 3: max number of tiles per slice
260  Int       m_sliceArgument;                                 ///< argument according to selected slice mode
261  Int       m_sliceSegmentMode;                              ///< 0: no slice segment limits, 1 : max number of CTBs per slice segment, 2: max number of bytes per slice segment,
262                                                             ///< 3: max number of tiles per slice segment
263  Int       m_sliceSegmentArgument;                          ///< argument according to selected slice segment mode
264
265  Bool      m_bLFCrossSliceBoundaryFlag;  ///< 1: filter across slice boundaries 0: do not filter across slice boundaries
266  Bool      m_bLFCrossTileBoundaryFlag;   ///< 1: filter across tile boundaries  0: do not filter across tile boundaries
267  Bool      m_tileUniformSpacingFlag;
268  Int       m_numTileColumnsMinus1;
269  Int       m_numTileRowsMinus1;
270  std::vector<Int> m_tileColumnWidth;
271  std::vector<Int> m_tileRowHeight;
272#if !SVC_EXTENSION
273  Int       m_iWaveFrontSynchro; //< 0: no WPP. >= 1: WPP is enabled, the "Top right" from which inheritance occurs is this LCU offset in the line above the current.
274  Int       m_iWaveFrontSubstreams; //< If iWaveFrontSynchro, this is the number of substreams per frame (dependent tiles) or per tile (independent tiles).
275#endif
276  Bool      m_bUseConstrainedIntraPred;                       ///< flag for using constrained intra prediction
277  Int       m_decodedPictureHashSEIEnabled;                    ///< Checksum(3)/CRC(2)/MD5(1)/disable(0) acting on decoded picture hash SEI message
278  Int       m_recoveryPointSEIEnabled;
279  Int       m_bufferingPeriodSEIEnabled;
280  Int       m_pictureTimingSEIEnabled;
281  Bool      m_toneMappingInfoSEIEnabled;
282  Int       m_toneMapId;
283  Bool      m_toneMapCancelFlag;
284  Bool      m_toneMapPersistenceFlag;
285  Int       m_toneMapCodedDataBitDepth;
286  Int       m_toneMapTargetBitDepth;
287  Int       m_toneMapModelId; 
288  Int       m_toneMapMinValue;
289  Int       m_toneMapMaxValue;
290  Int       m_sigmoidMidpoint;
291  Int       m_sigmoidWidth;
292  Int       m_numPivots;
293  Int       m_cameraIsoSpeedIdc;
294  Int       m_cameraIsoSpeedValue;
295  Int       m_exposureIndexIdc;
296  Int       m_exposureIndexValue;
297  Int       m_exposureCompensationValueSignFlag;
298  Int       m_exposureCompensationValueNumerator;
299  Int       m_exposureCompensationValueDenomIdc;
300  Int       m_refScreenLuminanceWhite;
301  Int       m_extendedRangeWhiteLevel;
302  Int       m_nominalBlackLevelLumaCodeValue;
303  Int       m_nominalWhiteLevelLumaCodeValue;
304  Int       m_extendedWhiteLevelLumaCodeValue;
305  Int*      m_startOfCodedInterval;
306  Int*      m_codedPivotValue;
307  Int*      m_targetPivotValue;
308  Int       m_framePackingSEIEnabled;
309  Int       m_framePackingSEIType;
310  Int       m_framePackingSEIId;
311  Int       m_framePackingSEIQuincunx;
312  Int       m_framePackingSEIInterpretation;
313  Int       m_displayOrientationSEIAngle;
314  Int       m_temporalLevel0IndexSEIEnabled;
315  Int       m_gradualDecodingRefreshInfoEnabled;
316  Int       m_decodingUnitInfoSEIEnabled;
317#if LAYERS_NOT_PRESENT_SEI
318  Int       m_layersNotPresentSEIEnabled;
319#endif
320  Int       m_SOPDescriptionSEIEnabled;
321  Int       m_scalableNestingSEIEnabled;
322#if Q0189_TMVP_CONSTRAINTS
323  Int       m_TMVPConstraintsSEIEnabled;
324#endif
325  // weighted prediction
326  Bool      m_useWeightedPred;                    ///< Use of weighted prediction in P slices
327  Bool      m_useWeightedBiPred;                  ///< Use of bi-directional weighted prediction in B slices
328 
329  UInt      m_log2ParallelMergeLevel;                         ///< Parallel merge estimation region
330  UInt      m_maxNumMergeCand;                                ///< Max number of merge candidates
331
332  Int       m_TMVPModeId;
333  Int       m_signHideFlag;
334#if !RC_SHVC_HARMONIZATION
335  Bool      m_RCEnableRateControl;                ///< enable rate control or not
336  Int       m_RCTargetBitrate;                    ///< target bitrate when rate control is enabled
337  Int       m_RCKeepHierarchicalBit;              ///< 0: equal bit allocation; 1: fixed ratio bit allocation; 2: adaptive ratio bit allocation
338  Bool      m_RCLCULevelRC;                       ///< true: LCU level rate control; false: picture level rate control
339  Bool      m_RCUseLCUSeparateModel;              ///< use separate R-lambda model at LCU level
340  Int       m_RCInitialQP;                        ///< inital QP for rate control
341  Bool      m_RCForceIntraQP;                     ///< force all intra picture to use initial QP or not
342#endif
343  Int       m_useScalingListId;                               ///< using quantization matrix
344  Char*     m_scalingListFile;                                ///< quantization matrix file name
345
346  Bool      m_TransquantBypassEnableFlag;                     ///< transquant_bypass_enable_flag setting in PPS.
347  Bool      m_CUTransquantBypassFlagForce;                    ///< if transquant_bypass_enable_flag, then, if true, all CU transquant bypass flags will be set to true.
348
349  Bool      m_recalculateQPAccordingToLambda;                 ///< recalculate QP value according to the lambda value
350  Bool      m_useStrongIntraSmoothing;                        ///< enable strong intra smoothing for 32x32 blocks where the reference samples are flat
351  Int       m_activeParameterSetsSEIEnabled;
352
353  Bool      m_vuiParametersPresentFlag;                       ///< enable generation of VUI parameters
354  Bool      m_aspectRatioInfoPresentFlag;                     ///< Signals whether aspect_ratio_idc is present
355  Int       m_aspectRatioIdc;                                 ///< aspect_ratio_idc
356  Int       m_sarWidth;                                       ///< horizontal size of the sample aspect ratio
357  Int       m_sarHeight;                                      ///< vertical size of the sample aspect ratio
358  Bool      m_overscanInfoPresentFlag;                        ///< Signals whether overscan_appropriate_flag is present
359  Bool      m_overscanAppropriateFlag;                        ///< Indicates whether conformant decoded pictures are suitable for display using overscan
360  Bool      m_videoSignalTypePresentFlag;                     ///< Signals whether video_format, video_full_range_flag, and colour_description_present_flag are present
361  Int       m_videoFormat;                                    ///< Indicates representation of pictures
362  Bool      m_videoFullRangeFlag;                             ///< Indicates the black level and range of luma and chroma signals
363  Bool      m_colourDescriptionPresentFlag;                   ///< Signals whether colour_primaries, transfer_characteristics and matrix_coefficients are present
364  Int       m_colourPrimaries;                                ///< Indicates chromaticity coordinates of the source primaries
365  Int       m_transferCharacteristics;                        ///< Indicates the opto-electronic transfer characteristics of the source
366  Int       m_matrixCoefficients;                             ///< Describes the matrix coefficients used in deriving luma and chroma from RGB primaries
367  Bool      m_chromaLocInfoPresentFlag;                       ///< Signals whether chroma_sample_loc_type_top_field and chroma_sample_loc_type_bottom_field are present
368  Int       m_chromaSampleLocTypeTopField;                    ///< Specifies the location of chroma samples for top field
369  Int       m_chromaSampleLocTypeBottomField;                 ///< Specifies the location of chroma samples for bottom field
370  Bool      m_neutralChromaIndicationFlag;                    ///< Indicates that the value of all decoded chroma samples is equal to 1<<(BitDepthCr-1)
371  Bool      m_defaultDisplayWindowFlag;                       ///< Indicates the presence of the default window parameters
372  Int       m_defDispWinLeftOffset;                           ///< Specifies the left offset from the conformance window of the default window
373  Int       m_defDispWinRightOffset;                          ///< Specifies the right offset from the conformance window of the default window
374  Int       m_defDispWinTopOffset;                            ///< Specifies the top offset from the conformance window of the default window
375  Int       m_defDispWinBottomOffset;                         ///< Specifies the bottom offset from the conformance window of the default window
376  Bool      m_frameFieldInfoPresentFlag;                      ///< Indicates that pic_struct values are present in picture timing SEI messages
377  Bool      m_pocProportionalToTimingFlag;                    ///< Indicates that the POC value is proportional to the output time w.r.t. first picture in CVS
378  Int       m_numTicksPocDiffOneMinus1;                       ///< Number of ticks minus 1 that for a POC difference of one
379  Bool      m_bitstreamRestrictionFlag;                       ///< Signals whether bitstream restriction parameters are present
380  Bool      m_tilesFixedStructureFlag;                        ///< Indicates that each active picture parameter set has the same values of the syntax elements related to tiles
381  Bool      m_motionVectorsOverPicBoundariesFlag;             ///< Indicates that no samples outside the picture boundaries are used for inter prediction
382  Int       m_minSpatialSegmentationIdc;                      ///< Indicates the maximum size of the spatial segments in the pictures in the coded video sequence
383  Int       m_maxBytesPerPicDenom;                            ///< Indicates a number of bytes not exceeded by the sum of the sizes of the VCL NAL units associated with any coded picture
384  Int       m_maxBitsPerMinCuDenom;                           ///< Indicates an upper bound for the number of bits of coding_unit() data
385  Int       m_log2MaxMvLengthHorizontal;                      ///< Indicate the maximum absolute value of a decoded horizontal MV component in quarter-pel luma units
386  Int       m_log2MaxMvLengthVertical;                        ///< Indicate the maximum absolute value of a decoded vertical MV component in quarter-pel luma units
387#if O0153_ALT_OUTPUT_LAYER_FLAG
388  Bool      m_altOutputLayerFlag;                             ///< Specifies the value of alt_output_laye_flag in VPS extension
389#endif
390
391#if SVC_EXTENSION
392  Int       m_elRapSliceBEnabled;
393#endif
394#if Q0074_COLOUR_REMAPPING_SEI
395#if !SVC_EXTENSION
396  string    m_colourRemapSEIFile;
397  Int       m_colourRemapSEIId;
398  Bool      m_colourRemapSEICancelFlag;
399  Bool      m_colourRemapSEIPersistenceFlag;
400  Bool      m_colourRemapSEIVideoSignalInfoPresentFlag;
401  Bool      m_colourRemapSEIFullRangeFlag;
402  Int       m_colourRemapSEIPrimaries;
403  Int       m_colourRemapSEITransferFunction;
404  Int       m_colourRemapSEIMatrixCoefficients;
405  Int       m_colourRemapSEIInputBitDepth;
406  Int       m_colourRemapSEIBitDepth;
407  Int       m_colourRemapSEIPreLutNumValMinus1[3];
408  Int*      m_colourRemapSEIPreLutCodedValue[3];
409  Int*      m_colourRemapSEIPreLutTargetValue[3];
410  Bool      m_colourRemapSEIMatrixPresentFlag;
411  Int       m_colourRemapSEILog2MatrixDenom;
412  Int       m_colourRemapSEICoeffs[3][3];
413  Int       m_colourRemapSEIPostLutNumValMinus1[3];
414  Int*      m_colourRemapSEIPostLutCodedValue[3];
415  Int*      m_colourRemapSEIPostLutTargetValue[3];
416#endif
417#endif
418  // internal member functions
419#if LAYER_CTB
420  Void  xSetGlobal      (UInt layerId);                       ///< set global variables
421#else
422  Void  xSetGlobal      ();                                   ///< set global variables
423#endif
424  Void  xCheckParameter ();                                   ///< check validity of configuration values
425  Void  xPrintParameter ();                                   ///< print configuration values
426  Void  xPrintUsage     ();                                   ///< print usage
427#if SVC_EXTENSION
428#if M0040_ADAPTIVE_RESOLUTION_CHANGE
429  Int       m_adaptiveResolutionChange;                       ///< Indicate adaptive resolution change frame
430#endif
431#if HIGHER_LAYER_IRAP_SKIP_FLAG
432  Bool      m_skipPictureAtArcSwitch;                         ///< Indicates that when ARC up-switching is performed the higher layer picture is a skip picture
433#endif
434#if REPN_FORMAT_IN_VPS
435  RepFormatCfg m_repFormatCfg[16];                            ///< Rep_format structures
436#endif
437#if N0383_IL_CONSTRAINED_TILE_SETS_SEI
438  Bool      m_interLayerConstrainedTileSetsSEIEnabled;
439  UInt      m_ilNumSetsInMessage;
440  Bool      m_skippedTileSetPresentFlag;
441  UInt      m_topLeftTileIndex[1024];
442  UInt      m_bottomRightTileIndex[1024];
443  UInt      m_ilcIdc[1024];
444#endif
445#if O0215_PHASE_ALIGNMENT
446  Bool      m_phaseAlignFlag;
447#endif
448#if O0223_PICTURE_TYPES_ALIGN_FLAG
449  Bool      m_crossLayerPictureTypeAlignFlag;
450#endif
451  Bool      m_crossLayerIrapAlignFlag;
452#if P0050_KNEE_FUNCTION_SEI
453  Bool      m_kneeSEIEnabled;
454  Int       m_kneeSEIId;
455  Bool      m_kneeSEICancelFlag;
456  Bool      m_kneeSEIPersistenceFlag;
457  Bool      m_kneeSEIMappingFlag;
458  Int       m_kneeSEIInputDrange;
459  Int       m_kneeSEIInputDispLuminance;
460  Int       m_kneeSEIOutputDrange;
461  Int       m_kneeSEIOutputDispLuminance;
462  Int       m_kneeSEINumKneePointsMinus1;
463  Int*      m_kneeSEIInputKneePoint;
464  Int*      m_kneeSEIOutputKneePoint;
465#endif
466#if Q0096_OVERLAY_SEI
467  Bool                                m_overlaySEIEnabled;
468  Bool                                m_overlayInfoCancelFlag;
469  UInt                                m_overlayContentAuxIdMinus128;
470  UInt                                m_overlayLabelAuxIdMinus128;
471  UInt                                m_overlayAlphaAuxIdMinus128;
472  UInt                                m_overlayElementLabelValueLengthMinus8;
473  UInt                                m_numOverlaysMinus1;
474  std::vector<UInt>                   m_overlayIdx; 
475  std::vector<Bool>                   m_overlayLanguagePresentFlag;
476  std::vector<UInt>                   m_overlayContentLayerId;
477  std::vector<Bool>                   m_overlayLabelPresentFlag;
478  std::vector<UInt>                   m_overlayLabelLayerId;
479  std::vector<Bool>                   m_overlayAlphaPresentFlag;
480  std::vector<UInt>                   m_overlayAlphaLayerId;
481  std::vector<UInt>                   m_numOverlayElementsMinus1;
482  std::vector< std::vector<UInt> >    m_overlayElementLabelMin;
483  std::vector< std::vector<UInt> >    m_overlayElementLabelMax;
484  std::vector<string>                 m_overlayLanguage; 
485  std::vector<string>                 m_overlayName; 
486  std::vector< std::vector<string> >  m_overlayElementName; 
487  Bool                                m_overlayInfoPersistenceFlag;
488#endif
489#if P0068_CROSS_LAYER_ALIGNED_IDR_ONLY_FOR_IRAP_FLAG
490  Bool      m_crossLayerAlignedIdrOnlyFlag;
491#endif
492#if O0149_CROSS_LAYER_BLA_FLAG
493  Bool      m_crossLayerBLAFlag;
494#endif
495#if O0194_WEIGHTED_PREDICTION_CGS
496  Bool      m_useInterLayerWeightedPred;
497#endif
498#if Q0048_CGS_3D_ASYMLUT
499  Int  m_nCGSFlag;
500  Int  m_nCGSMaxOctantDepth;
501  Int  m_nCGSMaxYPartNumLog2;
502  Int  m_nCGSLUTBit;
503#if R0151_CGS_3D_ASYMLUT_IMPROVE
504  Int  m_nCGSAdaptiveChroma;
505#endif
506#if R0179_ENC_OPT_3DLUT_SIZE
507  Int  m_nCGSLutSizeRDO;
508#endif
509#endif
510#endif //SVC_EXTENSION
511public:
512  TAppEncCfg();
513  virtual ~TAppEncCfg();
514 
515public:
516  Void  create    ();                                         ///< create option handling class
517  Void  destroy   ();                                         ///< destroy option handling class
518  Bool  parseCfg  ( Int argc, Char* argv[] );                 ///< parse configuration file to fill member variables
519 
520#if SVC_EXTENSION
521  Int  getNumFrameToBeEncoded()    {return m_framesToBeEncoded; }
522  Int  getNumLayer()               {return m_numLayers;        }
523  Int  getGOPSize()                {return m_iGOPSize;          }
524#if O0194_DIFFERENT_BITDEPTH_EL_BL
525  UInt getInternalBitDepthY(Int iLayer)      {return m_acLayerCfg[iLayer].m_internalBitDepthY; }
526  UInt getInternalBitDepthC(Int iLayer)      {return m_acLayerCfg[iLayer].m_internalBitDepthC; }
527  Bool getPCMInputBitDepthFlag()             {return m_bPCMInputBitDepthFlag;                  }
528#else
529  UInt getInternalBitDepthY()      {return m_internalBitDepthY; }
530  UInt getInternalBitDepthC()      {return m_internalBitDepthC; }
531#endif
532#if !LAYER_CTB
533  UInt getMaxCUWidth()             {return m_uiMaxCUWidth;      }
534  UInt getMaxCUHeight()            {return m_uiMaxCUHeight;     }
535  UInt getMaxCUDepth()             {return m_uiMaxCUDepth;      }
536#endif
537  Int  getDecodingRefreshType()    {return m_iDecodingRefreshType; }
538  Int  getWaveFrontSynchro(Int layerId)        { return m_acLayerCfg[layerId].m_waveFrontSynchro; }
539  Void getDirFilename(string& filename, string& dir, const string path);
540#if OUTPUT_LAYER_SETS_CONFIG
541  Bool scanStringToArray(string const cfgString, Int const numEntries, const char* logString, Int * const returnArray);
542  Bool scanStringToArray(string const cfgString, Int const numEntries, const char* logString, std::vector<Int> &  returnVector);
543  Void cfgStringToArray(Int **arr, string const cfgString, Int const numEntries, const char* logString);
544#else
545  Void cfgStringToArray(Int **arr, string cfgString, Int numEntries, const char* logString);
546#endif
547#if REPN_FORMAT_IN_VPS
548  RepFormatCfg* getRepFormatCfg(Int i)  { return &m_repFormatCfg[i]; }
549#endif
550#if LAYER_CTB
551  Bool getUsePCM()                  { return m_usePCM;               }
552  UInt getPCMLog2MinSize  ()        { return  m_uiPCMLog2MinSize;    }
553#endif
554#endif
555};// END CLASS DEFINITION TAppEncCfg
556
557//! \}
558
559#endif // __TAPPENCCFG__
560
Note: See TracBrowser for help on using the repository browser.