lavc/vaapi_encode*: handle frame durations and AV_CODEC_CAP_ENCODER_REORDERED_OPAQUE

Except for the mjpeg_vaapi encoder, which is already handled
generically.
This commit is contained in:
Anton Khirnov 2023-01-04 18:11:19 +01:00
parent c44a3dba9e
commit fbdba9a1a6
6 changed files with 13 additions and 5 deletions

View file

@ -695,6 +695,7 @@ static int vaapi_encode_output(AVCodecContext *avctx,
pkt->flags |= AV_PKT_FLAG_KEY;
pkt->pts = pic->pts;
pkt->duration = pic->input_image->duration;
vas = vaUnmapBuffer(ctx->hwctx->display, pic->output_buffer);
if (vas != VA_STATUS_SUCCESS) {
@ -704,6 +705,13 @@ static int vaapi_encode_output(AVCodecContext *avctx,
goto fail;
}
// for no-delay encoders this is handled in generic codec
if (avctx->codec->capabilities & AV_CODEC_CAP_DELAY) {
err = ff_encode_reordered_opaque(avctx, pkt, pic->input_image);
if (err < 0)
goto fail;
}
av_buffer_unref(&pic->output_buffer_ref);
pic->output_buffer = VA_INVALID_ID;