mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
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>
This commit is contained in:
parent
b23208826b
commit
6fd1533057
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user