Changeset 1566 in SHVCSoftware
- Timestamp:
- 20 Jun 2016, 17:39:01 (8 years ago)
- Location:
- branches/SHM-dev/source/Lib
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-dev/source/Lib/TLibDecoder/TDecCAVLC.cpp
r1565 r1566 946 946 READ_FLAG( uiCode, "sps_temporal_mvp_enable_flag" ); pcSPS->setTMVPFlagsPresent(uiCode); 947 947 948 READ_FLAG( uiCode, "s ps_strong_intra_smoothing_enable_flag" );pcSPS->setUseStrongIntraSmoothing(uiCode);948 READ_FLAG( uiCode, "strong_intra_smoothing_enable_flag" ); pcSPS->setUseStrongIntraSmoothing(uiCode); 949 949 950 950 READ_FLAG( uiCode, "vui_parameters_present_flag" ); pcSPS->setVuiParametersPresentFlag(uiCode); -
branches/SHM-dev/source/Lib/TLibEncoder/TEncCavlc.cpp
r1565 r1566 718 718 WRITE_FLAG( pcSPS->getTMVPFlagsPresent() ? 1 : 0, "sps_temporal_mvp_enable_flag" ); 719 719 720 WRITE_FLAG( pcSPS->getUseStrongIntraSmoothing(), "s ps_strong_intra_smoothing_enable_flag" );721 722 WRITE_FLAG( pcSPS->getVuiParametersPresentFlag(), 720 WRITE_FLAG( pcSPS->getUseStrongIntraSmoothing(), "strong_intra_smoothing_enable_flag" ); 721 722 WRITE_FLAG( pcSPS->getVuiParametersPresentFlag(), "vui_parameters_present_flag" ); 723 723 if (pcSPS->getVuiParametersPresentFlag()) 724 724 {
Note: See TracChangeset for help on using the changeset viewer.