diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-01-18 22:07:54 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-01-18 22:41:49 +0100 |
commit | 59fb3c4be8265bde09fade8af22527b9033acf46 (patch) | |
tree | 8642dbda19d38082fd54e5be64f5ea76d958fc86 | |
parent | 329610303aac5f42a01c16ccb4e9fea2075b38d3 (diff) | |
parent | 98cc9efc5f6b4dc847ed3b9b60b1c3bcd14e6791 (diff) | |
download | ffmpeg-59fb3c4be8265bde09fade8af22527b9033acf46.tar.gz |
Merge commit '98cc9efc5f6b4dc847ed3b9b60b1c3bcd14e6791'
* commit '98cc9efc5f6b4dc847ed3b9b60b1c3bcd14e6791':
h264: prevent two matching fields from being both a short/long ref combination
See: 92002db3eb437414281ad4fb6e84e34862f7fc92
Merged-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/h264_refs.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/libavcodec/h264_refs.c b/libavcodec/h264_refs.c index 7eb1f9e2d4..eecdfa8126 100644 --- a/libavcodec/h264_refs.c +++ b/libavcodec/h264_refs.c @@ -637,6 +637,10 @@ int ff_h264_execute_ref_pic_marking(H264Context *h, MMCO *mmco, int mmco_count) * Report the problem and keep the pair where it is, * and mark this field valid. */ + if (h->short_ref[0] == h->cur_pic_ptr) { + av_log(h->avctx, AV_LOG_ERROR, "mmco: cannot assign current picture to short and long at the same time\n"); + 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) { @@ -649,9 +653,6 @@ int ff_h264_execute_ref_pic_marking(H264Context *h, MMCO *mmco, int mmco_count) } av_assert0(!h->cur_pic_ptr->long_ref); remove_long(h, mmco[i].long_arg, 0); - if (remove_short(h, h->cur_pic_ptr->frame_num, 0)) { - av_log(h->avctx, AV_LOG_ERROR, "mmco: cannot assign current picture to short and long at the same time\n"); - } h->long_ref[mmco[i].long_arg] = h->cur_pic_ptr; h->long_ref[mmco[i].long_arg]->long_ref = 1; |