Changeset 874 in SHVCSoftware for branches/SHM-dev/source/Lib/TLibDecoder/TDecCAVLC.cpp
- Timestamp:
- 28 Aug 2014, 00:57:07 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-dev/source/Lib/TLibDecoder/TDecCAVLC.cpp
r872 r874 1002 1002 READ_FLAG( uiCode, "vps_base_layer_internal_flag"); pcVPS->setBaseLayerInternalFlag( uiCode ? true : false ); 1003 1003 READ_FLAG( uiCode, "vps_base_layer_available_flag"); pcVPS->setBaseLayerAvailableFlag( uiCode ? true : false ); 1004 #if VPS_AVC_BL_FLAG_REMOVAL 1005 pcVPS->setNonHEVCBaseLayerFlag( (pcVPS->getBaseLayerAvailableFlag() && !pcVPS->getBaseLayerInternalFlag()) ? true : false); 1006 #endif 1004 1007 #else 1005 1008 READ_CODE( 2, uiCode, "vps_reserved_three_2bits" ); assert(uiCode == 3); … … 1178 1181 UInt numScalabilityTypes = 0, i = 0, j = 0; 1179 1182 1183 #if !VPS_AVC_BL_FLAG_REMOVAL 1180 1184 READ_FLAG( uiCode, "avc_base_layer_flag" ); vps->setAvcBaseLayerFlag(uiCode ? true : false); 1185 #endif 1181 1186 1182 1187 #if !P0307_REMOVE_VPS_VUI_OFFSET
Note: See TracChangeset for help on using the changeset viewer.