Changeset 431 in SHVCSoftware for branches/SHM-3.1-dev/source/Lib/TLibDecoder/TDecCAVLC.cpp
- Timestamp:
- 11 Oct 2013, 05:54:02 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-3.1-dev/source/Lib/TLibDecoder/TDecCAVLC.cpp
r427 r431 1614 1614 READ_CODE(sps->getBitsForPOC(), uiCode, "pic_order_cnt_lsb"); 1615 1615 Int iPOClsb = uiCode; 1616 Int iPrevPOC = rpcSlice->getPrev POC();1616 Int iPrevPOC = rpcSlice->getPrevTid0POC(); 1617 1617 Int iMaxPOClsb = 1<< sps->getBitsForPOC(); 1618 Int iPrevPOClsb = iPrevPOC %iMaxPOClsb;1618 Int iPrevPOClsb = iPrevPOC & (iMaxPOClsb - 1); 1619 1619 Int iPrevPOCmsb = iPrevPOC-iPrevPOClsb; 1620 1620 Int iPOCmsb; … … 1738 1738 rps->setDeltaPOC(j, - rpcSlice->getPOC() + pocLsbLt); 1739 1739 rps->setCheckLTMSBPresent(j,false); 1740 1741 // reset deltaPocMSBCycleLT for first LTRP from slice header if MSB not present 1742 if( j == offset+(numOfLtrp-numLtrpInSPS)-1 ) 1743 { 1744 deltaPocMSBCycleLT = 0; 1745 } 1740 1746 } 1741 1747 prevDeltaMSB = deltaPocMSBCycleLT;
Note: See TracChangeset for help on using the changeset viewer.