Opened 12 years ago Closed 12 years ago #862 closed defect (fixed)7.3.2.1, 7.3.2.2, condition involving {vps,sps}_sub_layer_ordering_info_present_flag is inverted
Description
In 7.3.2.2, seq_parameter_set_rbsp(): for( i = ( sps_sub_layer_ordering_info_present_flag ? sps_max_sub_layers_minus1 : 0 ); i <= sps_max_sub_layers_minus1; i++ ) { ... }
Will only loop once when sps_sub_layer_ordering_info_present_flag = 1.
Which has the opposite interpretation of 7.4.2.2:
Change History (13)comment:1 Changed 12 years ago by DefaultCC Plugin
comment:2 Changed 12 years ago by davidf
comment:3 Changed 12 years ago by davidf
Suggested new syntax: for( i = 0; i < ( sps_sub_layer_ordering_info_present_flag ? sps_max_sublayers_minus1 + 1 : 1 ); i++ )
Suggested new semantics:
For VPS, s/sps/vps/g comment:4 Changed 12 years ago by bbross
Ticket #838 has been marked as a duplicate of this ticket. comment:5 Changed 12 years ago by bbross
comment:6 Changed 12 years ago by bbross
comment:7 Changed 12 years ago by bbross
comment:8 Changed 12 years ago by ksuehring
Ticket #880 has been marked as a duplicate of this ticket. comment:9 Changed 12 years ago by bbross
comment:10 Changed 12 years ago by bbross
comment:11 Changed 12 years ago by bbross
comment:12 Changed 12 years ago by bbross
comment:13 Changed 12 years ago by bbross
Note: See
TracTickets for help on using
tickets. | This list contains all users that will be notified about changes made to this ticket. These roles will be notified: Reporter, Owner, Subscriber, Participant
|
Same applies to vps_sub_layer_ordering_info_present_flag in 7.3.2.1