Changeset 926 in SHVCSoftware for branches/SHM-upgrade/source/Lib/TLibDecoder
- Timestamp:
- 10 Dec 2014, 02:35:15 (10 years ago)
- Location:
- branches/SHM-upgrade/source/Lib/TLibDecoder
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-upgrade/source/Lib/TLibDecoder/TDecCAVLC.cpp
r918 r926 2430 2430 #endif 2431 2431 2432 #if REPN_FORMAT_IN_VPS 2433 Int qpBdOffsetY = pcCU->getSlice()->getQpBDOffsetY(); 2434 #else 2432 2435 Int qpBdOffsetY = pcCU->getSlice()->getSPS()->getQpBDOffset(CHANNEL_TYPE_LUMA); 2436 #endif 2433 2437 qp = (((Int) pcCU->getRefQP( uiAbsPartIdx ) + iDQp + 52 + 2*qpBdOffsetY )%(52+ qpBdOffsetY)) - qpBdOffsetY; 2434 2438 -
branches/SHM-upgrade/source/Lib/TLibDecoder/TDecCu.cpp
r916 r926 223 223 TComSlice * pcSlice = pcCU->getPic()->getSlice(pcCU->getPic()->getCurrSliceIdx()); 224 224 #if REPN_FORMAT_IN_VPS 225 if( ( uiRPelX < pcSlice->get SPS()->getPicWidthInLumaSamples() ) && ( uiBPelY < pcSlice->getPicHeightInLumaSamples() ) )225 if( ( uiRPelX < pcSlice->getPicWidthInLumaSamples() ) && ( uiBPelY < pcSlice->getPicHeightInLumaSamples() ) ) 226 226 #else 227 227 if( ( uiRPelX < pcSlice->getSPS()->getPicWidthInLumaSamples() ) && ( uiBPelY < pcSlice->getSPS()->getPicHeightInLumaSamples() ) )
Note: See TracChangeset for help on using the changeset viewer.