Changeset 1567 in SHVCSoftware for branches/SHM-dev/source/Lib/TLibDecoder
- Timestamp:
- 20 Jun 2016, 18:05:58 (10 years ago)
- Location:
- branches/SHM-dev/source/Lib/TLibDecoder
- Files:
-
- 2 edited
-
TDecCAVLC.cpp (modified) (1 diff)
-
TDecCu.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-dev/source/Lib/TLibDecoder/TDecCAVLC.cpp
r1566 r1567 262 262 pcPPS->setWPBiPred( uiCode==1 ); 263 263 264 READ_FLAG( uiCode, "transquant_bypass_enable _flag");265 pcPPS->setTransquantBypassEnable Flag(uiCode ? true : false);264 READ_FLAG( uiCode, "transquant_bypass_enabled_flag"); 265 pcPPS->setTransquantBypassEnabledFlag(uiCode ? true : false); 266 266 READ_FLAG( uiCode, "tiles_enabled_flag" ); pcPPS->setTilesEnabledFlag ( uiCode == 1 ); 267 267 READ_FLAG( uiCode, "entropy_coding_sync_enabled_flag" ); pcPPS->setEntropyCodingSyncEnabledFlag( uiCode == 1 ); -
branches/SHM-dev/source/Lib/TLibDecoder/TDecCu.cpp
r1549 r1567 279 279 } 280 280 281 if (pps.getTransquantBypassEnable Flag())281 if (pps.getTransquantBypassEnabledFlag()) 282 282 { 283 283 m_pcEntropyDecoder->decodeCUTransquantBypassFlag( pcCU, uiAbsPartIdx, uiDepth );
Note: See TracChangeset for help on using the changeset viewer.