Changeset 926 in SHVCSoftware for branches/SHM-upgrade/source/Lib/TLibDecoder


Ignore:
Timestamp:
10 Dec 2014, 02:35:15 (10 years ago)
Author:
seregin
Message:

fix compiler warnings, rep format

Location:
branches/SHM-upgrade/source/Lib/TLibDecoder
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/SHM-upgrade/source/Lib/TLibDecoder/TDecCAVLC.cpp

    r918 r926  
    24302430#endif
    24312431
     2432#if REPN_FORMAT_IN_VPS
     2433  Int qpBdOffsetY = pcCU->getSlice()->getQpBDOffsetY();
     2434#else
    24322435  Int qpBdOffsetY = pcCU->getSlice()->getSPS()->getQpBDOffset(CHANNEL_TYPE_LUMA);
     2436#endif
    24332437  qp = (((Int) pcCU->getRefQP( uiAbsPartIdx ) + iDQp + 52 + 2*qpBdOffsetY )%(52+ qpBdOffsetY)) -  qpBdOffsetY;
    24342438
  • branches/SHM-upgrade/source/Lib/TLibDecoder/TDecCu.cpp

    r916 r926  
    223223  TComSlice * pcSlice = pcCU->getPic()->getSlice(pcCU->getPic()->getCurrSliceIdx());
    224224#if REPN_FORMAT_IN_VPS
    225   if( ( uiRPelX < pcSlice->getSPS()->getPicWidthInLumaSamples() ) && ( uiBPelY < pcSlice->getPicHeightInLumaSamples() ) )
     225  if( ( uiRPelX < pcSlice->getPicWidthInLumaSamples() ) && ( uiBPelY < pcSlice->getPicHeightInLumaSamples() ) )
    226226#else
    227227  if( ( uiRPelX < pcSlice->getSPS()->getPicWidthInLumaSamples() ) && ( uiBPelY < pcSlice->getSPS()->getPicHeightInLumaSamples() ) )
Note: See TracChangeset for help on using the changeset viewer.