Opened 5 years ago
Closed 5 years ago
#494 closed defect (fixed)
typo in equation 7-2 in semantics of vps_direct_dependency_flag
Reported by: | taoranlu | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | |
Component: | spec | Version: | |
Keywords: | Cc: | ksuehring, bbross, XiangLi, fbossen, jvet@… |
Description
In JVET-O2001-vE, equation 7-2:
for( i = 1; i < vps_max_layers_minus1; i− − )
if( !vps_independent_layer_flag[ i ] )
for( j = i, k = 0; j >= 0; j− − ) (7 2)
if( vps_direct_dependency_flag[ i ][ j ] )
DirectDependentLayerIdx[ i ][ k++ ] = j
should be
for( i = 1; i < vps_max_layers_minus1; i++ )
if( !vps_independent_layer_flag[ i ] )
for( j = i, k = 0; j >= 0; j− − ) (7 2)
if( vps_direct_dependency_flag[ i ][ j ] )
DirectDependentLayerIdx[ i ][ k++ ] = j
Change history (2)
comment:1 Changed 5 years ago by yk
comment:2 Changed 5 years ago by yk
- Resolution set to fixed
- Status changed from new to closed
Note: See TracTickets for help on using tickets.
Good catch! Thanks!
Fixed in a document we are preparing to be submitted as an editorial input to the 16-th JVET meeting.