summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2015-06-27 20:41:21 +0200
committerMichael Niedermayer <michaelni@gmx.at>2015-06-27 20:56:30 +0200
commit77412f0ecd23bdf75290c7f002ee7b7d249f7883 (patch)
treeb6d796cd4d95a3f505299d101f481596590ec19f
parenta5f409bcc09176ad9443697d95da6a1edf3944aa (diff)
parent6d4d3fee63c46d921c4870feab79269af94e84e1 (diff)
Merge commit '6d4d3fee63c46d921c4870feab79269af94e84e1'
* commit '6d4d3fee63c46d921c4870feab79269af94e84e1': h264: make sure the current picture is not made a long ref multiple times See: 34ea5f418ef815c629b6ab38a6a2711fd7463290 Merged-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r--libavcodec/h264_refs.c15
1 files changed, 9 insertions, 6 deletions
diff --git a/libavcodec/h264_refs.c b/libavcodec/h264_refs.c
index 379fb26a1a..0d8fa8bf19 100644
--- a/libavcodec/h264_refs.c
+++ b/libavcodec/h264_refs.c
@@ -667,15 +667,18 @@ int ff_h264_execute_ref_pic_marking(H264Context *h, MMCO *mmco, int mmco_count)
remove_short_at_index(h, 0);
}
- if (h->long_ref[mmco[i].long_arg] != h->cur_pic_ptr) {
- if (h->cur_pic_ptr->long_ref) {
- for(j=0; j<16; j++) {
- if(h->long_ref[j] == h->cur_pic_ptr) {
- remove_long(h, j, 0);
+ /* make sure the current picture is not already assigned as a long ref */
+ if (h->cur_pic_ptr->long_ref) {
+ for (j = 0; j < FF_ARRAY_ELEMS(h->long_ref); j++) {
+ if (h->long_ref[j] == h->cur_pic_ptr) {
+ if (j != mmco[i].long_arg)
av_log(h->avctx, AV_LOG_ERROR, "mmco: cannot assign current picture to 2 long term references\n");
- }
+ remove_long(h, j, 0);
}
}
+ }
+
+ if (h->long_ref[mmco[i].long_arg] != h->cur_pic_ptr) {
av_assert0(!h->cur_pic_ptr->long_ref);
remove_long(h, mmco[i].long_arg, 0);