Opened 12 years ago

Closed 10 years ago

#472 closed defect (fixed)

Lossless mode integration in deblocking filter

Reported by: geertv Owned by:
Priority: minor Milestone:
Component: HM Version: HM-6.1
Keywords: Cc: Keiichi, CHONO, <chono@…>, fbossen, ksuehring, davidf, jct-vc@…

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 12 years ago by DefaultCC Plugin

  • Cc fbossen ksuehring davidf jct-vc@… added

comment:2 Changed 10 years ago by fbossen

  • Resolution set to fixed
  • Status changed from new to closed

Appears to be fixed in recent HM version

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

  • David Flynn(Subscriber)
  • Frank Bossen(Subscriber, Participant)
  • Geert Van der Auwera(Reporter)
  • jct-vc@…(Subscriber)
  • karl.sharman@…(Always)
  • Karsten Suehring(Subscriber, Always)