Changeset 1239 in 3DVCSoftware for branches/HTM-14.1-update-dev1-RWTH/source/Lib/TLibDecoder
- Timestamp:
- 31 May 2015, 20:35:03 (10 years ago)
- Location:
- branches/HTM-14.1-update-dev1-RWTH/source/Lib/TLibDecoder
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-14.1-update-dev1-RWTH/source/Lib/TLibDecoder/TDecCAVLC.cpp
r1237 r1239 1831 1831 else 1832 1832 { 1833 vpsVui->setVpsNumVideoSignalInfoMinus1( pcVPS->getMaxLayersMinus1() - pcVPS->getVpsBaseLayerInternalFlag() ? 0 : 1 );1833 vpsVui->setVpsNumVideoSignalInfoMinus1( (pcVPS->getMaxLayersMinus1() - pcVPS->getVpsBaseLayerInternalFlag()) ? 0 : 1 ); 1834 1834 } 1835 1835 -
branches/HTM-14.1-update-dev1-RWTH/source/Lib/TLibDecoder/TDecGop.h
r1200 r1239 81 81 TComLoopFilter* m_pcLoopFilter; 82 82 #if NH_MV 83 TDecTop* m_decTop;83 //TDecTop* m_decTop; 84 84 #endif 85 85 -
branches/HTM-14.1-update-dev1-RWTH/source/Lib/TLibDecoder/TDecSbac.cpp
r1227 r1239 2349 2349 if( pcCU->isIntra( absPartIdx ) && pcCU->getSDCFlag( absPartIdx )) 2350 2350 { 2351 m_pcTDecBinIf->decodeBin( symbol, m_cDdcFlagSCModel.get( 0, 0, 0 ) );2351 m_pcTDecBinIf->decodeBin( symbol, m_cDdcFlagSCModel.get( 0, 0, 0 ) RExt__DECODER_DEBUG_BIT_STATISTICS_PASS_OPT_ARG(STATS__CABAC_BITS__SDC_DELTADC_FLAG) ); 2352 2352 assert( pcCU->getPartitionSize( absPartIdx ) == SIZE_2Nx2N ); 2353 2353 assert( pcCU->getTransformIdx(absPartIdx) == 0 ); … … 2509 2509 UInt uiSymbol = 0; 2510 2510 2511 m_pcTDecBinIf->decodeBin( uiSymbol, m_cSDCFlagSCModel.get( 0, 0, 0 ) );2511 m_pcTDecBinIf->decodeBin( uiSymbol, m_cSDCFlagSCModel.get( 0, 0, 0 ) RExt__DECODER_DEBUG_BIT_STATISTICS_PASS_OPT_ARG(STATS__CABAC_BITS__SDC_INTRA_FLAG) ); 2512 2512 #if H_MV_ENC_DEC_TRAC 2513 2513 DTRACE_CU("dc_only_flag", uiSymbol) -
branches/HTM-14.1-update-dev1-RWTH/source/Lib/TLibDecoder/TDecTop.h
r1200 r1239 107 107 UInt m_uiBitDepthForLUT; 108 108 UInt m_iLog2Precision; 109 UInt m_uiInputBitDepth;109 // UInt m_uiInputBitDepth; 110 110 111 111 // look-up tables
Note: See TracChangeset for help on using the changeset viewer.