Opened 11 years ago

Closed 11 years ago

#962 closed defect (fixed)

mistake in Width/Height

Reported by: weipu Owned by: weipu
Priority: trivial Milestone: HM-9.2
Component: HM Version: HM-9.1
Keywords: SAO Cc: fbossen, ksuehring, davidf, jct-vc@…

Description

in TEncSampleAdaptiveOffset.cpp
Line 1006, 1007 are:

Int iLcuWidth = pTmpSPS->getMaxCUHeight();
Int iLcuHeight = pTmpSPS->getMaxCUWidth()

The correct code should be:

Int iLcuHeight = pTmpSPS->getMaxCUHeight();
Int iLcuWidth = pTmpSPS->getMaxCUWidth()

Change History (2)

comment:1 Changed 11 years ago by DefaultCC Plugin

  • Cc fbossen ksuehring davidf jct-vc@… added

comment:2 Changed 11 years ago by fbossen

  • Milestone set to HM-9.2
  • Resolution set to fixed
  • Status changed from new to closed

Fixed in r3277

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)
  • jct-vc@…(Subscriber)
  • karl.sharman@…(Always)
  • Karsten Suehring(Subscriber, Always)
  • Wei PU(Reporter, Owner)