Opened 5 years ago
Closed 4 years ago
#986 closed defect (fixed)
The range for PaletteEscapeVal in semantics
Reported by: | sunmi.yoo | Owned by: | |
---|---|---|---|
Priority: | blocker | Milestone: | VVC D10 |
Component: | spec | Version: | VVC D9 vB |
Keywords: | Cc: | ksuehring, bbross, XiangLi, fbossen, jvet@… |
Description
The range of PaletteEscapeVal never exceeds (1 << Bitdepth)- 1 as the minimum Qp for the escape values is 4 in the current spec. Therefore, the following sentence should be changed from :
It is a requirement of bitstream conformance that PaletteEscapeVal[ cIdx ][ xC ][ yC ] shall be in the range of 0 to (1 << ( BitDepth + 1 ) ) − 1, inclusive, for cIdx equal to 0, and in the range of 0 to (1 << ( BitDepth + 1 ) ) − 1, inclusive, for cIdx not equal to 0.
to :
It is a requirement of bitstream conformance that PaletteEscapeVal[ cIdx ][ xC ][ yC ] shall be in the range of 0 to ( 1 << BitDepth ) − 1, inclusive, for cIdx equal to 0, and in the range of 0 to (1 << BitDepth ) − 1, inclusive, for cIdx not equal to 0.
Change history (3)
comment:1 Changed 4 years ago by bbross
- Milestone set to VVC D10
- Version changed from VVC D8 vB to VVC D9 vB
comment:2 Changed 4 years ago by bbross
- Priority changed from minor to blocker
comment:3 Changed 4 years ago by bbross
- Resolution set to fixed
- Status changed from new to closed
Fixed in JVET-S2001-v7 as agreed in the meeting.
Thanks for reporting!
Can someone confirm the suggested fix?