Opened 13 years ago Closed 13 years ago #313 closed defect (fixed)Missing QpBdOffsetC in equations for deriving chroma QPs
Description
The derivation of chroma QPs (p.83) is described as follows.
The values of QP'Cb and QP'Cr are derived as
QpBdOffsetC should be employed here, for example as follows.
QP'Cb = Clip3(0, 51+QpBdOffsetC, QP'Y + chroma_cb_qp_offset) (7-23) Change History (3)comment:1 Changed 13 years ago by DefaultCC Plugin
comment:2 in reply to: ↑ description Changed 13 years ago by haocomment:3 Changed 13 years ago by wjhan
Software seems to use clipping range from 0 to 51, thus I fixed WD as follows as a initial step for other QP-related changes:
QP'Cb = Clip3(0,51,QPY+chroma_cb_qp_offset)+QpBdOffsetC 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
|
Sorry, my example description is not correct.
They should be:
QPCb = Clip3(-QpBdOffsetC, 51, QPY + chroma_cb_qp_offset) (7-23)
QPCr = Clip3(-QpBdOffsetC, 51, QPY + chroma_cr_qp_offset) (7-24)
QP'Cb = QPCb + QpBdOffsetC (7-25)
QP'Cr = QPCr + QpBdOffsetC (7-26)