Changeset 733 in SHVCSoftware
- Timestamp:
- 24 Apr 2014, 13:29:11 (11 years ago)
- Location:
- branches/SHM-6-dev/source/Lib
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-6-dev/source/Lib/TLibCommon/TypeDef.h
r732 r733 85 85 86 86 #define O0164_MULTI_LAYER_HRD 1 ///< JCTVC-O0164: Multi-layer HRD operation 87 #define Q0182_MULTI_LAYER_HRD_UPDATE 1 ///< JCTVC-Q0182: On bitstream partition buffering 88 87 89 #define Q0074_SEI_COLOR_MAPPING 1 ///< JCTVC-Q0074, SEI Color Mapping 88 90 -
branches/SHM-6-dev/source/Lib/TLibDecoder/TDecCAVLC.cpp
r732 r733 2326 2326 if (vps->getNumBitstreamPartitions(h)) 2327 2327 { 2328 #if Q0182_MULTI_LAYER_HRD_UPDATE 2329 READ_UVLC( uiCode, "num_bsp_sched_combinations_minus1[h]"); vps->setNumBspSchedCombinations(h, uiCode + 1); 2330 #else 2328 2331 READ_UVLC( uiCode, "num_bsp_sched_combinations[h]"); vps->setNumBspSchedCombinations(h, uiCode); 2332 #endif 2329 2333 for( i = 0; i < vps->getNumBspSchedCombinations(h); i++ ) 2330 2334 { -
branches/SHM-6-dev/source/Lib/TLibEncoder/TEncCavlc.cpp
r732 r733 1646 1646 if (vps->getNumBitstreamPartitions(h)) 1647 1647 { 1648 #if Q0182_MULTI_LAYER_HRD_UPDATE 1649 WRITE_UVLC(vps->getNumBspSchedCombinations(h) - 1, "num_bsp_sched_combinations_minus1[h]"); 1650 #else 1648 1651 WRITE_UVLC( vps->getNumBspSchedCombinations(h), "num_bsp_sched_combinations[h]"); 1652 #endif 1649 1653 for( i = 0; i < vps->getNumBspSchedCombinations(h); i++ ) 1650 1654 {
Note: See TracChangeset for help on using the changeset viewer.