Commit 60e7d2d7 authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/h264_mb: assert that frame waiting code actually references 2 fields/1 frame

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 429de043
......@@ -176,6 +176,7 @@ static void await_references(const H264Context *h, H264SliceContext *sl)
nrefs[list]--;
if (!FIELD_PICTURE(h) && ref_field_picture) { // frame referencing two fields
av_assert2((ref_pic->parent->reference & 3) == 3);
ff_thread_await_progress(&ref_pic->parent->tf,
FFMIN((row >> 1) - !(row & 1),
pic_height - 1),
......
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