Opened 11 years ago Closed 11 years ago #1162 closed defect (fixed)something about about delta_poc_s0_minus1
Description
in hevc spec 7.4.8,about delta_poc_s0_minus1
but i think when i is greater than 0,delta_poc_s0_minus1 should specify between the picture order count values of the i-th entry and the ( i - 1 )-th entry ?? the above (i+1) have confuse me! Change History (4)comment:1 Changed 11 years ago by DefaultCC Plugin
comment:2 Changed 11 years ago by charles.leecomment:3 Changed 11 years ago by adarsh
I think this is a typo in the HEVC Spec., and should be a WD ticket.
I think the issue raised is correct. The semantics of delta_poc_s0_minus1 and delta_poc_s1_minus1 should be corrected as follows.
delta_poc_s1_minus1[ i ] plus 1, when i is equal to 0, specifies the difference between the picture order count values of the current picture and the i-th entry in the stRpsIdx-th candidate short-term RPS that has picture order count value greater than that of the current picture, or, when i is greater than 0, specifies the difference between the picture order count values of the i-th entry and ( i - 1 )-th entry in the current candidate short-term RPS that have picture order count values greater than the picture order count value of the current picture. The value of delta_poc_s1_minus1[ i ] shall ... comment:4 Changed 11 years ago by fbossen
Appears fixed in JVTVC-O0054 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
|
for example:
'POC: 20 21 22
RPS (POC, used_by_curr_pic_s0_flag):
RPS (delta_poc_s0, used_by_curr_pic_s0_flag)
delta_poc_s0 = (-1)x(delta_poc_s0_minus1 +1)
so,in the picture 21, it has reference pics as 20,19 and 16.
when the current picture is 21,the stRpsIdx-th candidate short RPS is
the delta_poc_s0_minus1,for the entry i is 0,is the difference between the current(21) and picture 20,so the delta_poc_s0_minus1 value is 1,
when the entry i is 1(greater than 0),i think the delta_poc_s0_minus1 is between the i(pic 19) and i-1(pic 20),so i think this method is contradiction with hevc specfication???