Commit d912ff19 authored by Paul B Mahol's avatar Paul B Mahol

avcodec/fitsenc: mark output packets as keyframes

parent fd2ca3d4
......@@ -104,6 +104,7 @@ static int fits_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
bytes_left = padded_data_size - data_size;
memset(bytestream, 0, bytes_left);
pkt->flags |= AV_PKT_FLAG_KEY;
*got_packet = 1;
return 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment