Opened 5 years ago
Closed 5 years ago
#357 closed defect (fixed)
Mismatch with spec on num_ref_idx_lx_active_minus1 parsing
Reported by: | forayr | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | VTM-6.0 |
Component: | VTM | Version: | VTM-5.0 |
Keywords: | Cc: | ksuehring, XiangLi, fbossen, jvet@… |
Description
In spec:
if((slice_type != I && num_ref_entries[ 0 ][ RplsIdx[ 0 ] ] > 1) || (slice_type == B && num_ref_entries[ 1 ][ RplsIdx[ 1 ] ] > 1) ) { num_ref_idx_active_override_flag if( num_ref_idx_active_override_flag ) for( i = 0; i < (slice_type == B ? 2: 1 ); i++) if( num_ref_entries[ i ][ RplsIdx[ i ] ] > 1 ) num_ref_idx_active_minus1[ i ] }
In VTM:
if(slice_type != I) { num_ref_idx_active_override_flag if( num_ref_idx_active_override_flag ) for( i = 0; i < (slice_type == B ? 2: 1 ); i++) num_ref_idx_active_minus1[ i ] }
Change history (2)
comment:1 Changed 5 years ago by forayr
comment:2 Changed 5 years ago by ksuehring
- Milestone set to VTM-6.0
- Resolution set to fixed
- Status changed from new to closed
The MR was merged
Note: See TracTickets for help on using tickets.
Merge request: https://vcgit.hhi.fraunhofer.de/jvet/VVCSoftware_VTM/merge_requests/634