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

Merge branch 'JVET_N0235_bugfix' into 'master'

JVET-N0235 bugfix

See merge request !448
parents 59cf59f3 dfc2b1f7
No related branches found
No related tags found
No related merge requests found
...@@ -1210,7 +1210,11 @@ bool DecLib::xDecodeSlice(InputNALUnit &nalu, int &iSkipFrame, int iPOCLastDispl ...@@ -1210,7 +1210,11 @@ bool DecLib::xDecodeSlice(InputNALUnit &nalu, int &iSkipFrame, int iPOCLastDispl
pcSlice->setCheckLDC(bLowDelay); pcSlice->setCheckLDC(bLowDelay);
} }
#if JVET_N0235_SMVD_SPS
if (pcSlice->getSPS()->getUseSMVD() && pcSlice->getCheckLDC() == false && pcSlice->getMvdL1ZeroFlag() == false)
#else
if ( pcSlice->getCheckLDC() == false && pcSlice->getMvdL1ZeroFlag() == false ) if ( pcSlice->getCheckLDC() == false && pcSlice->getMvdL1ZeroFlag() == false )
#endif
{ {
int currPOC = pcSlice->getPOC(); int currPOC = pcSlice->getPOC();
......
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