Opened 12 years ago Closed 12 years ago #618 closed defect (invalid)Reference picture list size incorrect
Description
In section 8.3.4.2, perhaps
Max( num_ref_idx_l0_active_minus1 + 1, NumPocTotalCurr )
and
Max( num_ref_idx_l1_active_minus1 + 1, NumPocTotalCurr )
should have Min rather than Max. Change History (4)comment:1 Changed 12 years ago by DefaultCC Plugin
comment:2 Changed 12 years ago by yanyecomment:3 Changed 12 years ago by thomasd
Ok, that makes sense then. comment:4 Changed 12 years ago by bbross
Thanks for clarification. 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
|
The Max( ) operation is to cover the special case when the DPB contains fewer pictures than specified by the list size. Take list 0 as example, the Max( ) operation covers the case when NumPocTotalCurr < num_ref_idx_l0_active_minus1 + 1. The actual list is then filled according to equation (8 - 9) for list 0 and (8 - 11) for list 1 to ensure correct list size.