Opened 3 years ago
Closed 3 years ago
#1487 closed defect (fixed)
potential bug in void EncSampleAdaptiveOffset::deriveLoopFilterBoundaryAvailibility() of VTM13.0
Reported by: | zhou | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | |
Component: | VTM | Version: | VTM-13.0 |
Keywords: | Cc: | ksuehring, XiangLi, fbossen, jvet@… |
Description
I am wondering whether "isSameTile" should be replaced with "isSameSlice" in the following code
if (!isLoopFiltAcrossSlicePPS)
{
isLeftAvail = (cuLeft == NULL) ? false : CU::isSameTile(*cuCurr, *cuLeft);
isAboveAvail = (cuAbove == NULL) ? false : CU::isSameTile(*cuCurr, *cuAbove);
isAboveLeftAvail = (cuAboveLeft == NULL) ? false : CU::isSameTile(*cuCurr, *cuAboveLeft);
}
else
{
isLeftAvail = (cuLeft != NULL);
isAboveAvail = (cuAbove != NULL);
isAboveLeftAvail = (cuAboveLeft != NULL);
}
Change history (3)
comment:1 Changed 3 years ago by fbossen
comment:2 Changed 3 years ago by fbossen
- Version set to VTM-13.0
comment:3 Changed 3 years ago by ksuehring
- Resolution set to fixed
- Status changed from new to closed
The suggested fix was merged.
Note: See TracTickets for help on using tickets.
Suggested fix:
https://vcgit.hhi.fraunhofer.de/jvet/VVCSoftware_VTM/-/merge_requests/2185