Merge commit '91f9b6579ac684c4b51c4cd0dbaed0a4f8295edf'

* commit '91f9b6579ac684c4b51c4cd0dbaed0a4f8295edf':
  flashsvenc: Keep coded_frame.key_frame a write-only variable

Merged-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
Michael Niedermayer 2015-07-20 22:36:18 +02:00
commit 439c9760b0

View File

@ -271,7 +271,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;