Skip to content
Snippets Groups Projects
Commit bd39dd68 authored by Xinwei Li's avatar Xinwei Li
Browse files

Fix: encoder bug when MTS is disabled

parent 2dfde6c5
No related branches found
No related tags found
No related merge requests found
...@@ -3123,7 +3123,7 @@ bool IntraSearch::estIntraPredLumaQT(CodingUnit &cu, Partitioner &partitioner, c ...@@ -3123,7 +3123,7 @@ bool IntraSearch::estIntraPredLumaQT(CodingUnit &cu, Partitioner &partitioner, c
cu.obicFlag = false; cu.obicFlag = false;
#endif #endif
#if JVET_AJ0112_REGRESSION_SGPM #if JVET_AJ0112_REGRESSION_SGPM
if ((m_pcEncCfg->getUseFastLFNST() && !LFNSTLoadFlag) || !m_pcEncCfg->getUseFastLFNST()) if ((m_pcEncCfg->getUseFastLFNST() && !LFNSTLoadFlag) || !m_pcEncCfg->getUseFastLFNST() || mtsUsageFlag == 0)
{ {
#endif #endif
#if JVET_AB0155_SGPM #if JVET_AB0155_SGPM
......
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