Changeset 770 in 3DVCSoftware


Ignore:
Timestamp:
13 Jan 2014, 08:21:44 (10 years ago)
Author:
tech
Message:

Further fixes.

Location:
branches/HTM-9.2-dev0/source/Lib
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/HTM-9.2-dev0/source/Lib/TLibDecoder/TDecCu.cpp

    r767 r770  
    762762        pReco    [ uiX ] = ClipY( pPred[ uiX ] + pResi[ uiX ] );
    763763      }
     764#else
     765      pReco    [ uiX ] = ClipY( pPred[ uiX ] + pResi[ uiX ] );
    764766#endif
    765767      pRecIPred[ uiX ] = pReco[ uiX ];
  • branches/HTM-9.2-dev0/source/Lib/TLibDecoder/TDecTop.cpp

    r769 r770  
    13241324    else
    13251325    {
    1326 #if H_MV_FIX_SKIP_PICTURES
     1326#if H_MV
    13271327      static Bool warningMessage[MAX_NUM_LAYERS];
    13281328      static Bool warningInitFlag = false;
  • branches/HTM-9.2-dev0/source/Lib/TLibEncoder/TEncCavlc.cpp

    r768 r770  
    16651665      WRITE_CODE( picOrderCntLSB, pcSlice->getSPS()->getBitsForPOC(), "slice_pic_order_cnt_lsb");
    16661666    }
     1667#else
     1668      Int picOrderCntLSB = (pcSlice->getPOC()-pcSlice->getLastIDR()+(1<<pcSlice->getSPS()->getBitsForPOC())) & ((1<<pcSlice->getSPS()->getBitsForPOC())-1);
     1669      WRITE_CODE( picOrderCntLSB, pcSlice->getSPS()->getBitsForPOC(), "pic_order_cnt_lsb");
    16671670#endif
    16681671    if( !pcSlice->getIdrPicFlag() )
Note: See TracChangeset for help on using the changeset viewer.