Changeset 1307 in SHVCSoftware for branches/SHM-dev/source/Lib/TLibDecoder


Ignore:
Timestamp:
21 Jul 2015, 01:21:46 (10 years ago)
Author:
seregin
Message:

port rev 4363

Location:
branches/SHM-dev/source/Lib/TLibDecoder
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • branches/SHM-dev/source/Lib/TLibDecoder/SEIread.cpp

    r1302 r1307  
    104104  {
    105105    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";
    107107  }
    108108}
     
    647647  }
    648648#else
    649   const TComVUI *vui = sps->getVuiParameters();
    650 
     649  const TComVUI *vui = sps->getVuiParameters();
    651650  if(vui->getHrdParameters()->getSubPicCpbParamsInPicTimingSEIFlag())
    652651  {
  • branches/SHM-dev/source/Lib/TLibDecoder/TDecCAVLC.cpp

    r1295 r1307  
    26562656}
    26572657
    2658 Void TDecCavlc::parseExplicitRdpcmMode( TComTU &rTu, ComponentID compID )
     2658Void TDecCavlc::parseExplicitRdpcmMode( TComTU& /*rTu*/, ComponentID /*compID*/ )
    26592659{
    26602660  assert(0);
  • branches/SHM-dev/source/Lib/TLibDecoder/TDecCu.cpp

    r1290 r1307  
    442442  m_ppcYuvResi[uiDepth]->clear();
    443443
    444   m_ppcCU[uiDepth]->copySubCU( pCtu, uiAbsPartIdx, uiDepth );
     444  m_ppcCU[uiDepth]->copySubCU( pCtu, uiAbsPartIdx );
    445445
    446446  switch( m_ppcCU[uiDepth]->getPredictionMode(0) )
  • branches/SHM-dev/source/Lib/TLibDecoder/TDecTop.cpp

    r1295 r1307  
    17761776      scalingList.setDefaultScalingList();
    17771777    }
    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);
    17831779    m_cTrQuant.setUseScalingList(true);
    17841780  }
     
    17911787    };
    17921788#if SVC_EXTENSION
    1793     m_cTrQuant.setFlatScalingList(pcSlice->getChromaFormatIdc(), maxLog2TrDynamicRange, pcSlice->getBitDepths());
     1789    m_cTrQuant.setFlatScalingList(maxLog2TrDynamicRange, pcSlice->getBitDepths());
    17941790#else
    1795     m_cTrQuant.setFlatScalingList(pcSlice->getSPS()->getChromaFormatIdc(), maxLog2TrDynamicRange, pcSlice->getSPS()->getBitDepths());
     1791    m_cTrQuant.setFlatScalingList(maxLog2TrDynamicRange, pcSlice->getSPS()->getBitDepths());
    17961792#endif
    17971793    m_cTrQuant.setUseScalingList(false);
Note: See TracChangeset for help on using the changeset viewer.