Skip to content
Snippets Groups Projects
Commit 6c7fe601 authored by Philip Cowan's avatar Philip Cowan
Browse files

Remove not required VPS creation code.

parent 6e137daf
No related branches found
No related tags found
No related merge requests found
...@@ -2052,19 +2052,6 @@ bool DecLib::decode(InputNALUnit& nalu, int& iSkipFrame, int& iPOCLastDisplay) ...@@ -2052,19 +2052,6 @@ bool DecLib::decode(InputNALUnit& nalu, int& iSkipFrame, int& iPOCLastDisplay)
case NAL_UNIT_SPS: case NAL_UNIT_SPS:
xDecodeSPS( nalu ); xDecodeSPS( nalu );
#if JVET_P0185
{
const SPS* pcSPS = m_parameterSetManager.getActiveSPS();
if (0 == pcSPS->getVPSId())
{
if (m_vps != nullptr)
{
delete m_vps;
}
m_vps = new VPS();
}
}
#endif
return false; return false;
case NAL_UNIT_PPS: case NAL_UNIT_PPS:
......
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