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:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user