Changeset 954 in SHVCSoftware
- Timestamp:
- 5 Jan 2015, 20:07:57 (10 years ago)
- Location:
- branches/SHM-dev/source/Lib
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-dev/source/Lib/TLibDecoder/TDecCAVLC.cpp
r951 r954 1217 1217 READ_CODE( 6, uiCode, "vps_max_layers_minus1" ); pcVPS->setMaxLayers( uiCode + 1 ); 1218 1218 #endif 1219 assert(pcVPS->getBaseLayerInternalFlag() || pcVPS->getMaxLayers() > 1); 1219 1220 #else 1220 1221 READ_CODE( 6, uiCode, "vps_reserved_zero_6bits" ); assert(uiCode == 0); -
branches/SHM-dev/source/Lib/TLibEncoder/TEncCavlc.cpp
r943 r954 941 941 #endif 942 942 #if SVC_EXTENSION 943 WRITE_CODE( pcVPS->getMaxLayers() - 1, 6, "vps_max_layers_minus1" ); 943 WRITE_CODE( pcVPS->getMaxLayers() - 1, 6, "vps_max_layers_minus1" ); 944 assert(pcVPS->getBaseLayerInternalFlag() || pcVPS->getMaxLayers() > 1); 944 945 #else 945 946 WRITE_CODE( 0, 6, "vps_reserved_zero_6bits" );
Note: See TracChangeset for help on using the changeset viewer.