Skip to content
Snippets Groups Projects
Commit 027414ae authored by Thierry Dumas's avatar Thierry Dumas Committed by Vadim Seregin
Browse files

Fix the difference in PSNRs between `JVET_AJ0249_NEURAL_NETWORK_BASED` at 0 and `--IntraNN=0`.

parent d8adb732
No related branches found
No related tags found
1 merge request!791Fix the difference in PSNRs between `JVET_AJ0249_NEURAL_NETWORK_BASED` at 0 and `--IntraNN=0`.
...@@ -4740,7 +4740,7 @@ bool IntraSearch::estIntraPredLumaQT(CodingUnit &cu, Partitioner &partitioner, c ...@@ -4740,7 +4740,7 @@ bool IntraSearch::estIntraPredLumaQT(CodingUnit &cu, Partitioner &partitioner, c
#if JVET_AH0103_LOW_DELAY_LFNST_NSPT #if JVET_AH0103_LOW_DELAY_LFNST_NSPT
#if JVET_W0123_TIMD_FUSION #if JVET_W0123_TIMD_FUSION
#if JVET_AJ0249_NEURAL_NETWORK_BASED #if JVET_AJ0249_NEURAL_NETWORK_BASED
if (spsIntraLfnstEnabled && mtsUsageFlag == 1 && !cu.ispMode && mode >= 0 && !cu.timd && !(cu.dimd && !cu.obicFlag) && cu.firstPU->intraDir[CHANNEL_TYPE_LUMA] != PNN_IDX) if (spsIntraLfnstEnabled && mtsUsageFlag == 1 && !cu.ispMode && mode >= 0 && !cu.timd && (isNnIn ? !(cu.dimd && !cu.obicFlag) : true) && cu.firstPU->intraDir[CHANNEL_TYPE_LUMA] != PNN_IDX)
#else #else
if( spsIntraLfnstEnabled && mtsUsageFlag == 1 && !cu.ispMode && mode >= 0 && !cu.timd ) if( spsIntraLfnstEnabled && mtsUsageFlag == 1 && !cu.ispMode && mode >= 0 && !cu.timd )
#endif #endif
......
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