Opened 5 years ago
Closed 5 years ago
#694 closed enhancement (fixed)
Typo in eq.(7-7) in 7.4.3.2 Video parameter set RBSP semantics
Reported by: | tsukuba.takeshi | Owned by: | |
---|---|---|---|
Priority: | trivial | Milestone: | |
Component: | spec | Version: | VVC D7 vC |
Keywords: | Cc: | ksuehring, bbross, XiangLi, fbossen, jvet@… |
Description
In JVET-P2001vC, comma "," in for-loop in eq.(7-7) should be semicolon ";" as below:
for( i = 0,; i < TotalNumOlss; i++ )
for( j = 0; j < NumLayersInOls[ i ]; j++ )
OlsLayeIdx[ i ][ LayerIdInOls[ i ][ j ] ] = j
Change history (2)
comment:1 Changed 5 years ago by tsukuba.takeshi
comment:2 Changed 5 years ago by bbross
- Resolution set to fixed
- Status changed from new to closed
Thanks for reporting.
This will be fixed JVET-P2001-vD.
Note: See TracTickets for help on using tickets.
In addition, left-bracket should be inserted as blew:
...
for( j = 0; j < NumLayersInOls[ i ]; j++ )
...