Opened 11 years ago Closed 11 years ago #1119 closed defect (fixed)Incorrect DeltaPocMsbCycleLt Calculation in HM-11.0
Description
When delta_poc_msb_cycle_lt[i] is not present, it is inferred to be equal to 0.
Therefore, based on the following formula, for the first LTRP specified in the slice header (i = num_long_term_sps), the variable DeltaPocMsbCycleLt[i] should be reset to 0 if delta_poc_msb_present_flag[i] = 0.
if( i == 0 | | i == num_long_term_sps )
else
The attached patch can be used to fix this issue in HM-11.0. Attachments (1)Change History (4)comment:1 Changed 11 years ago by DefaultCC Plugin
Changed 11 years ago by bhengcomment:2 Changed 11 years ago by adarshcomment:3 Changed 11 years ago by fbossen
Patch committed in r3518 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
|
You are correct; the patch should solve that bug.