mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-08 06:09:50 +00:00
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:
parent
c44a3dba9e
commit
fbdba9a1a6
6 changed files with 13 additions and 5 deletions
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue