Changeset 974 in 3DVCSoftware
- Timestamp:
- 6 Jul 2014, 05:24:49 (10 years ago)
- Location:
- branches/HTM-11.1-dev0/source/Lib
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-11.1-dev0/source/Lib/TLibCommon/TComSlice.h
r973 r974 850 850 Void setVPSId (Int i) { m_VPSId = i; } 851 851 852 #if H_MV 852 853 Void setVpsBaseLayerInternalFlag( Bool flag ) { m_vpsBaseLayerInternalFlag = flag; } 853 854 Bool getVpsBaseLayerInternalFlag( ) { return m_vpsBaseLayerInternalFlag; } 855 #endif 854 856 855 857 UInt getMaxTLayers () { return m_uiMaxTLayers; } -
branches/HTM-11.1-dev0/source/Lib/TLibDecoder/TDecCAVLC.cpp
r973 r974 1407 1407 } 1408 1408 } 1409 #endif1410 1409 1411 1410 READ_FLAG( uiCode, "max_one_active_ref_layer_flag" ); pcVPS->setMaxOneActiveRefLayerFlag ( uiCode == 1 ); … … 1862 1861 } 1863 1862 #endif 1864 1863 #endif 1865 1864 #if H_MV 1866 1865 Void TDecCavlc::parseSliceHeader (TComSlice*& rpcSlice, ParameterSetManagerDecoder *parameterSetManager, Int targetOlsIdx) -
branches/HTM-11.1-dev0/source/Lib/TLibDecoder/TDecSbac.h
r971 r974 89 89 #if H_MV 90 90 Void parseSliceHeader ( TComSlice*& /*rpcSlice*/, ParameterSetManagerDecoder* /*parameterSetManager*/, Int targetOlsIdx ) {} 91 #else 92 Void parseSliceHeader ( TComSlice*& /*rpcSlice*/, ParameterSetManagerDecoder* /*parameterSetManager*/ ) {} 91 93 #endif 92 94 Void parseTerminatingBit ( UInt& ruiBit ); -
branches/HTM-11.1-dev0/source/Lib/TLibEncoder/TEncCavlc.cpp
r972 r974 833 833 WRITE_FLAG( pcSPS->getSpsMultilayerExtensionFlag( ) ? 1 : 0 , "sps_multilayer_extension_flag" ); 834 834 #if !H_3D 835 WRITE_CODE( pcSPS->getSpsExtension6bits( ), 6, "sps_extension_6bits" ); 835 WRITE_CODE( pcSPS->getSpsExtension6bits( ), 6, "sps_extension_6bits" ); 836 836 #else 837 837 WRITE_FLAG( pcSPS->getSps3dExtensionFlag( ) ? 1 : 0 , "sps_3d_extension_flag" ); 838 838 WRITE_CODE( pcSPS->getSpsExtension5bits( ), 5, "sps_extension_5bits" ); 839 } 839 #endif 840 } 840 841 841 842 if ( pcSPS->getSpsRangeExtensionsFlag() ) … … 857 858 #endif 858 859 #endif 859 #endif 860 860 861 } 861 862
Note: See TracChangeset for help on using the changeset viewer.