Changeset 1367 in 3DVCSoftware
- Timestamp:
- 28 Oct 2015, 20:05:17 (9 years ago)
- Location:
- branches/HTM-15.2-dev/source/Lib/TLibEncoder
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-15.2-dev/source/Lib/TLibEncoder/SEIwrite.cpp
r1360 r1367 902 902 } 903 903 904 904 #if NH_MV 905 905 #if NH_MV_LAYERS_NOT_PRESENT_SEI 906 906 Void SEIWriter::xWriteSEILayersNotPresent(const SEILayersNotPresent& sei) … … 1457 1457 }; 1458 1458 #endif 1459 1459 #endif 1460 1460 1461 1461 //! \} -
branches/HTM-15.2-dev/source/Lib/TLibEncoder/SEIwrite.h
r1360 r1367 81 81 Void xWriteSEIMasteringDisplayColourVolume( const SEIMasteringDisplayColourVolume& sei); 82 82 83 #if NH_MV 83 84 #if NH_MV_SEI 84 85 #if NH_MV_LAYERS_NOT_PRESENT_SEI … … 108 109 Void xWriteSEIAlternativeDepthInfo ( const SEIAlternativeDepthInfo& sei); 109 110 #endif 111 #endif 112 #endif 113 110 114 Void xWriteSEIpayloadData(TComBitIf& bs, const SEI& sei, const TComSPS *sps); 111 115 Void xWriteByteAlign(); 112 116 }; 113 #endif114 117 115 118 //! \} -
branches/HTM-15.2-dev/source/Lib/TLibEncoder/TEncEntropy.h
r1321 r1367 139 139 Void setBitstream ( TComBitIf* p ) { m_pcEntropyCoderIf->setBitstream(p); } 140 140 Void resetBits () { m_pcEntropyCoderIf->resetBits(); } 141 #if NH_MV 141 142 UInt getNumberOfWrittenBits () { 142 #if NH_MV143 143 D_PRINT_INDENT(g_encNumberOfWrittenBits, "NumBits: " + n2s( m_pcEntropyCoderIf->getNumberOfWrittenBits() )) 144 #endif145 144 return m_pcEntropyCoderIf->getNumberOfWrittenBits(); } 145 #else 146 UInt getNumberOfWrittenBits () { return m_pcEntropyCoderIf->getNumberOfWrittenBits(); } 147 #endif 146 148 Void resetEntropy (const TComSlice *pSlice) { m_pcEntropyCoderIf->resetEntropy(pSlice); } 147 149 SliceType determineCabacInitIdx (const TComSlice *pSlice) { return m_pcEntropyCoderIf->determineCabacInitIdx(pSlice); } -
branches/HTM-15.2-dev/source/Lib/TLibEncoder/TEncGOP.cpp
r1360 r1367 605 605 Void TEncGOP::xCreatePictureTimingSEI (Int IRAPGOPid, SEIMessages& seiMessages, SEIMessages& nestedSeiMessages, SEIMessages& duInfoSeiMessages, TComSlice *slice, Bool isField, std::deque<DUData> &duData) 606 606 { 607 #if !NH_MV608 SEIPictureTiming *pictureTimingSEI = new SEIPictureTiming();609 #endif610 607 611 608 const TComVUI *vui = slice->getSPS()->getVuiParameters(); -
branches/HTM-15.2-dev/source/Lib/TLibEncoder/TEncSearch.cpp
r1360 r1367 113 113 , m_iSearchRange (0) 114 114 , m_bipredSearchRange (0) 115 , m_motionEstimationSearchMethod (MESEARCH_FULL) 115 116 , m_pppcRDSbacCoder (NULL) 116 117 , m_pcRDGoOnSbacCoder (NULL) … … 6708 6709 } 6709 6710 6710 6711 6711 DEBUG_STRING_NEW(sSingleStringTest) 6712 6712 #if NH_MV … … 6718 6718 D_PRINT_INC_INDENT(g_traceModeCheck, "NonZero"); 6719 6719 #endif 6720 6721 6720 if (isFirstMode) 6722 6721 { -
branches/HTM-15.2-dev/source/Lib/TLibEncoder/TEncSlice.cpp
r1360 r1367 318 318 else 319 319 { 320 #if NH_MV 320 321 #if 0 // Check this! NH_MV 321 322 rpcSlice->setTemporalLayerNonReferenceFlag(!m_pcCfg->getGOPEntry( (eSliceTypeBaseView == I_SLICE) ? MAX_GOP : iGOPid ).m_refPic); 323 #else 324 rpcSlice->setTemporalLayerNonReferenceFlag(!m_pcCfg->getGOPEntry(iGOPid).m_refPic); 325 #endif 322 326 #else 323 327 rpcSlice->setTemporalLayerNonReferenceFlag(!m_pcCfg->getGOPEntry(iGOPid).m_refPic);
Note: See TracChangeset for help on using the changeset viewer.