Changeset 930 in SHVCSoftware for branches/SHM-dev/source/Lib/TLibDecoder
- Timestamp:
- 17 Dec 2014, 01:38:36 (11 years ago)
- Location:
- branches/SHM-dev/source/Lib/TLibDecoder
- Files:
-
- 2 edited
-
TDecGop.cpp (modified) (1 diff)
-
TDecGop.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-dev/source/Lib/TLibDecoder/TDecGop.cpp
r924 r930 52 52 53 53 #if CONFORMANCE_BITSTREAM_MODE 54 Bool pocCompareFunction( TComPic &pic1,TComPic &pic2 )55 { 56 return ( pic1.getPOC() < pic2.getPOC());54 Bool pocCompareFunction( const TComPic &pic1, const TComPic &pic2 ) 55 { 56 return (const_cast<TComPic&>(pic1).getPOC() < const_cast<TComPic&>(pic2).getPOC()); 57 57 } 58 58 #endif -
branches/SHM-dev/source/Lib/TLibDecoder/TDecGop.h
r856 r930 115 115 Void filterPicture (TComPic*& rpcPic ); 116 116 117 void setDecodedPictureHashSEIEnabled(Int enabled) { m_decodedPictureHashSEIEnabled = enabled; }117 Void setDecodedPictureHashSEIEnabled(Int enabled) { m_decodedPictureHashSEIEnabled = enabled; } 118 118 #if Q0074_COLOUR_REMAPPING_SEI 119 void setColourRemappingInfoSEIEnabled(Int enabled) { m_colourRemapSEIEnabled = enabled; }119 Void setColourRemappingInfoSEIEnabled(Int enabled) { m_colourRemapSEIEnabled = enabled; } 120 120 #endif 121 121 #if SVC_EXTENSION
Note: See TracChangeset for help on using the changeset viewer.