1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-08-18 15:25:05 +02:00

avcodec/hevc: fix outputted AVFrame.key_frame

previously it was always 1

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Peter Kovář 2014-05-14 19:42:44 +02:00 committed by Michael Niedermayer
parent 434ba17b22
commit 973de9ebf8

View File

@ -207,6 +207,9 @@ int ff_hevc_output_frame(HEVCContext *s, AVFrame *out, int flush)
(frame->window.top_offset >> vshift) * dst->linesize[i];
dst->data[i] += off;
}
out->key_frame = out->pict_type == AV_PICTURE_TYPE_I;
av_log(s->avctx, AV_LOG_DEBUG,
"Output frame with POC %d.\n", frame->poc);
return 1;