mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-22 16:37:31 +09:00
update ffmpeg to 3.4.8.
This commit is contained in:
parent
f57c0e08fa
commit
7fec328c85
31 changed files with 320 additions and 235 deletions
|
|
@ -373,9 +373,11 @@ int ff_h264_build_ref_list(H264Context *h, H264SliceContext *sl)
|
|||
av_assert0(0);
|
||||
}
|
||||
|
||||
if (i < 0) {
|
||||
if (i < 0 || mismatches_ref(h, ref)) {
|
||||
av_log(h->avctx, AV_LOG_ERROR,
|
||||
"reference picture missing during reorder\n");
|
||||
i < 0 ? "reference picture missing during reorder\n" :
|
||||
"mismatching reference\n"
|
||||
);
|
||||
memset(&sl->ref_list[list][index], 0, sizeof(sl->ref_list[0][0])); // FIXME
|
||||
} else {
|
||||
for (i = index; i + 1 < sl->ref_count[list]; i++) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue