Opened 5 years ago
Closed 5 years ago
#868 closed defect (fixed)
Chroma Deblocking Issue with Local Dual-Tree
Reported by: | bheng | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | VTM-8.0 |
Component: | VTM | Version: | VTM-7.3 |
Keywords: | Cc: | ksuehring, XiangLi, fbossen, jvet@… |
Description
For local dual-tree cases, the xGetBoundaryStrengthSingle() function needs to be redesigned to handle luma and chroma separately. The neighboring CU can be completely different when filtering luma versus when filtering chroma.
For example, if cuQ is LUMA+CHROMA, the following lines will only fetch the luma cuP. But if the neighbor is a local-dual tree, the luma and chroma neighbors are from two different CUs.
const CodingUnit& cuQ = cu;
const CodingUnit& cuP = *cu.cs->getCU( posP, cu.chType );
Change history (1)
comment:1 Changed 5 years ago by XiangLi
- Milestone set to VTM-8.0
- 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/1337