Opened 10 years ago

Closed 10 years ago

#1199 closed defect (invalid)

May a mismatch between HEVC spec and HM on clip of qPiCb

Reported by: C.Lai Owned by:
Priority: minor Milestone:
Component: HM Version: HM-12.0
Keywords: Cc: fbossen, ksuehring, davidf, jct-vc@…

Description

In spec, qPiCb = Clip3( −QpBdOffsetC, 57, QpY + pps_cb_qp_offset + slice_cb_qp_offset ) (8-260),
In HM software(HM12.1),
#define QpUV(iQpY) ( ((iQpY) < 0) ? (iQpY) : (((iQpY) > 57) ? ((iQpY)-6) : g_aucChromaScale[(iQpY)]) )

It seems no clip operation in the HM software.

Change History (2)

comment:1 Changed 10 years ago by DefaultCC Plugin

  • Cc fbossen ksuehring davidf jct-vc@… added

comment:2 Changed 10 years ago by davidf

  • Milestone HM-12.1 deleted
  • Resolution set to invalid
  • Status changed from new to closed

Eqn. 8-260 corresponds to source:tags/HM-12.0/source/Lib/TLibCommon/TComTrQuant.cpp#L202

qpScaled = Clip3( -qpBdOffset, 57, qpy + chromaQPOffset );

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