Changeset 792 in SHVCSoftware
- Timestamp:
- 6 Jun 2014, 19:53:43 (11 years ago)
- Location:
- branches/SHM-6-dev/source/Lib
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-6-dev/source/Lib/TLibCommon/TypeDef.h
r791 r792 125 125 #endif 126 126 127 #define VPS_RENAME 1 ///< Rename variables max_layer_id and num_layer_sets_minus1 in VPS128 #define VPS_EXTNS 1 ///< Include function structure for VPS extensions129 #if VPS_EXTNS130 127 #define VPS_EXTN_MASK_AND_DIM_INFO 1 ///< Include avc_base_layer_flag, splitting_flag, scalability mask and dimension related info 131 128 #if VPS_EXTN_MASK_AND_DIM_INFO … … 152 149 #define P0182_VPS_VUI_PS_FLAG 1 ///< JCTVC-P0182, add base_layer_parameter_set_compatibility_flag 153 150 #endif //VPS_VUI 154 155 #endif156 151 157 152 #define P0125_REVERT_VPS_EXTN_OFFSET_TO_RESERVED 1 ///< JCTVC-P0125 -- Keep it as a reserved FFFF value --- The following two macros (VPS_EXTN_OFFSET & VPS_EXTN_OFFSET_CALC) will have no effect when this macro is set to 1. -
branches/SHM-6-dev/source/Lib/TLibDecoder/TDecCAVLC.cpp
r791 r792 1016 1016 } 1017 1017 1018 #if VPS_EXTNS1018 #if SVC_EXTENSION 1019 1019 READ_FLAG( uiCode, "vps_extension_flag" ); pcVPS->setVpsExtensionFlag( uiCode ? true : false ); 1020 1020 … … 1061 1061 1062 1062 #if SVC_EXTENSION 1063 #if VPS_EXTNS1064 1063 Void TDecCavlc::parseVPSExtension(TComVPS *vps) 1065 1064 { … … 1901 1900 #endif 1902 1901 } 1903 #endif1904 1902 1905 1903 #if REPN_FORMAT_IN_VPS -
branches/SHM-6-dev/source/Lib/TLibDecoder/TDecCAVLC.h
r677 r792 76 76 Void parseVPS ( TComVPS* pcVPS ); 77 77 #if SPS_EXTENSION 78 #if VPS_EXTNS79 78 Void parseVPSExtension ( TComVPS* pcVPS ); 80 79 Void defaultVPSExtension ( TComVPS* pcVPS ); 81 #endif82 80 83 81 #if VPS_VUI -
branches/SHM-6-dev/source/Lib/TLibEncoder/TEncCavlc.cpp
r791 r792 799 799 } 800 800 } 801 #if VPS_EXTNS801 #if SVC_EXTENSION 802 802 // When MaxLayersMinus1 is greater than 0, vps_extension_flag shall be equal to 1. 803 803 if( pcVPS->getMaxLayers() > 1 ) … … 833 833 834 834 #if SVC_EXTENSION 835 #if VPS_EXTNS836 835 Void TEncCavlc::codeVPSExtension (TComVPS *vps) 837 836 { … … 1326 1325 #endif // 0109_MOVE_VPS_FLAG 1327 1326 } 1328 #endif 1327 1329 1328 #if REPN_FORMAT_IN_VPS 1330 1329 Void TEncCavlc::codeRepFormat( RepFormat *repFormat ) -
branches/SHM-6-dev/source/Lib/TLibEncoder/TEncCavlc.h
r677 r792 160 160 161 161 #if SPS_EXTENSION 162 Void codeSPSExtension ( TComSPS* pcSPS ); 163 #if VPS_EXTNS 164 Void codeVPSExtension ( TComVPS* pcVPS ); 165 #endif 162 Void codeSPSExtension ( TComSPS* pcSPS ); 163 Void codeVPSExtension ( TComVPS* pcVPS ); 166 164 #if VPS_VUI 167 Void codeVPSVUI 165 Void codeVPSVUI (TComVPS *vps); 168 166 #endif 169 167 #if REPN_FORMAT_IN_VPS 170 Void codeRepFormat 168 Void codeRepFormat ( RepFormat *repFormat ); 171 169 #endif 172 170 #if VPS_DPB_SIZE_TABLE 173 Void codeVpsDpbSizeTable 171 Void codeVpsDpbSizeTable (TComVPS *vps); 174 172 #endif 175 173 #if Q0048_CGS_3D_ASYMLUT
Note: See TracChangeset for help on using the changeset viewer.