flashsvenc: Keep coded_frame.key_frame a write-only variable

This commit is contained in:
Vittorio Giovara 2015-07-15 18:41:19 +01:00
parent 75c1ed2e4c
commit 91f9b6579a

View File

@ -275,7 +275,7 @@ static int flashsv_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
avctx->coded_frame->key_frame = 0;
}
if (avctx->coded_frame->key_frame)
if (I_frame)
pkt->flags |= AV_PKT_FLAG_KEY;
*got_packet = 1;