Skip to content
Snippets Groups Projects
Commit 7e7b95e5 authored by Alican Nalci's avatar Alican Nalci
Browse files

Update EncSlice.cpp

Fixing indent issues.
parent e86f7a7b
Branches JVET-AI0061-PROPOSAL1
No related tags found
No related merge requests found
Pipeline #4644 passed
......@@ -344,11 +344,11 @@ void EncSlice::initEncSlice(Picture* pcPic, const int pocLast, const int pocCurr
if( m_pcCfg->getCostMode() != COST_LOSSLESS_CODING )
{
rpcSlice->setDepQuantEnabledFlag( m_pcCfg->getDepQuantEnabledFlag() );
rpcSlice->setSignDataHidingEnabledFlag( m_pcCfg->getSignDataHidingEnabledFlag() );
rpcSlice->setTSResidualCodingDisabledFlag( false );
rpcSlice->setSignDataHidingEnabledFlag( m_pcCfg->getSignDataHidingEnabledFlag() );
rpcSlice->setTSResidualCodingDisabledFlag( false );
CHECK( (m_pcCfg->getDepQuantEnabledFlag() || m_pcCfg->getSignDataHidingEnabledFlag() )
&& rpcSlice->getTSResidualCodingDisabledFlag() , "TSRC cannot be bypassed if either DQ or SDH are enabled at slice level.");
CHECK( (m_pcCfg->getDepQuantEnabledFlag() || m_pcCfg->getSignDataHidingEnabledFlag() )
&& rpcSlice->getTSResidualCodingDisabledFlag() , "TSRC cannot be bypassed if either DQ or SDH are enabled at slice level.");
}
else
{
......@@ -360,7 +360,7 @@ void EncSlice::initEncSlice(Picture* pcPic, const int pocLast, const int pocCurr
rpcSlice->setTSResidualCodingDisabledFlag( true );
}
#else
rpcSlice->setTSResidualCodingDisabledFlag( true );
rpcSlice->setTSResidualCodingDisabledFlag( true );
#endif
}
#else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment