Changeset 1567 in SHVCSoftware for branches/SHM-dev/source/Lib/TLibDecoder


Ignore:
Timestamp:
20 Jun 2016, 18:05:58 (10 years ago)
Author:
seregin
Message:

port rev 4744

Location:
branches/SHM-dev/source/Lib/TLibDecoder
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/SHM-dev/source/Lib/TLibDecoder/TDecCAVLC.cpp

    r1566 r1567  
    262262  pcPPS->setWPBiPred( uiCode==1 );
    263263
    264   READ_FLAG( uiCode, "transquant_bypass_enable_flag");
    265   pcPPS->setTransquantBypassEnableFlag(uiCode ? true : false);
     264  READ_FLAG( uiCode, "transquant_bypass_enabled_flag");
     265  pcPPS->setTransquantBypassEnabledFlag(uiCode ? true : false);
    266266  READ_FLAG( uiCode, "tiles_enabled_flag"               );    pcPPS->setTilesEnabledFlag            ( uiCode == 1 );
    267267  READ_FLAG( uiCode, "entropy_coding_sync_enabled_flag" );    pcPPS->setEntropyCodingSyncEnabledFlag( uiCode == 1 );
  • branches/SHM-dev/source/Lib/TLibDecoder/TDecCu.cpp

    r1549 r1567  
    279279  }
    280280
    281   if (pps.getTransquantBypassEnableFlag())
     281  if (pps.getTransquantBypassEnabledFlag())
    282282  {
    283283    m_pcEntropyDecoder->decodeCUTransquantBypassFlag( pcCU, uiAbsPartIdx, uiDepth );
Note: See TracChangeset for help on using the changeset viewer.