Changeset 1029 in SHVCSoftware for branches/SHM-dev/source/App/TAppEncoder/TAppEncLayerCfg.h
- Timestamp:
- 26 Feb 2015, 00:21:54 (10 years ago)
- Location:
- branches/SHM-dev
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-dev
- Property svn:mergeinfo changed
-
branches/SHM-dev/source
- Property svn:mergeinfo changed
-
branches/SHM-dev/source/App/TAppEncoder/TAppEncLayerCfg.h
r978 r1029 10 10 #include "TLibEncoder/TEncCfg.h" 11 11 #include <sstream> 12 #include <iomanip> 12 13 13 14 using namespace std; … … 42 43 Int m_iIntraPeriod; ///< period of I-slice (random access period) 43 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; 44 51 #if AUXILIARY_PICTURES 45 ChromaFormat m_chromaFormatIDC; 46 ChromaFormat m_InputChromaFormat; 47 Int m_auxId; 52 Int m_auxId; 48 53 #endif 49 54 #if VPS_EXTN_DIRECT_REF_LAYERS … … 88 93 Int* m_aidQP; ///< array of slice QP values 89 94 TAppEncCfg* m_cAppEncCfg; ///< pointer to app encoder config 90 Int m_numScaledRefLayerOffsets 95 Int m_numScaledRefLayerOffsets; 91 96 #if O0098_SCALED_REF_LAYER_ID 92 97 Int m_scaledRefLayerId [MAX_LAYERS]; … … 115 120 #endif 116 121 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_internalBitDepth Y; ///< 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 122 Int m_inputBitDepth [MAX_NUM_CHANNEL_TYPE]; ///< bit-depth of input file 123 Int m_outputBitDepth [MAX_NUM_CHANNEL_TYPE]; ///< bit-depth of output file 124 Int m_MSBExtendedBitDepth[MAX_NUM_CHANNEL_TYPE]; ///< bit-depth of input samples after MSB extension 125 Int m_internalBitDepth[MAX_NUM_CHANNEL_TYPE]; ///< bit-depth codec operates at (input/output files will be converted) 126 UInt m_saoOffsetBitShift[MAX_NUM_CHANNEL_TYPE]; 127 Bool m_useExtendedPrecision; 128 Bool m_useHighPrecisionPredictionWeighting; 129 125 130 #if REPN_FORMAT_IN_VPS 126 131 Int m_repFormatIdx; … … 154 159 #endif 155 160 161 #if MULTIPLE_PTL_SUPPORT 162 // profile/level 163 Int m_layerPTLIdx; 164 #endif 165 156 166 public: 157 167 TAppEncLayerCfg(); … … 182 192 Int getConfWinBottom() {return m_confWinBottom; } 183 193 #if AUXILIARY_PICTURES 184 ChromaFormat getInputChromaFormat() {return m_InputChromaFormat ;}194 ChromaFormat getInputChromaFormat() {return m_InputChromaFormatIDC;} 185 195 ChromaFormat getChromaFormatIDC() {return m_chromaFormatIDC; } 186 196 Int getAuxId() {return m_auxId; }
Note: See TracChangeset for help on using the changeset viewer.