Opened 14 years ago Closed 12 years ago #472 closed defect (fixed)Lossless mode integration in deblocking filter
Description
In HM6.1, the deblocking filter will disable filtering for the left and top boundaries of a losslessly coded block, while still filtering the bottom and right edges.
It is suggested to replace the following code in HM functions xEdgeFilterLuma and xEdgeFilterChroma: "#if LOSSLESS_CODING
// check if each of PUs is lossless coded
bPartPNoFilter = bPartPNoFilter || (pcCU->isLosslessCoded(uiAbsZorderIdx) );
bPartQNoFilter = bPartQNoFilter || (pcCU->isLosslessCoded(uiAbsZorderIdx) );
#endif
"
with
"#if LOSSLESS_CODING
// check if each of PUs is lossless coded
bPartPNoFilter = bPartPNoFilter || (pcCUP->isLosslessCoded(uiPartPIdx) );
bPartQNoFilter = bPartQNoFilter || (pcCUQ->isLosslessCoded(uiPartQIdx) );
#endif.
"
Change History (2)comment:1 Changed 14 years ago by DefaultCC Plugin
comment:2 Changed 12 years ago by fbossen
Note: See
TracTickets for help on using
tickets. | This list contains all users that will be notified about changes made to this ticket. These roles will be notified: Reporter, Owner, Subscriber, Participant
| ||||||||||||||||
Appears to be fixed in recent HM version