Opened 13 years ago Closed 12 years ago #306 closed defect (fixed)bugs in reference picture list code
Description
...
num_ref_idx_l1_active_minus1 shall be num_ref_idx_l0_active_minus1 for this is modification for list 0.
pcSlice->getListIdFromIdxOfLC return 0 for list0 and 1 for list1. WD states pic_from_list_0_flag is 1 for list0 and 0 for list1. The code write 0 for list0 and 1 for list1, shall write 1 for list0 and 0 for list1.
The code select list0 when receiving pic_from_list_0_flag equals 0, and select list1 when receiving pic_from_list_0_flag equals 1. This is opposite to WD. Attachments (1)Change History (5)comment:1 Changed 13 years ago by DefaultCC Plugin
Changed 13 years ago by eeeheycomment:2 Changed 13 years ago by ksuehring
The first one is a simple copy&paste bug.
On the second one, I'm not sure if I understand the data structures. Maybe it would be better to save the bit as it is coded in the bitstream and change the list construction logic to take the different interpretation into account instead of flipping that bit in the read/write functions. Of course this would require a bigger patch, but that would be preferable if it makes the code better understandable.
I think the second part independent of the adoption of JCTVC-H0137/H0138, right? comment:3 Changed 13 years ago by eeehey
You are right, the second part is independent of the adoption of JCTVC-H0137/H0138.
Changing the list construction logic does require bigger patch since it requires changes in both encoder and decoder. Fliping the bit is a quick fix, but not that neat. comment:4 Changed 12 years ago by ksuehring
The combined list signaling has been removed from the spec. So the first part was fixed, the second is "won't fix". I'm closing the ticket as "fixed". 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
|
patch of the bug reported in #306