Skip to content
Snippets Groups Projects
Commit 42a3a6fb authored by Xiang Li's avatar Xiang Li
Browse files

Merge branch 'fix_ticket_424' into 'master'

Fix for Ticket #424: uncompliant sps_log2_diff_max_bt_min_qt_inter_slice

See merge request !799
parents 507a1d60 9576cf42
No related branches found
No related tags found
1 merge request!799Fix for Ticket #424: uncompliant sps_log2_diff_max_bt_min_qt_inter_slice
Pipeline #2428 passed
......@@ -899,6 +899,9 @@ void EncLib::xInitSPS(SPS &sps)
sps.setSplitConsOverrideEnabledFlag ( m_useSplitConsOverride );
sps.setMinQTSizes ( m_uiMinQT );
sps.setMaxBTDepth ( m_uiMaxBTDepth, m_uiMaxBTDepthI, m_uiMaxBTDepthIChroma );
sps.setMaxBTSize ( std::min((int)m_CTUSize, MAX_BT_SIZE_INTER),
std::min((int)m_CTUSize, MAX_BT_SIZE),
std::min((int)m_CTUSize, MAX_BT_SIZE_C) );
sps.setIDRRefParamListPresent ( m_idrRefParamList );
sps.setUseDualITree ( m_dualITree );
sps.setUseLFNST ( m_LFNST );
......
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