Opened 13 years ago

Closed 13 years ago

#192 closed defect (fixed)

Bug in HM3.3: fine slice granularity + ALF + loop filter across slices = 0

Reported by: madhukar Owned by:
Priority: major Milestone:
Component: HM Version: HM-3.3
Keywords: Cc: fbossen, ksuehring, davidf, jct-vc@…

Description

Bug in HM3.3 (also in previous version).

TComAdaptiveLoopFilter.cpp, setSGUBorderAvailability().
Line 2765:

zRefSU = g_auiRasterToZscan[ rTRefSU+ 1];

should be replaced with

zRefSU = g_auiRasterToZscan[ rTRefSU+ uiWidthSU];

Line 2775:

zRefSU = g_auiRasterToZscan[ rTLSU - uiNumSUInLCUWidth +1];

should be replaced with

zRefSU = g_auiRasterToZscan[ rTLSU - uiNumSUInLCUWidth +uiWidthSU];

These code try to refer to top-right block, but raster-index are wrong.

Change History (5)

comment:1 Changed 13 years ago by fbossen

fixed in r1111

comment:2 Changed 13 years ago by fbossen

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

comment:3 Changed 12 years ago by davidf

  • Component set to HM

Updating component after adding WD (Text) tickets

comment:4 Changed 12 years ago by davidf

  • Cc fbossen ksuehring davidf added

comment:5 Changed 12 years ago by davidf

  • Cc jct-vc@… added
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, Participant)
  • Frank Bossen(Subscriber, Participant)
  • jct-vc@…(Subscriber)
  • karl.sharman@…(Always)
  • Karsten Suehring(Subscriber, Always)
  • Madhukar Budagavi(Reporter)