Changeset 1109 in 3DVCSoftware for branches/HTM-12.2-dev2-HHI/source
- Timestamp:
- 6 Nov 2014, 21:11:53 (10 years ago)
- Location:
- branches/HTM-12.2-dev2-HHI/source/Lib
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-12.2-dev2-HHI/source/Lib/TLibCommon/TypeDef.h
r1106 r1109 297 297 #define HHI_DEPENDENCY_SIGNALLING_I1_J0107 1 298 298 #define HHI_TOOL_PARAMETERS_I2_J0107 1 299 #define HHI_VPS_3D_EXTENSION_I3_J0107 1 299 300 #endif 300 301 #define H_MV_FIX_REF_LAYER_PIC_FLAG 1 -
branches/HTM-12.2-dev2-HHI/source/Lib/TLibDecoder/TDecCAVLC.cpp
r1106 r1109 1194 1194 { 1195 1195 #if H_3D 1196 #if HHI_VPS_3D_EXTENSION_I3_J0107 1197 READ_FLAG( uiCode, "vps_3d_extension_flag" ); 1198 if ( uiCode ) 1199 { 1200 m_pcBitstream->readOutTrailingBits(); 1201 pcVPS->createCamPars(pcVPS->getNumViews()); 1202 parseVPS3dExtension( pcVPS ); 1203 } 1204 READ_FLAG( uiCode, "vps_extension3_flag" ); 1205 if (uiCode) 1206 { 1207 #else 1196 1208 m_pcBitstream->readOutTrailingBits(); 1197 1209 pcVPS->createCamPars(pcVPS->getNumViews()); … … 1200 1212 if (uiCode) 1201 1213 { 1214 #endif 1202 1215 #endif 1203 1216 #endif … … 1877 1890 1878 1891 #if H_3D 1892 #if HHI_VPS_3D_EXTENSION_I3_J0107 1893 Void TDecCavlc::parseVPS3dExtension( TComVPS* pcVPS ) 1894 #else 1879 1895 Void TDecCavlc::parseVPSExtension2( TComVPS* pcVPS ) 1896 #endif 1880 1897 { 1881 1898 UInt uiCode; -
branches/HTM-12.2-dev2-HHI/source/Lib/TLibDecoder/TDecCAVLC.h
r1106 r1109 90 90 #endif 91 91 #if H_3D 92 #if HHI_VPS_3D_EXTENSION_I3_J0107 93 Void parseVPS3dExtension ( TComVPS* pcVPS ); 94 #else 92 95 Void parseVPSExtension2 ( TComVPS* pcVPS ); 96 #endif 93 97 #if HHI_TOOL_PARAMETERS_I2_J0107 94 98 Void parseSPS3dExtension ( TComSPS* pcSPS ); -
branches/HTM-12.2-dev2-HHI/source/Lib/TLibEncoder/TEncCavlc.cpp
r1106 r1109 1007 1007 codeVPSExtension( pcVPS ); 1008 1008 #if H_3D 1009 WRITE_FLAG( 1, "vps_extension2_flag" ); 1009 WRITE_FLAG( 1, "vps_extension2_flag" ); 1010 #if HHI_VPS_3D_EXTENSION_I3_J0107 1011 WRITE_FLAG( 1, "vps_3d_extension_flag" ); 1012 m_pcBitIf->writeAlignOne(); 1013 codeVPS3dExtension( pcVPS ); 1014 #else 1010 1015 m_pcBitIf->writeAlignOne(); 1011 1016 codeVPSExtension2( pcVPS ); 1017 #endif 1012 1018 WRITE_FLAG( 0, "vps_extension3_flag" ); 1013 1019 #else … … 1613 1619 1614 1620 #if H_3D 1621 #if HHI_VPS_3D_EXTENSION_I3_J0107 1622 Void TEncCavlc::codeVPS3dExtension( TComVPS* pcVPS ) 1623 #else 1615 1624 Void TEncCavlc::codeVPSExtension2( TComVPS* pcVPS ) 1625 #endif 1616 1626 { 1617 1627 #if !HHI_TOOL_PARAMETERS_I2_J0107 -
branches/HTM-12.2-dev2-HHI/source/Lib/TLibEncoder/TEncCavlc.h
r1106 r1109 99 99 #endif 100 100 #if H_3D 101 #if HHI_VPS_3D_EXTENSION_I3_J0107 102 Void codeVPS3dExtension ( TComVPS* pcVPS ); 103 #else 101 104 Void codeVPSExtension2 ( TComVPS* pcVPS ); 105 #endif 102 106 #if HHI_TOOL_PARAMETERS_I2_J0107 103 107 Void codeSPS3dExtension ( TComSPS* pcSPS );
Note: See TracChangeset for help on using the changeset viewer.