Changeset 1307 in SHVCSoftware for branches/SHM-dev/source/Lib/TLibDecoder
- Timestamp:
- 21 Jul 2015, 01:21:46 (10 years ago)
- Location:
- branches/SHM-dev/source/Lib/TLibDecoder
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-dev/source/Lib/TLibDecoder/SEIread.cpp
r1302 r1307 104 104 { 105 105 std::string seiMessageHdr(SEI::getSEIMessageString(sei.payloadType())); seiMessageHdr+=" SEI message"; 106 (*pDecodedMessageOutputStream) << std::setfill('-') << std::setw(seiMessageHdr.size()) << "-" << std::setfill(' ') << "\n" << seiMessageHdr << " \n";106 (*pDecodedMessageOutputStream) << std::setfill('-') << std::setw(seiMessageHdr.size()) << "-" << std::setfill(' ') << "\n" << seiMessageHdr << " (" << payloadSize << " bytes)"<< "\n"; 107 107 } 108 108 } … … 647 647 } 648 648 #else 649 const TComVUI *vui = sps->getVuiParameters(); 650 649 const TComVUI *vui = sps->getVuiParameters(); 651 650 if(vui->getHrdParameters()->getSubPicCpbParamsInPicTimingSEIFlag()) 652 651 { -
branches/SHM-dev/source/Lib/TLibDecoder/TDecCAVLC.cpp
r1295 r1307 2656 2656 } 2657 2657 2658 Void TDecCavlc::parseExplicitRdpcmMode( TComTU &rTu, ComponentID compID)2658 Void TDecCavlc::parseExplicitRdpcmMode( TComTU& /*rTu*/, ComponentID /*compID*/ ) 2659 2659 { 2660 2660 assert(0); -
branches/SHM-dev/source/Lib/TLibDecoder/TDecCu.cpp
r1290 r1307 442 442 m_ppcYuvResi[uiDepth]->clear(); 443 443 444 m_ppcCU[uiDepth]->copySubCU( pCtu, uiAbsPartIdx , uiDepth);444 m_ppcCU[uiDepth]->copySubCU( pCtu, uiAbsPartIdx ); 445 445 446 446 switch( m_ppcCU[uiDepth]->getPredictionMode(0) ) -
branches/SHM-dev/source/Lib/TLibDecoder/TDecTop.cpp
r1295 r1307 1776 1776 scalingList.setDefaultScalingList(); 1777 1777 } 1778 #if SVC_EXTENSION 1779 m_cTrQuant.setScalingListDec(scalingList, pcSlice->getChromaFormatIdc()); 1780 #else 1781 m_cTrQuant.setScalingListDec(scalingList, pcSlice->getSPS()->getChromaFormatIdc()); 1782 #endif 1778 m_cTrQuant.setScalingListDec(scalingList); 1783 1779 m_cTrQuant.setUseScalingList(true); 1784 1780 } … … 1791 1787 }; 1792 1788 #if SVC_EXTENSION 1793 m_cTrQuant.setFlatScalingList( pcSlice->getChromaFormatIdc(),maxLog2TrDynamicRange, pcSlice->getBitDepths());1789 m_cTrQuant.setFlatScalingList(maxLog2TrDynamicRange, pcSlice->getBitDepths()); 1794 1790 #else 1795 m_cTrQuant.setFlatScalingList( pcSlice->getSPS()->getChromaFormatIdc(),maxLog2TrDynamicRange, pcSlice->getSPS()->getBitDepths());1791 m_cTrQuant.setFlatScalingList(maxLog2TrDynamicRange, pcSlice->getSPS()->getBitDepths()); 1796 1792 #endif 1797 1793 m_cTrQuant.setUseScalingList(false);
Note: See TracChangeset for help on using the changeset viewer.