Changeset 427 in SHVCSoftware for branches/SHM-3.1-dev/source/Lib/TLibDecoder
- Timestamp:
- 10 Oct 2013, 08:21:30 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified branches/SHM-3.1-dev/source/Lib/TLibDecoder/TDecCAVLC.cpp ¶
r426 r427 1083 1083 } 1084 1084 1085 for( Inti = 0; i < vps->getNumViews(); i++ )1085 for( i = 0; i < vps->getNumViews(); i++ ) 1086 1086 { 1087 1087 READ_CODE( vps->getViewIdLenMinus1( ) + 1, uiCode, "view_id_val[i]" ); vps->setViewIdVal( i, uiCode ); … … 1553 1553 { 1554 1554 #if POC_RESET_FLAG 1555 Int i = 0;1556 if(rpcSlice->getPPS()->getNumExtraSliceHeaderBits() > i )1555 Int iBits = 0; 1556 if(rpcSlice->getPPS()->getNumExtraSliceHeaderBits() > iBits) 1557 1557 { 1558 1558 READ_FLAG(uiCode, "poc_reset_flag"); rpcSlice->setPocResetFlag( uiCode ? true : false ); 1559 i ++;1560 } 1561 if(rpcSlice->getPPS()->getNumExtraSliceHeaderBits() > i )1559 iBits++; 1560 } 1561 if(rpcSlice->getPPS()->getNumExtraSliceHeaderBits() > iBits) 1562 1562 { 1563 1563 READ_FLAG(uiCode, "discardable_flag"); // ignored 1564 i ++;1565 } 1566 for (; i < rpcSlice->getPPS()->getNumExtraSliceHeaderBits(); i++)1564 iBits++; 1565 } 1566 for (; iBits < rpcSlice->getPPS()->getNumExtraSliceHeaderBits(); iBits++) 1567 1567 { 1568 1568 READ_FLAG(uiCode, "slice_reserved_undetermined_flag[]"); // ignored
Note: See TracChangeset for help on using the changeset viewer.