The source project of this merge request has been removed.
Update for implementation of virtual boundary signalling
Resolve the following issue: VLCReader.cpp #if JVET_Q0246_VIRTUAL_BOUNDARY_ENABLE_FLAG picHeader->setVirtualBoundariesPresentFlag( sps->getVirtualBoundariesPresentFlag() ); if( picHeader->getVirtualBoundariesEnabledFlag() )
Brian Heng @bheng · 2 days ago
I believe this line should use getVirtualBoundariesPresentFlag instead of getVirtualBoundariesEnabledFlag. The picture header getVirtualBoundariesEnabledFlag is never set anywhere, so this will always fail.
With that change, it seems that the picture header versions of the get/set VirtualBoundariesEnabledFlag functions and variables are never used and should probably be removed.