From da2fd3f73e88fe5a2956ce6a30e260f288694b9b Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Tue, 11 Apr 2017 17:07:52 +0200 Subject: [PATCH] avcodec/lcldec: mark output frames as keyframes Signed-off-by: Paul B Mahol --- libavcodec/lcldec.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libavcodec/lcldec.c b/libavcodec/lcldec.c index abc04e35dcc68..104defa5f57f6 100644 --- a/libavcodec/lcldec.c +++ b/libavcodec/lcldec.c @@ -460,6 +460,9 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPac return AVERROR_INVALIDDATA; } + frame->key_frame = 1; + frame->pict_type = AV_PICTURE_TYPE_I; + *got_frame = 1; /* always report that the buffer was completely consumed */