Changeset 540 in SHVCSoftware for trunk/source/Lib/TLibDecoder/TDecTop.h
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/SHM-4.1-dev (added) merged: 501-539 /trunk merged: 499
- Property svn:mergeinfo changed
-
trunk/source
- Property svn:mergeinfo changed
/branches/SHM-4.1-dev/source (added) merged: 502-522,524-533,535,537-539
- Property svn:mergeinfo changed
-
trunk/source/Lib/TLibDecoder/TDecTop.h
r494 r540 72 72 73 73 TComList<TComPic*> m_cListPic; // Dynamic buffer 74 #if SVC_EXTENSION75 ParameterSetManagerDecoder m_parameterSetManagerDecoder[MAX_LAYERS]; // storage for parameter sets76 #else77 74 ParameterSetManagerDecoder m_parameterSetManagerDecoder; // storage for parameter sets 78 #endif79 80 75 TComSlice* m_apcSlicePilot; 81 76 … … 134 129 TComPic* m_cIlpPic[MAX_NUM_REF]; ///< Inter layer Prediction picture = upsampled picture 135 130 #endif 131 #if OUTPUT_LAYER_SET_INDEX 132 CommonDecoderParams* m_commonDecoderParams; 133 #endif 136 134 #if AVC_SYNTAX || SYNTAX_OUTPUT 137 135 fstream* m_pBLSyntaxFile; 136 #endif 137 138 #if NO_CLRAS_OUTPUT_FLAG 139 Bool m_noClrasOutputFlag; 140 Bool m_layerInitializedFlag; 141 Bool m_firstPicInLayerDecodedFlag; 142 Bool m_noOutputOfPriorPicsFlags; 143 144 Bool m_bRefreshPending; 138 145 #endif 139 146 … … 241 248 #endif 242 249 250 #if NO_CLRAS_OUTPUT_FLAG 251 Int getNoClrasOutputFlag() { return m_noClrasOutputFlag;} 252 Void setNoClrasOutputFlag(Bool x) { m_noClrasOutputFlag = x; } 253 Int getLayerInitializedFlag() { return m_layerInitializedFlag;} 254 Void setLayerInitializedFlag(Bool x) { m_layerInitializedFlag = x; } 255 Int getFirstPicInLayerDecodedFlag() { return m_firstPicInLayerDecodedFlag;} 256 Void setFirstPicInLayerDecodedFlag(Bool x) { m_firstPicInLayerDecodedFlag = x; } 257 Int getNoOutputOfPriorPicsFlags() { return m_noOutputOfPriorPicsFlags;} 258 Void setNoOutputOfPriorPicsFlags(Bool x) { m_noOutputOfPriorPicsFlags = x; } 259 #endif 260 public: 261 #if OUTPUT_LAYER_SET_INDEX 262 CommonDecoderParams* getCommonDecoderParams() { return m_commonDecoderParams; } 263 Void setCommonDecoderParams(CommonDecoderParams* x) { m_commonDecoderParams = x; } 264 Void checkValueOfOutputLayerSetIdx(TComVPS *vps); 265 #endif 266 #if SCALINGLIST_INFERRING 267 ParameterSetManagerDecoder* getParameterSetManager() { return &m_parameterSetManagerDecoder; } 268 #endif 243 269 };// END CLASS DEFINITION TDecTop 244 270
Note: See TracChangeset for help on using the changeset viewer.