From 36748d4b6ca9c963a24c49b2196847984f02f3ac Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Fri, 28 Jun 2013 21:21:57 +0000 Subject: [PATCH] tak_parser: properly mark packets as key frames Signed-off-by: Paul B Mahol --- libavcodec/tak_parser.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavcodec/tak_parser.c b/libavcodec/tak_parser.c index 0f2fbc2b35..9136192579 100644 --- a/libavcodec/tak_parser.c +++ b/libavcodec/tak_parser.c @@ -90,6 +90,7 @@ static int tak_parse(AVCodecParserContext *s, AVCodecContext *avctx, s->duration = t->ti.last_frame_samples ? t->ti.last_frame_samples : t->ti.frame_samples; + s->key_frame = !!(t->ti.flags & TAK_FRAME_FLAG_HAS_INFO); } else { pc->frame_start_found = 0; next = t->index - pc->index; -- 2.11.0