Opened 5 years ago
Closed 5 years ago
#782 closed defect (fixed)
RPR - Use of reference picture PPS pointers
Reported by: | bheng | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | VTM-7.2 |
Component: | VTM | Version: | VTM-7.0 |
Keywords: | Cc: | ksuehring, XiangLi, fbossen, jvet@… |
Description
The following code appears a couple times in xPredInterBlkRPR. These get the scaling window offset via the reference picture’s cs->pps pointer, which can be invalid by the time the current picture is decoded. The refPic->getScalingWindow( ) function should be used instead (just delete "cs->pps->").
... ( refPic->cs->pps->getScalingWindow().getWindowLeftOffset() << ( ( posShift - ::getComponentScaleX( compID, chFmt ) ) ) );
... ( refPic->cs->pps->getScalingWindow().getWindowTopOffset() << ( ( posShift - ::getComponentScaleY( compID, chFmt ) ) ) );
Change history (1)
comment:1 Changed 5 years ago by ksuehring
- Milestone set to VTM-7.2
- Resolution set to fixed
- Status changed from new to closed
Note: See TracTickets for help on using tickets.
The related MR
https://vcgit.hhi.fraunhofer.de/jvet/VVCSoftware_VTM/merge_requests/1194
was merged