Changeset 1365 in 3DVCSoftware
- Timestamp:
- 28 Oct 2015, 19:50:26 (9 years ago)
- Location:
- branches/HTM-15.2-dev/source/Lib
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-15.2-dev/source/Lib/TLibCommon/TComPrediction.cpp
r1364 r1365 1969 1969 } 1970 1970 1971 Void TComPrediction::xWeightedAverage( TComYuv* pcYuvSrc0, TComYuv* pcYuvSrc1, Int iRefIdx0, Int iRefIdx1, UInt uiPartIdx, Int iWidth, Int iHeight, TComYuv* pcYuvDst, const BitDepths &clipBitDepths 1972 ) 1971 Void TComPrediction::xWeightedAverage( TComYuv* pcYuvSrc0, TComYuv* pcYuvSrc1, Int iRefIdx0, Int iRefIdx1, UInt uiPartIdx, Int iWidth, Int iHeight, TComYuv* pcYuvDst, const BitDepths &clipBitDepths ) 1973 1972 { 1974 1973 if( iRefIdx0 >= 0 && iRefIdx1 >= 0 ) -
branches/HTM-15.2-dev/source/Lib/TLibDecoder/SEIread.cpp
r1360 r1365 311 311 xParseSEIMasteringDisplayColourVolume((SEIMasteringDisplayColourVolume&) *sei, payloadSize, pDecodedMessageOutputStream); 312 312 break; 313 #if NH_MV 313 314 #if !NH_MV_SEI 314 315 case SEI::SUB_BITSTREAM_PROPERTY: … … 395 396 xParseSEIAlternativeDepthInfo((SEIAlternativeDepthInfo&) *sei, payloadSize, pDecodedMessageOutputStream ); 396 397 break; 398 #endif 397 399 #endif 398 400 #endif -
branches/HTM-15.2-dev/source/Lib/TLibDecoder/SEIread.h
r1360 r1365 102 102 Void xResizeSubBitstreamPropertySeiArrays (SEISubBitstreamProperty &sei); 103 103 #endif 104 #endif105 104 #if NH_MV_LAYERS_NOT_PRESENT_SEI 106 105 Void xParseSEILayersNotPresent (SEILayersNotPresent &sei, UInt payloadSize, const TComVPS *vps ,std::ostream *pDecodedMessageOutputStream); … … 133 132 Void xParseSEIAlternativeDepthInfo (SEIAlternativeDepthInfo& sei, UInt payloadSize, std::ostream *pDecodedMessageOutputStream); 134 133 #endif 135 134 #endif 136 135 Void sei_read_code(std::ostream *pOS, UInt uiLength, UInt& ruiCode, const TChar *pSymbolName); 137 136 Void sei_read_uvlc(std::ostream *pOS, UInt& ruiCode, const TChar *pSymbolName); -
branches/HTM-15.2-dev/source/Lib/TLibDecoder/SyntaxElementParser.h
r1360 r1365 49 49 #define READ_SVLC( code, name) xReadSvlcTr ( code, name ) 50 50 #define READ_FLAG( code, name) xReadFlagTr ( code, name ) 51 #if NH_MV 51 52 #define READ_STRING(bufSize, code, length, name) xReadStringTr ( bufSize, code, length, name ) 52 53 #endif 53 54 #else 54 55 … … 59 60 #define READ_SVLC( code, name) xReadSvlc ( code, name ) 60 61 #define READ_FLAG( code, name) xReadFlag ( code, name ) 62 #if NH_MV 61 63 #define READ_STRING(bufSize, code, length, name) xReadString ( bufSize, code, length, name ) 62 64 #endif 63 65 #else 64 66 … … 67 69 #define READ_SVLC( code, name) xReadSvlc ( code ) 68 70 #define READ_FLAG( code, name) xReadFlag ( code ) 71 #if NH_MV 69 72 #define READ_STRING(bufSize, code, length, name) xReadString ( bufSize, code, length ) 73 #endif 70 74 71 75 #endif
Note: See TracChangeset for help on using the changeset viewer.