Opened 5 years ago
Closed 5 years ago
#600 closed defect (fixed)
Possible issue for calculation of xInti and yInti in 8.5.6.3.4 Chroma sample interpolation process
Reported by: | vdrugeon | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | |
Component: | spec | Version: | VVC D7 vE |
Keywords: | Cc: | ksuehring, bbross, XiangLi, fbossen, jvet@… |
Description
In 8.5.6.3.4 Chroma sample interpolation process, why is the unclipped value for xInti different based on the value of subpic_treated_as_pic_flag[ SubPicIdx ]?
xInti = Clip3( SubPicLeftBoundaryPos / SubWidthC, SubPicRightBoundaryPos / SubWidthC, xIntL + i )
vs.
xInti = Clip3( 0, picWC − 1, sps_ref_wraparound_enabled_flag ? ClipH( xOffset, picWC, xIntC + i − 1 ) : xIntC + i − 1 )
Shouldn't the unclipped value be xIntC + i − 1 in both cases, especially considering that xIntL is not defined in this process?
Same comment for yInti
Change history (5)
comment:1 Changed 5 years ago by bbross
- Version set to VVC D7 vC
comment:2 Changed 5 years ago by bbross
- Version changed from VVC D7 vC to VVC D7 vD
comment:3 Changed 5 years ago by bbross
- Version changed from VVC D7 vD to VVC D7 vE
comment:4 Changed 5 years ago by jlchen
comment:5 Changed 5 years ago by jlchen
- Resolution set to fixed
- Status changed from new to closed
Note: See TracTickets for help on using tickets.
Yes, you're right. Will be fixed in the next release.