Opened 5 years ago
Closed 5 years ago
#528 closed defect (fixed)
Bug in wave front processing
Reported by: | Tomohiro Ikai | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | |
Component: | VTM | Version: | VTM-6.1 |
Keywords: | Cc: | ksuehring, XiangLi, fbossen, jvet@… |
Description
To enable WPP (--WaveFrontSynchro=1), in EncSlice.cpp
bool isLastCTUinWPP = wavefrontsEnabled && ((ctuRsAddr + 1 % widthInCtus) == tileXPosInCtus);
should be replaced with
bool isLastCTUinWPP = wavefrontsEnabled && (((ctuRsAddr + 1) % widthInCtus) == tileXPosInCtus);
So, brackets before % should be added. A merge request is to be generated soon.
Note: combination usage of WPP and tile needs more changes.
Change history (1)
comment:1 Changed 5 years ago by ksuehring
- Resolution set to fixed
- Status changed from new to closed
Note: See TracTickets for help on using tickets.
MR 938 with the fix was merged
https://vcgit.hhi.fraunhofer.de/jvet/VVCSoftware_VTM/merge_requests/938