Changeset 566 in SHVCSoftware for branches/SHM-5.0-dev/source/Lib
- Timestamp:
- 27 Jan 2014, 18:03:48 (11 years ago)
- Location:
- branches/SHM-5.0-dev/source/Lib
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-5.0-dev/source/Lib/TLibCommon/TypeDef.h
r565 r566 43 43 #define SYNTAX_BYTES 10 ///< number of bytes taken by syntaxes per 4x4 block [RefIdxL0(1byte), RefIdxL1(1byte), MVxL0(2bytes), MVyL0(2bytes), MVxL1(2bytes), MVyL1(2bytes)] 44 44 45 #define VPS_VUI_OFFSET 1 ///< N0085: Signal VPS VUI offset in the VPS extension46 47 #define RANDOM_ACCESS_SEI_FIX 148 45 #if SVC_EXTENSION 49 46 #define MAX_LAYERS 8 ///< max number of layers the codec is supposed to handle 50 47 48 #define VPS_VUI_OFFSET 1 ///< N0085: Signal VPS VUI offset in the VPS extension 49 #define RANDOM_ACCESS_SEI_FIX 1 51 50 #define O0137_MAX_LAYERID 1 ///< JCTVC-O0137, JCTVC-O0200, JCTVC-O0223: restrict nuh_layer_id and vps_max_layers_minus1 52 51 … … 89 88 #define O0142_CONDITIONAL_SPS_EXTENSION 1 ///< JCTVC-O0142: Conditional SPS extension 90 89 #endif 91 #define VERT_MV_CONSTRAINT 1 ///< Vertical MV component constraint flag92 90 #define SCALABILITY_MASK_E0104 1 ///< JCT3V-E0104: scalability mask for depth 93 91 #define LAYER_CTB 0 ///< enable layer-specific CTB structure -
branches/SHM-5.0-dev/source/Lib/TLibDecoder/TDecCAVLC.cpp
r565 r566 806 806 // more syntax elements to be parsed here 807 807 808 #if VERT_MV_CONSTRAINT809 808 READ_FLAG( uiCode, "inter_view_mv_vert_constraint_flag" ); 810 809 // Vertical MV component restriction is not used in SHVC CTC 811 810 assert( uiCode == 0 ); 812 #endif 811 813 812 if( pcSPS->getLayerId() > 0 ) 814 813 { -
branches/SHM-5.0-dev/source/Lib/TLibEncoder/TEncCavlc.cpp
r565 r566 615 615 // more syntax elements to be written here 616 616 617 #if VERT_MV_CONSTRAINT618 617 // Vertical MV component restriction is not used in SHVC CTC 619 618 WRITE_FLAG( 0, "inter_view_mv_vert_constraint_flag" ); 620 #endif 619 621 620 if( pcSPS->getLayerId() > 0 ) 622 621 {
Note: See TracChangeset for help on using the changeset viewer.