Opened 4 years ago
Closed 4 years ago
#1396 closed defect (fixed)
Wrong output order with multiple layers
Reported by: | bdchoi | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | VTM-10.1 |
Component: | VTM | Version: | VTM-10.0 |
Keywords: | Cc: | ksuehring, XiangLi, fbossen, jvet@… |
Description
When pictures are outputted, the order of layer IDs is reverse (from high to low).
Change history (2)
comment:1 Changed 4 years ago by bdchoi
comment:2 Changed 4 years ago by fbossen
- Resolution set to fixed
- Status changed from new to closed
Note: See TracTickets for help on using tickets.
https://vcgit.hhi.fraunhofer.de/jvet/VVCSoftware_VTM/-/merge_requests/1893
Changed SortPicList() in Slice.cpp, as follows, to avoid unnecessary reordering.
if (pcPicInsert->getPOC() >= pcPicExtract->getPOC())
=>
if (pcPicInsert->getPOC() > pcPicExtract->getPOC())