Commit 5cbd7ce0 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit 'f8c507f4'

* commit 'f8c507f4':
  h264: Refactor ff_h264_decode_ref_pic_list_reordering
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents 1e5cb426 f8c507f4
...@@ -242,75 +242,83 @@ int ff_h264_decode_ref_pic_list_reordering(H264Context *h) ...@@ -242,75 +242,83 @@ int ff_h264_decode_ref_pic_list_reordering(H264Context *h)
return -1; return -1;
} }
if (reordering_of_pic_nums_idc < 3) { switch (reordering_of_pic_nums_idc) {
if (reordering_of_pic_nums_idc < 2) { case 0:
const unsigned int abs_diff_pic_num = get_ue_golomb(&h->gb) + 1; case 1: {
int frame_num; const unsigned int abs_diff_pic_num = get_ue_golomb(&h->gb) + 1;
int frame_num;
if (abs_diff_pic_num > h->max_pic_num) {
av_log(h->avctx, AV_LOG_ERROR, "abs_diff_pic_num overflow\n");
return -1;
}
if (reordering_of_pic_nums_idc == 0)
pred -= abs_diff_pic_num;
else
pred += abs_diff_pic_num;
pred &= h->max_pic_num - 1;
frame_num = pic_num_extract(h, pred, &pic_structure);
for (i = h->short_ref_count - 1; i >= 0; i--) {
ref = h->short_ref[i];
assert(ref->reference);
assert(!ref->long_ref);
if (ref->frame_num == frame_num &&
(ref->reference & pic_structure))
break;
}
if (i >= 0)
ref->pic_id = pred;
} else {
int long_idx;
pic_id = get_ue_golomb(&h->gb); //long_term_pic_idx
long_idx = pic_num_extract(h, pic_id, &pic_structure); if (abs_diff_pic_num > h->max_pic_num) {
av_log(h->avctx, AV_LOG_ERROR,
"abs_diff_pic_num overflow\n");
return AVERROR_INVALIDDATA;
}
if (long_idx > 31) { if (reordering_of_pic_nums_idc == 0)
av_log(h->avctx, AV_LOG_ERROR, "long_term_pic_idx overflow\n"); pred -= abs_diff_pic_num;
return -1; else
} pred += abs_diff_pic_num;
ref = h->long_ref[long_idx]; pred &= h->max_pic_num - 1;
assert(!(ref && !ref->reference));
if (ref && (ref->reference & pic_structure)) { frame_num = pic_num_extract(h, pred, &pic_structure);
ref->pic_id = pic_id;
assert(ref->long_ref); for (i = h->short_ref_count - 1; i >= 0; i--) {
i = 0; ref = h->short_ref[i];
} else { assert(ref->reference);
i = -1; assert(!ref->long_ref);
} if (ref->frame_num == frame_num &&
(ref->reference & pic_structure))
break;
} }
if (i >= 0)
ref->pic_id = pred;
break;
}
case 2: {
int long_idx;
pic_id = get_ue_golomb(&h->gb); // long_term_pic_idx
if (i < 0) { long_idx = pic_num_extract(h, pic_id, &pic_structure);
av_log(h->avctx, AV_LOG_ERROR, "reference picture missing during reorder\n");
memset(&h->ref_list[list][index], 0, sizeof(Picture)); //FIXME if (long_idx > 31) {
av_log(h->avctx, AV_LOG_ERROR,
"long_term_pic_idx overflow\n");
return AVERROR_INVALIDDATA;
}
ref = h->long_ref[long_idx];
assert(!(ref && !ref->reference));
if (ref && (ref->reference & pic_structure)) {
ref->pic_id = pic_id;
assert(ref->long_ref);
i = 0;
} else { } else {
for (i = index; i + 1 < h->ref_count[list]; i++) { i = -1;
if (ref->long_ref == h->ref_list[list][i].long_ref &&
ref->pic_id == h->ref_list[list][i].pic_id)
break;
}
for (; i > index; i--) {
COPY_PICTURE(&h->ref_list[list][i], &h->ref_list[list][i - 1]);
}
COPY_PICTURE(&h->ref_list[list][index], ref);
if (FIELD_PICTURE(h)) {
pic_as_field(&h->ref_list[list][index], pic_structure);
}
} }
break;
}
default:
av_log(h->avctx, AV_LOG_ERROR,
"illegal reordering_of_pic_nums_idc\n");
return AVERROR_INVALIDDATA;
}
if (i < 0) {
av_log(h->avctx, AV_LOG_ERROR,
"reference picture missing during reorder\n");
memset(&h->ref_list[list][index], 0, sizeof(Picture)); // FIXME
} else { } else {
av_log(h->avctx, AV_LOG_ERROR, "illegal reordering_of_pic_nums_idc\n"); for (i = index; i + 1 < h->ref_count[list]; i++) {
return -1; if (ref->long_ref == h->ref_list[list][i].long_ref &&
ref->pic_id == h->ref_list[list][i].pic_id)
break;
}
for (; i > index; i--) {
COPY_PICTURE(&h->ref_list[list][i], &h->ref_list[list][i - 1]);
}
COPY_PICTURE(&h->ref_list[list][index], ref);
if (FIELD_PICTURE(h)) {
pic_as_field(&h->ref_list[list][index], pic_structure);
}
} }
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment