diff options
author | Christopher Degawa <ccom@randomderp.com> | 2022-04-25 17:54:38 -0500 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2022-04-25 20:35:31 -0300 |
commit | 6fd1533057ff4f966efc169b71f8c3770843fc49 (patch) | |
tree | 3169807c505460fcb949899a2700cef1a9fcea72 | |
parent | b23208826bfb9ac2cba9736e066ea6b82f6207b9 (diff) | |
download | ffmpeg-6fd1533057ff4f966efc169b71f8c3770843fc49.tar.gz |
avcodec/libsvtav1: pass pict_type to library
match the behavior of SvtAv1EncApp to ensure pic_type is always set
before passing it to the library.
The other options for pic_type aren't currently used inside the library,
so they aren't introduced in this patch.
Signed-off-by: Christopher Degawa <ccom@randomderp.com>
Signed-off-by: James Almer <jamrial@gmail.com>
-rw-r--r-- | libavcodec/libsvtav1.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/libavcodec/libsvtav1.c b/libavcodec/libsvtav1.c index 2e3d96ce37..088b9bab02 100644 --- a/libavcodec/libsvtav1.c +++ b/libavcodec/libsvtav1.c @@ -404,6 +404,16 @@ static int eb_send_frame(AVCodecContext *avctx, const AVFrame *frame) headerPtr->p_app_private = NULL; headerPtr->pts = frame->pts; + switch (frame->pict_type) { + case AV_PICTURE_TYPE_I: + headerPtr->pic_type = EB_AV1_KEY_PICTURE; + break; + default: + // Actually means auto, or default. + headerPtr->pic_type = EB_AV1_INVALID_PICTURE; + break; + } + svt_av1_enc_send_picture(svt_enc->svt_handle, headerPtr); return 0; |