Commit 3ba77ea3 authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/vc1dec: print debug message if a b frame without reference is skiped

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 8b2c3d2a
......@@ -5997,6 +5997,7 @@ static int vc1_decode_frame(AVCodecContext *avctx, void *data,
/* skip B-frames if we don't have reference frames */
if (s->last_picture_ptr == NULL && (s->pict_type == AV_PICTURE_TYPE_B || s->droppable)) {
av_log(v->s.avctx, AV_LOG_DEBUG, "Skiping B frame without reference frames\n");
goto end;
}
if ((avctx->skip_frame >= AVDISCARD_NONREF && s->pict_type == AV_PICTURE_TYPE_B) ||
......
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