Changeset 1024 in 3DVCSoftware for branches/HTM-11.2-dev2-Samsung
- Timestamp:
- 29 Jul 2014, 03:58:02 (10 years ago)
- Location:
- branches/HTM-11.2-dev2-Samsung
- Files:
-
- 5 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-11.2-dev2-Samsung/source/Lib/TLibCommon/TypeDef.h
r1017 r1024 257 257 #define KWU_RC_VIEWRC_E0227 0 ///< JCT3V-E0227, view-wise target bitrate allocation 258 258 #define KWU_RC_MADPRED_E0227 0 ///< JCT3V-E0227, inter-view MAD prediction 259 260 #define SEC_VPS_CLEANUP_I0090 1 259 261 260 262 #endif // H_3D -
branches/HTM-11.2-dev2-Samsung/source/Lib/TLibDecoder/TDecCAVLC.cpp
r1007 r1024 1758 1758 { 1759 1759 UInt uiCode; 1760 #if SEC_VPS_CLEANUP_I0090 1761 for( Int i = 1; i <= pcVPS->getMaxLayersMinus1(); i++ ) 1762 #else 1760 1763 for( Int i = 0; i <= pcVPS->getMaxLayersMinus1(); i++ ) 1764 #endif 1761 1765 { 1762 1766 #if H_3D_ARP … … 1767 1771 pcVPS->setSubPULog2Size(i, 0); 1768 1772 #endif 1773 #if !SEC_VPS_CLEANUP_I0090 1769 1774 if ( i != 0 ) 1775 #endif 1770 1776 { 1771 1777 #if MTK_I0099_VPS_EX2 … … 1849 1855 1850 1856 READ_UVLC( uiCamParPrecision, "cp_precision" ); 1857 #if SEC_VPS_CLEANUP_I0090 1858 for (UInt viewIndex=1; viewIndex<pcVPS->getNumViews(); viewIndex++) 1859 #else 1851 1860 for (UInt viewIndex=0; viewIndex<pcVPS->getNumViews(); viewIndex++) 1861 #endif 1852 1862 { 1853 1863 pcVPS->setCamParPresent ( viewIndex, false ); -
branches/HTM-11.2-dev2-Samsung/source/Lib/TLibEncoder/TEncCavlc.cpp
r1007 r1024 1560 1560 Void TEncCavlc::codeVPSExtension2( TComVPS* pcVPS ) 1561 1561 { 1562 #if SEC_VPS_CLEANUP_I0090 1563 for( Int i = 1; i <= pcVPS->getMaxLayersMinus1(); i++ ) 1564 #else 1562 1565 for( Int i = 0; i <= pcVPS->getMaxLayersMinus1(); i++ ) 1563 { 1566 #endif 1567 { 1568 #if !SEC_VPS_CLEANUP_I0090 1564 1569 if (i!= 0) 1570 #endif 1565 1571 { 1566 1572 #if MTK_I0099_VPS_EX2 … … 1621 1627 } 1622 1628 WRITE_UVLC( pcVPS->getCamParPrecision(), "cp_precision" ); 1629 #if SEC_VPS_CLEANUP_I0090 1630 for (UInt viewIndex=1; viewIndex<pcVPS->getNumViews(); viewIndex++) 1631 #else 1623 1632 for (UInt viewIndex=0; viewIndex<pcVPS->getNumViews(); viewIndex++) 1633 #endif 1624 1634 { 1625 1635 WRITE_FLAG( pcVPS->getCamParPresent(viewIndex) ? 1 : 0, "cp_present_flag[i]" );
Note: See TracChangeset for help on using the changeset viewer.