Changeset 621 in 3DVCSoftware
- Timestamp:
- 10 Sep 2013, 14:59:07 (11 years ago)
- Location:
- branches/HTM-8.0-dev0/source/Lib
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-8.0-dev0/source/Lib/TLibCommon/TComRom.cpp
r618 r621 372 372 const Bool g_bEncDecTraceEnable = true; 373 373 const Bool g_bEncDecTraceDisable = false; 374 Bool g_HLSTraceEnable = false;374 Bool g_HLSTraceEnable = true; 375 375 Bool g_bJustDoIt = false; 376 376 UInt64 g_nSymbolCounter = 0; -
branches/HTM-8.0-dev0/source/Lib/TLibCommon/TComRom.h
r618 r621 198 198 199 199 #ifndef ENC_DEC_TRACE 200 # define ENC_DEC_TRACE0200 #define ENC_DEC_TRACE 0 201 201 #endif 202 202 -
branches/HTM-8.0-dev0/source/Lib/TLibCommon/TComSlice.cpp
r618 r621 3826 3826 } 3827 3827 #endif 3828 #if SIGNAL_BITRATE_PICRATE_IN_VPS3829 TComBitRatePicRateInfo::TComBitRatePicRateInfo()3830 {3831 ::memset(m_bitRateInfoPresentFlag, 0, sizeof(m_bitRateInfoPresentFlag));3832 ::memset(m_picRateInfoPresentFlag, 0, sizeof(m_picRateInfoPresentFlag));3833 ::memset(m_avgBitRate, 0, sizeof(m_avgBitRate));3834 ::memset(m_maxBitRate, 0, sizeof(m_maxBitRate));3835 ::memset(m_constantPicRateIdc, 0, sizeof(m_constantPicRateIdc));3836 ::memset(m_avgPicRate, 0, sizeof(m_avgPicRate));3837 }3838 #endif3839 3828 //! \} 3840 3829 -
branches/HTM-8.0-dev0/source/Lib/TLibDecoder/TDecCAVLC.cpp
r618 r621 698 698 #endif 699 699 #else 700 READ_UVLC ( uiCode, "sps_max_latency_increase ");700 READ_UVLC ( uiCode, "sps_max_latency_increase_plus1"); 701 701 #endif 702 702 pcSPS->setMaxLatencyIncrease( uiCode, i ); -
branches/HTM-8.0-dev0/source/Lib/TLibDecoder/TDecEntropy.cpp
r615 r621 260 260 else 261 261 { 262 uiMergeIndex = pcCU->getMergeIndex(uiSubPartIdx); // Redundant line262 uiMergeIndex = pcCU->getMergeIndex(uiSubPartIdx); 263 263 #if H_3D_VSP 264 264 Int vspFlag[MRG_MAX_NUM_CANDS_MEM]; -
branches/HTM-8.0-dev0/source/Lib/TLibEncoder/TEncSearch.cpp
r615 r621 3642 3642 #if H_3D_VSP 3643 3643 xRestrictBipredMergeCand( pcCU, iPUIdx, cMvFieldNeighbours, uhInterDirNeighbours,vspFlag, numValidMergeCand ); 3644 #endif 3644 #else 3645 xRestrictBipredMergeCand( pcCU, iPUIdx, cMvFieldNeighbours, uhInterDirNeighbours, numValidMergeCand ); 3646 #endif 3647 3645 3648 3646 3649 ruiCost = MAX_UINT; -
branches/HTM-8.0-dev0/source/Lib/TLibEncoder/TEncTop.cpp
r618 r621 515 515 // mark it should be extended 516 516 rpcPic->getPicYuvRec()->setBorderExtension(false); 517 518 #if H_MV 517 519 rpcPic->getPicYuvOrg()->setBorderExtension(false); 520 #endif 518 521 } 519 522 … … 755 758 #endif 756 759 m_cPPS.setSignHideFlag(getSignHideFlag()); 757 #if L0386_DB_METRIC758 if ( getDeblockingFilterMetric() )759 {760 m_cPPS.setDeblockingFilterControlPresentFlag (true);761 m_cPPS.setDeblockingFilterOverrideEnabledFlag(true);762 m_cPPS.setPicDisableDeblockingFilterFlag(false);763 m_cPPS.setDeblockingFilterBetaOffsetDiv2(0);764 m_cPPS.setDeblockingFilterTcOffsetDiv2(0);765 }766 else767 {768 760 m_cPPS.setDeblockingFilterControlPresentFlag (m_DeblockingFilterControlPresent ); 769 }770 #else771 m_cPPS.setDeblockingFilterControlPresentFlag (m_DeblockingFilterControlPresent );772 #endif773 761 m_cPPS.setLog2ParallelMergeLevelMinus2 (m_log2ParallelMergeLevelMinus2 ); 774 762 m_cPPS.setCabacInitPresentFlag(CABAC_INIT_PRESENT_FLAG);
Note: See TracChangeset for help on using the changeset viewer.