Changeset 1282 in SHVCSoftware
- Timestamp:
- 16 Jul 2015, 04:16:56 (9 years ago)
- Location:
- branches/SHM-dev/source
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-dev/source/App/TAppDecoder/TAppDecCfg.h
r1259 r1282 129 129 130 130 #if CONFORMANCE_BITSTREAM_MODE 131 Bool const getConfModeFlag() { return m_confModeFlag; } 132 std::string const getConfPrefix() { return m_confPrefix;} 133 std::string const getMetadataFileName() { return m_metadataFileName; } 134 Bool const getMetadataFileRefresh() {return m_metadataFileRefresh; } 135 Void setMetadataFileRefresh(Bool const x) {m_metadataFileRefresh = x; } 136 Void setDecodedYuvLayerFileName(Int layerId, std::string x) { m_decodedYuvLayerFileName[layerId] = x; } 137 std::string const getDecodedYuvLayerFileName(Int layerId) { return m_decodedYuvLayerFileName[layerId]; } 138 Bool const getDecodedYuvLayerRefresh(Int const layerId) {return m_decodedYuvLayerRefresh[layerId]; } 139 Void setDecodedYuvLayerRefresh(Int const layerId, Bool const x) {m_decodedYuvLayerRefresh[layerId] = x; } 131 Bool getConfModeFlag() const { return m_confModeFlag; } 132 std::string getConfPrefix() const { return m_confPrefix; } 133 std::string getMetadataFileName() const { return m_metadataFileName; } 134 Bool getMetadataFileRefresh() const {return m_metadataFileRefresh; } 135 136 std::string getDecodedYuvLayerFileName(Int layerId) const { return m_decodedYuvLayerFileName[layerId]; } 137 Bool getDecodedYuvLayerRefresh(const Int layerId) const { return m_decodedYuvLayerRefresh[layerId]; } 138 139 Void setMetadataFileRefresh(const Bool x) { m_metadataFileRefresh = x; } 140 Void setDecodedYuvLayerFileName(Int layerId, std::string x) { m_decodedYuvLayerFileName[layerId] = x; } 141 Void setDecodedYuvLayerRefresh(const Int layerId, const Bool x) { m_decodedYuvLayerRefresh[layerId] = x; } 140 142 #endif 141 143 #endif -
branches/SHM-dev/source/Lib/TLibDecoder/TDecTop.cpp
r1278 r1282 1321 1321 if( is16bit ) 1322 1322 { 1323 1323 uiPos <<= 1; 1324 1324 } 1325 1325 -
branches/SHM-dev/source/Lib/TLibDecoder/TDecTop.h
r1263 r1282 251 251 252 252 #if CONFORMANCE_BITSTREAM_MODE 253 std::vector<TComPic>* getConfListPic() { return &m_confListPic; }254 Bool const getConfModeFlag(){ return m_confModeFlag; }255 Void setConfModeFlag(Bool x) { m_confModeFlag = x;}253 std::vector<TComPic>* getConfListPic() { return &m_confListPic; } 254 Bool getConfModeFlag() const { return m_confModeFlag; } 255 Void setConfModeFlag(Bool x) { m_confModeFlag = x; } 256 256 #endif 257 257 #endif //SVC_EXTENSION
Note: See TracChangeset for help on using the changeset viewer.