]> git.sesse.net Git - ffmpeg/blob - libavcodec/libsvtav1.c
libsvtav1: Rename without a _
[ffmpeg] / libavcodec / libsvtav1.c
1 /*
2  * Scalable Video Technology for AV1 encoder library plugin
3  *
4  * Copyright (c) 2018 Intel Corporation
5  *
6  * This file is part of FFmpeg.
7  *
8  * FFmpeg is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * FFmpeg is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this program; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  */
22
23 #include <stdint.h>
24 #include <EbSvtAv1ErrorCodes.h>
25 #include <EbSvtAv1Enc.h>
26
27 #include "libavutil/common.h"
28 #include "libavutil/frame.h"
29 #include "libavutil/imgutils.h"
30 #include "libavutil/opt.h"
31 #include "libavutil/pixdesc.h"
32 #include "libavutil/avassert.h"
33
34 #include "internal.h"
35 #include "encode.h"
36 #include "packet_internal.h"
37 #include "avcodec.h"
38 #include "profiles.h"
39
40 typedef enum eos_status {
41     EOS_NOT_REACHED = 0,
42     EOS_SENT,
43     EOS_RECEIVED
44 }EOS_STATUS;
45
46 typedef struct SvtContext {
47     const AVClass *class;
48
49     EbSvtAv1EncConfiguration    enc_params;
50     EbComponentType            *svt_handle;
51
52     EbBufferHeaderType         *in_buf;
53     int                         raw_size;
54     int                         max_tu_size;
55
56     AVFrame *frame;
57
58     AVBufferPool *pool;
59
60     EOS_STATUS eos_flag;
61
62     // User options.
63     int hierarchical_level;
64     int la_depth;
65     int enc_mode;
66     int rc_mode;
67     int scd;
68     int qp;
69
70     int tier;
71
72     int tile_columns;
73     int tile_rows;
74 } SvtContext;
75
76 static const struct {
77     EbErrorType    eb_err;
78     int            av_err;
79     const char     *desc;
80 } svt_errors[] = {
81     { EB_ErrorNone,                             0,              "success"                   },
82     { EB_ErrorInsufficientResources,      AVERROR(ENOMEM),      "insufficient resources"    },
83     { EB_ErrorUndefined,                  AVERROR(EINVAL),      "undefined error"           },
84     { EB_ErrorInvalidComponent,           AVERROR(EINVAL),      "invalid component"         },
85     { EB_ErrorBadParameter,               AVERROR(EINVAL),      "bad parameter"             },
86     { EB_ErrorDestroyThreadFailed,        AVERROR_EXTERNAL,     "failed to destroy thread"  },
87     { EB_ErrorSemaphoreUnresponsive,      AVERROR_EXTERNAL,     "semaphore unresponsive"    },
88     { EB_ErrorDestroySemaphoreFailed,     AVERROR_EXTERNAL,     "semaphore unresponsive"    },
89     { EB_ErrorCreateMutexFailed,          AVERROR_EXTERNAL,     "failed to create mutex"    },
90     { EB_ErrorMutexUnresponsive,          AVERROR_EXTERNAL,     "mutex unresponsive"        },
91     { EB_ErrorDestroyMutexFailed,         AVERROR_EXTERNAL,     "failed to destroy mutex"   },
92     { EB_NoErrorEmptyQueue,               AVERROR(EAGAIN),      "empty queue"               },
93 };
94
95 static int svt_map_error(EbErrorType eb_err, const char **desc)
96 {
97     int i;
98
99     av_assert0(desc);
100     for (i = 0; i < FF_ARRAY_ELEMS(svt_errors); i++) {
101         if (svt_errors[i].eb_err == eb_err) {
102             *desc = svt_errors[i].desc;
103             return svt_errors[i].av_err;
104         }
105     }
106     *desc = "unknown error";
107     return AVERROR_UNKNOWN;
108 }
109
110 static int svt_print_error(void *log_ctx, EbErrorType err,
111                            const char *error_string)
112 {
113     const char *desc;
114     int ret = svt_map_error(err, &desc);
115
116     av_log(log_ctx, AV_LOG_ERROR, "%s: %s (0x%x)\n", error_string, desc, err);
117
118     return ret;
119 }
120
121 static int alloc_buffer(EbSvtAv1EncConfiguration *config, SvtContext *svt_enc)
122 {
123     const int    pack_mode_10bit =
124         (config->encoder_bit_depth > 8) && (config->compressed_ten_bit_format == 0) ? 1 : 0;
125     const size_t luma_size_8bit  =
126         config->source_width * config->source_height * (1 << pack_mode_10bit);
127     const size_t luma_size_10bit =
128         (config->encoder_bit_depth > 8 && pack_mode_10bit == 0) ? luma_size_8bit : 0;
129
130     EbSvtIOFormat *in_data;
131
132     svt_enc->raw_size = (luma_size_8bit + luma_size_10bit) * 3 / 2;
133
134     // allocate buffer for in and out
135     svt_enc->in_buf           = av_mallocz(sizeof(*svt_enc->in_buf));
136     if (!svt_enc->in_buf)
137         return AVERROR(ENOMEM);
138
139     svt_enc->in_buf->p_buffer = av_mallocz(sizeof(*in_data));
140     if (!svt_enc->in_buf->p_buffer)
141         return AVERROR(ENOMEM);
142
143     svt_enc->in_buf->size     = sizeof(*svt_enc->in_buf);
144
145     return 0;
146
147 }
148
149 static int config_enc_params(EbSvtAv1EncConfiguration *param,
150                              AVCodecContext *avctx)
151 {
152     SvtContext *svt_enc = avctx->priv_data;
153     const AVPixFmtDescriptor *desc;
154
155     param->source_width     = avctx->width;
156     param->source_height    = avctx->height;
157
158     desc = av_pix_fmt_desc_get(avctx->pix_fmt);
159     param->encoder_bit_depth = desc->comp[0].depth;
160
161     if (desc->log2_chroma_w == 1 && desc->log2_chroma_h == 1)
162         param->encoder_color_format   = EB_YUV420;
163     else if (desc->log2_chroma_w == 1 && desc->log2_chroma_h == 0)
164         param->encoder_color_format   = EB_YUV422;
165     else if (!desc->log2_chroma_w && !desc->log2_chroma_h)
166         param->encoder_color_format   = EB_YUV444;
167     else {
168         av_log(avctx, AV_LOG_ERROR , "Unsupported pixel format\n");
169         return AVERROR(EINVAL);
170     }
171
172     if (avctx->profile != FF_PROFILE_UNKNOWN)
173         param->profile = avctx->profile;
174
175     if (avctx->level != FF_LEVEL_UNKNOWN)
176         param->level = avctx->level;
177
178     if ((param->encoder_color_format == EB_YUV422 || param->encoder_bit_depth > 10)
179          && param->profile != FF_PROFILE_AV1_PROFESSIONAL ) {
180         av_log(avctx, AV_LOG_WARNING, "Forcing Professional profile\n");
181         param->profile = FF_PROFILE_AV1_PROFESSIONAL;
182     } else if (param->encoder_color_format == EB_YUV444 && param->profile != FF_PROFILE_AV1_HIGH) {
183         av_log(avctx, AV_LOG_WARNING, "Forcing High profile\n");
184         param->profile = FF_PROFILE_AV1_HIGH;
185     }
186
187     // Update param from options
188     param->hierarchical_levels      = svt_enc->hierarchical_level;
189     param->enc_mode                 = svt_enc->enc_mode;
190     param->tier                     = svt_enc->tier;
191     param->rate_control_mode        = svt_enc->rc_mode;
192     param->scene_change_detection   = svt_enc->scd;
193     param->qp                       = svt_enc->qp;
194
195     param->target_bit_rate          = avctx->bit_rate;
196
197     if (avctx->gop_size > 0)
198         param->intra_period_length  = avctx->gop_size - 1;
199
200     if (avctx->framerate.num > 0 && avctx->framerate.den > 0) {
201         param->frame_rate_numerator   = avctx->framerate.num;
202         param->frame_rate_denominator = avctx->framerate.den;
203     } else {
204         param->frame_rate_numerator   = avctx->time_base.den;
205         param->frame_rate_denominator = avctx->time_base.num * avctx->ticks_per_frame;
206     }
207
208     if (param->rate_control_mode) {
209         param->max_qp_allowed       = avctx->qmax;
210         param->min_qp_allowed       = avctx->qmin;
211     }
212
213     param->intra_refresh_type       = 2; /* Real keyframes only */
214
215     if (svt_enc->la_depth >= 0)
216         param->look_ahead_distance  = svt_enc->la_depth;
217
218     param->tile_columns = svt_enc->tile_columns;
219     param->tile_rows    = svt_enc->tile_rows;
220
221     return 0;
222 }
223
224 static int read_in_data(EbSvtAv1EncConfiguration *param, const AVFrame *frame,
225                          EbBufferHeaderType *header_ptr)
226 {
227     EbSvtIOFormat *in_data = (EbSvtIOFormat *)header_ptr->p_buffer;
228     ptrdiff_t linesizes[4];
229     size_t sizes[4];
230     int bytes_shift = param->encoder_bit_depth > 8 ? 1 : 0;
231     int ret, frame_size;
232
233     for (int i = 0; i < 4; i++)
234         linesizes[i] = frame->linesize[i];
235
236     ret = av_image_fill_plane_sizes(sizes, frame->format, frame->height,
237                                     linesizes);
238     if (ret < 0)
239         return ret;
240
241     frame_size = 0;
242     for (int i = 0; i < 4; i++) {
243         if (sizes[i] > INT_MAX - frame_size)
244             return AVERROR(EINVAL);
245         frame_size += sizes[i];
246     }
247
248     in_data->luma = frame->data[0];
249     in_data->cb   = frame->data[1];
250     in_data->cr   = frame->data[2];
251
252     in_data->y_stride  = AV_CEIL_RSHIFT(frame->linesize[0], bytes_shift);
253     in_data->cb_stride = AV_CEIL_RSHIFT(frame->linesize[1], bytes_shift);
254     in_data->cr_stride = AV_CEIL_RSHIFT(frame->linesize[2], bytes_shift);
255
256     header_ptr->n_filled_len = frame_size;
257
258     return 0;
259 }
260
261 static av_cold int eb_enc_init(AVCodecContext *avctx)
262 {
263     SvtContext   *svt_enc = avctx->priv_data;
264     EbErrorType svt_ret;
265     int ret;
266
267     svt_enc->eos_flag = EOS_NOT_REACHED;
268
269     svt_ret = svt_av1_enc_init_handle(&svt_enc->svt_handle, svt_enc, &svt_enc->enc_params);
270     if (svt_ret != EB_ErrorNone) {
271         return svt_print_error(avctx, svt_ret, "Error initializing encoder handle");
272     }
273
274     ret = config_enc_params(&svt_enc->enc_params, avctx);
275     if (ret < 0) {
276         svt_av1_enc_deinit_handle(svt_enc->svt_handle);
277         svt_enc->svt_handle = NULL;
278         av_log(avctx, AV_LOG_ERROR, "Error configuring encoder parameters\n");
279         return ret;
280     }
281
282     svt_ret = svt_av1_enc_set_parameter(svt_enc->svt_handle, &svt_enc->enc_params);
283     if (svt_ret != EB_ErrorNone) {
284         svt_av1_enc_deinit_handle(svt_enc->svt_handle);
285         svt_enc->svt_handle = NULL;
286         return svt_print_error(avctx, svt_ret, "Error setting encoder parameters");
287     }
288
289     svt_ret = svt_av1_enc_init(svt_enc->svt_handle);
290     if (svt_ret != EB_ErrorNone) {
291         svt_av1_enc_deinit_handle(svt_enc->svt_handle);
292         svt_enc->svt_handle = NULL;
293         return svt_print_error(avctx, svt_ret, "Error initializing encoder");
294     }
295
296     if (avctx->flags & AV_CODEC_FLAG_GLOBAL_HEADER) {
297         EbBufferHeaderType *headerPtr = NULL;
298
299         svt_ret = svt_av1_enc_stream_header(svt_enc->svt_handle, &headerPtr);
300         if (svt_ret != EB_ErrorNone) {
301             return svt_print_error(avctx, svt_ret, "Error building stream header");
302         }
303
304         avctx->extradata_size = headerPtr->n_filled_len;
305         avctx->extradata = av_mallocz(avctx->extradata_size + AV_INPUT_BUFFER_PADDING_SIZE);
306         if (!avctx->extradata) {
307             av_log(avctx, AV_LOG_ERROR,
308                    "Cannot allocate AV1 header of size %d.\n", avctx->extradata_size);
309             return AVERROR(ENOMEM);
310         }
311
312         memcpy(avctx->extradata, headerPtr->p_buffer, avctx->extradata_size);
313
314         svt_ret = svt_av1_enc_stream_header_release(headerPtr);
315         if (svt_ret != EB_ErrorNone) {
316             return svt_print_error(avctx, svt_ret, "Error freeing stream header");
317         }
318     }
319
320     svt_enc->frame = av_frame_alloc();
321     if (!svt_enc->frame)
322         return AVERROR(ENOMEM);
323
324     return alloc_buffer(&svt_enc->enc_params, svt_enc);
325 }
326
327 static int eb_send_frame(AVCodecContext *avctx, const AVFrame *frame)
328 {
329     SvtContext           *svt_enc = avctx->priv_data;
330     EbBufferHeaderType  *headerPtr = svt_enc->in_buf;
331     int ret;
332
333     if (!frame) {
334         EbBufferHeaderType headerPtrLast;
335
336         if (svt_enc->eos_flag == EOS_SENT)
337             return 0;
338
339         headerPtrLast.n_alloc_len   = 0;
340         headerPtrLast.n_filled_len  = 0;
341         headerPtrLast.n_tick_count  = 0;
342         headerPtrLast.p_app_private = NULL;
343         headerPtrLast.p_buffer      = NULL;
344         headerPtrLast.flags         = EB_BUFFERFLAG_EOS;
345
346         svt_av1_enc_send_picture(svt_enc->svt_handle, &headerPtrLast);
347         svt_enc->eos_flag = EOS_SENT;
348         return 0;
349     }
350
351     ret = read_in_data(&svt_enc->enc_params, frame, headerPtr);
352     if (ret < 0)
353         return ret;
354
355     headerPtr->flags         = 0;
356     headerPtr->p_app_private = NULL;
357     headerPtr->pts           = frame->pts;
358
359     svt_av1_enc_send_picture(svt_enc->svt_handle, headerPtr);
360
361     return 0;
362 }
363
364 static AVBufferRef *get_output_ref(AVCodecContext *avctx, SvtContext *svt_enc, int filled_len)
365 {
366     if (filled_len > svt_enc->max_tu_size) {
367         const int max_frames = 8;
368         int max_tu_size;
369
370         if (filled_len > svt_enc->raw_size * max_frames) {
371             av_log(avctx, AV_LOG_ERROR, "TU size > %d raw frame size.\n", max_frames);
372             return NULL;
373         }
374
375         max_tu_size = 1 << av_ceil_log2(filled_len);
376         av_buffer_pool_uninit(&svt_enc->pool);
377         svt_enc->pool = av_buffer_pool_init(max_tu_size + AV_INPUT_BUFFER_PADDING_SIZE, NULL);
378         if (!svt_enc->pool)
379             return NULL;
380
381         svt_enc->max_tu_size = max_tu_size;
382     }
383     av_assert0(svt_enc->pool);
384
385     return av_buffer_pool_get(svt_enc->pool);
386 }
387
388 static int eb_receive_packet(AVCodecContext *avctx, AVPacket *pkt)
389 {
390     SvtContext  *svt_enc = avctx->priv_data;
391     EbBufferHeaderType *headerPtr;
392     AVFrame *frame = svt_enc->frame;
393     EbErrorType svt_ret;
394     AVBufferRef *ref;
395     int ret = 0, pict_type;
396
397     if (svt_enc->eos_flag == EOS_RECEIVED)
398         return AVERROR_EOF;
399
400     ret = ff_encode_get_frame(avctx, frame);
401     if (ret < 0 && ret != AVERROR_EOF)
402         return ret;
403     if (ret == AVERROR_EOF)
404         frame = NULL;
405
406     ret = eb_send_frame(avctx, frame);
407     if (ret < 0)
408         return ret;
409     av_frame_unref(svt_enc->frame);
410
411     svt_ret = svt_av1_enc_get_packet(svt_enc->svt_handle, &headerPtr, svt_enc->eos_flag);
412     if (svt_ret == EB_NoErrorEmptyQueue)
413         return AVERROR(EAGAIN);
414
415     ref = get_output_ref(avctx, svt_enc, headerPtr->n_filled_len);
416     if (!ref) {
417         av_log(avctx, AV_LOG_ERROR, "Failed to allocate output packet.\n");
418         svt_av1_enc_release_out_buffer(&headerPtr);
419         return AVERROR(ENOMEM);
420     }
421     pkt->buf = ref;
422     pkt->data = ref->data;
423
424     memcpy(pkt->data, headerPtr->p_buffer, headerPtr->n_filled_len);
425     memset(pkt->data + headerPtr->n_filled_len, 0, AV_INPUT_BUFFER_PADDING_SIZE);
426
427     pkt->size = headerPtr->n_filled_len;
428     pkt->pts  = headerPtr->pts;
429     pkt->dts  = headerPtr->dts;
430
431     switch (headerPtr->pic_type) {
432     case EB_AV1_KEY_PICTURE:
433         pkt->flags |= AV_PKT_FLAG_KEY;
434         // fall-through
435     case EB_AV1_INTRA_ONLY_PICTURE:
436         pict_type = AV_PICTURE_TYPE_I;
437         break;
438     case EB_AV1_INVALID_PICTURE:
439         pict_type = AV_PICTURE_TYPE_NONE;
440         break;
441     default:
442         pict_type = AV_PICTURE_TYPE_P;
443         break;
444     }
445
446     if (headerPtr->pic_type == EB_AV1_NON_REF_PICTURE)
447         pkt->flags |= AV_PKT_FLAG_DISPOSABLE;
448
449     if (headerPtr->flags & EB_BUFFERFLAG_EOS)
450         svt_enc->eos_flag = EOS_RECEIVED;
451
452     ff_side_data_set_encoder_stats(pkt, headerPtr->qp * FF_QP2LAMBDA, NULL, 0, pict_type);
453
454     svt_av1_enc_release_out_buffer(&headerPtr);
455
456     return 0;
457 }
458
459 static av_cold int eb_enc_close(AVCodecContext *avctx)
460 {
461     SvtContext *svt_enc = avctx->priv_data;
462
463     if (svt_enc->svt_handle) {
464         svt_av1_enc_deinit(svt_enc->svt_handle);
465         svt_av1_enc_deinit_handle(svt_enc->svt_handle);
466     }
467     if (svt_enc->in_buf) {
468         av_free(svt_enc->in_buf->p_buffer);
469         av_freep(&svt_enc->in_buf);
470     }
471
472     av_buffer_pool_uninit(&svt_enc->pool);
473     av_frame_free(&svt_enc->frame);
474
475     return 0;
476 }
477
478 #define OFFSET(x) offsetof(SvtContext, x)
479 #define VE AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
480 static const AVOption options[] = {
481     { "hielevel", "Hierarchical prediction levels setting", OFFSET(hierarchical_level),
482       AV_OPT_TYPE_INT, { .i64 = 4 }, 3, 4, VE , "hielevel"},
483         { "3level", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = 3 },  INT_MIN, INT_MAX, VE, "hielevel" },
484         { "4level", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = 4 },  INT_MIN, INT_MAX, VE, "hielevel" },
485
486     { "la_depth", "Look ahead distance [0, 120]", OFFSET(la_depth),
487       AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 120, VE },
488
489     { "preset", "Encoding preset [0, 8]",
490       OFFSET(enc_mode), AV_OPT_TYPE_INT, { .i64 = MAX_ENC_PRESET }, 0, MAX_ENC_PRESET, VE },
491
492     { "tier", "Set tier (general_tier_flag)", OFFSET(tier),
493       AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, VE, "tier" },
494         { "main", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = 0 }, 0, 0, VE, "tier" },
495         { "high", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = 1 }, 0, 0, VE, "tier" },
496
497     FF_AV1_PROFILE_OPTS
498
499 #define LEVEL(name, value) name, NULL, 0, AV_OPT_TYPE_CONST, \
500       { .i64 = value }, 0, 0, VE, "avctx.level"
501         { LEVEL("2.0", 20) },
502         { LEVEL("2.1", 21) },
503         { LEVEL("2.2", 22) },
504         { LEVEL("2.3", 23) },
505         { LEVEL("3.0", 30) },
506         { LEVEL("3.1", 31) },
507         { LEVEL("3.2", 32) },
508         { LEVEL("3.3", 33) },
509         { LEVEL("4.0", 40) },
510         { LEVEL("4.1", 41) },
511         { LEVEL("4.2", 42) },
512         { LEVEL("4.3", 43) },
513         { LEVEL("5.0", 50) },
514         { LEVEL("5.1", 51) },
515         { LEVEL("5.2", 52) },
516         { LEVEL("5.3", 53) },
517         { LEVEL("6.0", 60) },
518         { LEVEL("6.1", 61) },
519         { LEVEL("6.2", 62) },
520         { LEVEL("6.3", 63) },
521         { LEVEL("7.0", 70) },
522         { LEVEL("7.1", 71) },
523         { LEVEL("7.2", 72) },
524         { LEVEL("7.3", 73) },
525 #undef LEVEL
526
527     { "rc", "Bit rate control mode", OFFSET(rc_mode),
528       AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 3, VE , "rc"},
529         { "cqp", "Const Quantization Parameter", 0, AV_OPT_TYPE_CONST, { .i64 = 0 },  INT_MIN, INT_MAX, VE, "rc" },
530         { "vbr", "Variable Bit Rate, use a target bitrate for the entire stream", 0, AV_OPT_TYPE_CONST, { .i64 = 1 },  INT_MIN, INT_MAX, VE, "rc" },
531         { "cvbr", "Constrained Variable Bit Rate, use a target bitrate for each GOP", 0, AV_OPT_TYPE_CONST,{ .i64 = 2 },  INT_MIN, INT_MAX, VE, "rc" },
532
533     { "qp", "QP value for intra frames", OFFSET(qp),
534       AV_OPT_TYPE_INT, { .i64 = 50 }, 0, 63, VE },
535
536     { "sc_detection", "Scene change detection", OFFSET(scd),
537       AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, VE },
538
539     { "tile-columns", "Log2 of number of tile columns to use", OFFSET(tile_columns), AV_OPT_TYPE_INT, {.i64 = 0}, 0, 4, VE},
540     { "tile-rows", "Log2 of number of tile rows to use", OFFSET(tile_rows), AV_OPT_TYPE_INT, {.i64 = 0}, 0, 6, VE},
541
542     {NULL},
543 };
544
545 static const AVClass class = {
546     .class_name = "libsvtav1",
547     .item_name  = av_default_item_name,
548     .option     = options,
549     .version    = LIBAVUTIL_VERSION_INT,
550 };
551
552 static const AVCodecDefault eb_enc_defaults[] = {
553     { "b",         "7M"    },
554     { "g",         "-1"    },
555     { "qmin",      "0"     },
556     { "qmax",      "63"    },
557     { NULL },
558 };
559
560 AVCodec ff_libsvtav1_encoder = {
561     .name           = "libsvtav1",
562     .long_name      = NULL_IF_CONFIG_SMALL("SVT-AV1(Scalable Video Technology for AV1) encoder"),
563     .priv_data_size = sizeof(SvtContext),
564     .type           = AVMEDIA_TYPE_VIDEO,
565     .id             = AV_CODEC_ID_AV1,
566     .init           = eb_enc_init,
567     .receive_packet = eb_receive_packet,
568     .close          = eb_enc_close,
569     .capabilities   = AV_CODEC_CAP_DELAY | AV_CODEC_CAP_AUTO_THREADS,
570     .pix_fmts       = (const enum AVPixelFormat[]){ AV_PIX_FMT_YUV420P,
571                                                     AV_PIX_FMT_YUV420P10,
572                                                     AV_PIX_FMT_NONE },
573     .priv_class     = &class,
574     .defaults       = eb_enc_defaults,
575     .caps_internal  = FF_CODEC_CAP_INIT_CLEANUP,
576     .wrapper_name   = "libsvtav1",
577 };