Opened 14 months ago
Closed 13 months ago
#1615 closed defect (fixed)
Encoder crash in visual studio debug mode build
Reported by: | JeevaRaj | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | VTM-22.1 |
Component: | VTM | Version: | VTM-21.2 |
Keywords: | Cc: | ksuehring, XiangLi, fbossen, jvet@… |
Description
In EncAdaptiveLoopFilter.cpp, function mergeClasses contains following copy
std::copy_n(clipMerged[numRemaining - 1][0], MAX_NUM_ALF_CLASSES * MAX_NUM_ALF_LUMA_COEFF,
clipMerged[numRemaining - 2][0]);
Encoder crashed here, problem seems to be that 1D copy is performed instead of 2D. Address may not be contiguous. This issue is present in latest VTM22.0.
Change history (1)
comment:1 Changed 13 months ago by XiangLi
- Milestone changed from VTM-22.0 to VTM-22.1
- Resolution set to fixed
- Status changed from new to closed
Note: See TracTickets for help on using tickets.
Fixed in https://vcgit.hhi.fraunhofer.de/jvet/VVCSoftware_VTM/-/merge_requests/2689