FFmpeg
libsvtav1.c
Go to the documentation of this file.
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 #include <EbSvtAv1Metadata.h>
27 
28 #include "libavutil/common.h"
29 #include "libavutil/frame.h"
30 #include "libavutil/imgutils.h"
31 #include "libavutil/intreadwrite.h"
33 #include "libavutil/mem.h"
34 #include "libavutil/opt.h"
35 #include "libavutil/pixdesc.h"
36 #include "libavutil/avassert.h"
37 
38 #include "codec_internal.h"
39 #include "dovi_rpu.h"
40 #include "encode.h"
41 #include "avcodec.h"
42 #include "profiles.h"
43 
44 typedef enum eos_status {
48 }EOS_STATUS;
49 
50 typedef struct SvtContext {
51  const AVClass *class;
52 
53  EbSvtAv1EncConfiguration enc_params;
54  EbComponentType *svt_handle;
55 
56  EbBufferHeaderType *in_buf;
57  int raw_size;
59 
61 
63 
64  EOS_STATUS eos_flag;
65 
67 
68  // User options.
70  int enc_mode;
71  int crf;
72  int qp;
73 } SvtContext;
74 
75 static const struct {
76  EbErrorType eb_err;
77  int av_err;
78  const char *desc;
79 } svt_errors[] = {
80  { EB_ErrorNone, 0, "success" },
81  { EB_ErrorInsufficientResources, AVERROR(ENOMEM), "insufficient resources" },
82  { EB_ErrorUndefined, AVERROR(EINVAL), "undefined error" },
83  { EB_ErrorInvalidComponent, AVERROR(EINVAL), "invalid component" },
84  { EB_ErrorBadParameter, AVERROR(EINVAL), "bad parameter" },
85  { EB_ErrorDestroyThreadFailed, AVERROR_EXTERNAL, "failed to destroy thread" },
86  { EB_ErrorSemaphoreUnresponsive, AVERROR_EXTERNAL, "semaphore unresponsive" },
87  { EB_ErrorDestroySemaphoreFailed, AVERROR_EXTERNAL, "failed to destroy semaphore"},
88  { EB_ErrorCreateMutexFailed, AVERROR_EXTERNAL, "failed to create mutex" },
89  { EB_ErrorMutexUnresponsive, AVERROR_EXTERNAL, "mutex unresponsive" },
90  { EB_ErrorDestroyMutexFailed, AVERROR_EXTERNAL, "failed to destroy mutex" },
91  { EB_NoErrorEmptyQueue, AVERROR(EAGAIN), "empty queue" },
92 };
93 
94 static int svt_map_error(EbErrorType eb_err, const char **desc)
95 {
96  int i;
97 
99  for (i = 0; i < FF_ARRAY_ELEMS(svt_errors); i++) {
100  if (svt_errors[i].eb_err == eb_err) {
101  *desc = svt_errors[i].desc;
102  return svt_errors[i].av_err;
103  }
104  }
105  *desc = "unknown error";
106  return AVERROR_UNKNOWN;
107 }
108 
109 static int svt_print_error(void *log_ctx, EbErrorType err,
110  const char *error_string)
111 {
112  const char *desc;
113  int ret = svt_map_error(err, &desc);
114 
115  av_log(log_ctx, AV_LOG_ERROR, "%s: %s (0x%x)\n", error_string, desc, err);
116 
117  return ret;
118 }
119 
120 static int alloc_buffer(EbSvtAv1EncConfiguration *config, SvtContext *svt_enc)
121 {
122  const size_t luma_size = config->source_width * config->source_height *
123  (config->encoder_bit_depth > 8 ? 2 : 1);
124 
125  EbSvtIOFormat *in_data;
126 
127  svt_enc->raw_size = luma_size * 3 / 2;
128 
129  // allocate buffer for in and out
130  svt_enc->in_buf = av_mallocz(sizeof(*svt_enc->in_buf));
131  if (!svt_enc->in_buf)
132  return AVERROR(ENOMEM);
133 
134  svt_enc->in_buf->p_buffer = av_mallocz(sizeof(*in_data));
135  if (!svt_enc->in_buf->p_buffer)
136  return AVERROR(ENOMEM);
137 
138  svt_enc->in_buf->size = sizeof(*svt_enc->in_buf);
139 
140  return 0;
141 
142 }
143 
144 static void handle_mdcv(struct EbSvtAv1MasteringDisplayInfo *dst,
145  const AVMasteringDisplayMetadata *mdcv)
146 {
147  if (mdcv->has_primaries) {
148  const struct EbSvtAv1ChromaPoints *const points[] = {
149  &dst->r,
150  &dst->g,
151  &dst->b,
152  };
153 
154  for (int i = 0; i < 3; i++) {
155  const struct EbSvtAv1ChromaPoints *dst = points[i];
156  const AVRational *src = mdcv->display_primaries[i];
157 
158  AV_WB16(&dst->x,
159  av_rescale_q(1, src[0], (AVRational){ 1, (1 << 16) }));
160  AV_WB16(&dst->y,
161  av_rescale_q(1, src[1], (AVRational){ 1, (1 << 16) }));
162  }
163 
164  AV_WB16(&dst->white_point.x,
165  av_rescale_q(1, mdcv->white_point[0],
166  (AVRational){ 1, (1 << 16) }));
167  AV_WB16(&dst->white_point.y,
168  av_rescale_q(1, mdcv->white_point[1],
169  (AVRational){ 1, (1 << 16) }));
170  }
171 
172  if (mdcv->has_luminance) {
173  AV_WB32(&dst->max_luma,
174  av_rescale_q(1, mdcv->max_luminance,
175  (AVRational){ 1, (1 << 8) }));
176  AV_WB32(&dst->min_luma,
177  av_rescale_q(1, mdcv->min_luminance,
178  (AVRational){ 1, (1 << 14) }));
179  }
180 }
181 
182 static void handle_side_data(AVCodecContext *avctx,
183  EbSvtAv1EncConfiguration *param)
184 {
185  const AVFrameSideData *cll_sd =
188  const AVFrameSideData *mdcv_sd =
190  avctx->nb_decoded_side_data,
192 
193  if (cll_sd) {
194  const AVContentLightMetadata *cll =
195  (AVContentLightMetadata *)cll_sd->data;
196 
197  AV_WB16(&param->content_light_level.max_cll, cll->MaxCLL);
198  AV_WB16(&param->content_light_level.max_fall, cll->MaxFALL);
199  }
200 
201  if (mdcv_sd) {
202  handle_mdcv(&param->mastering_display,
203  (AVMasteringDisplayMetadata *)mdcv_sd->data);
204  }
205 }
206 
207 static int config_enc_params(EbSvtAv1EncConfiguration *param,
208  AVCodecContext *avctx)
209 {
210  SvtContext *svt_enc = avctx->priv_data;
211  const AVPixFmtDescriptor *desc;
212  av_unused const AVDictionaryEntry *en = NULL;
213 
214  // Update param from options
215  if (svt_enc->enc_mode >= -1)
216  param->enc_mode = svt_enc->enc_mode;
217 
218  if (avctx->bit_rate) {
219  param->target_bit_rate = avctx->bit_rate;
220  if (avctx->rc_max_rate != avctx->bit_rate)
221  param->rate_control_mode = 1;
222  else
223  param->rate_control_mode = 2;
224 
225  param->max_qp_allowed = avctx->qmax;
226  param->min_qp_allowed = avctx->qmin;
227  }
228  param->max_bit_rate = avctx->rc_max_rate;
229  if ((avctx->bit_rate > 0 || avctx->rc_max_rate > 0) && avctx->rc_buffer_size)
230  param->maximum_buffer_size_ms =
231  avctx->rc_buffer_size * 1000LL /
232  FFMAX(avctx->bit_rate, avctx->rc_max_rate);
233 
234  if (svt_enc->crf > 0) {
235  param->qp = svt_enc->crf;
236  param->rate_control_mode = 0;
237  } else if (svt_enc->qp > 0) {
238  param->qp = svt_enc->qp;
239  param->rate_control_mode = 0;
240  param->enable_adaptive_quantization = 0;
241  }
242 
243  desc = av_pix_fmt_desc_get(avctx->pix_fmt);
244  param->color_primaries = avctx->color_primaries;
245  param->matrix_coefficients = (desc->flags & AV_PIX_FMT_FLAG_RGB) ?
246  AVCOL_SPC_RGB : avctx->colorspace;
247  param->transfer_characteristics = avctx->color_trc;
248 
250  param->color_range = avctx->color_range == AVCOL_RANGE_JPEG;
251  else
252  param->color_range = !!(desc->flags & AV_PIX_FMT_FLAG_RGB);
253 
254 #if SVT_AV1_CHECK_VERSION(1, 0, 0)
256  const char *name =
258 
259  switch (avctx->chroma_sample_location) {
260  case AVCHROMA_LOC_LEFT:
261  param->chroma_sample_position = EB_CSP_VERTICAL;
262  break;
264  param->chroma_sample_position = EB_CSP_COLOCATED;
265  break;
266  default:
267  if (!name)
268  break;
269 
270  av_log(avctx, AV_LOG_WARNING,
271  "Specified chroma sample location %s is unsupported "
272  "on the AV1 bit stream level. Usage of a container that "
273  "allows passing this information - such as Matroska - "
274  "is recommended.\n",
275  name);
276  break;
277  }
278  }
279 #endif
280 
281  if (avctx->profile != AV_PROFILE_UNKNOWN)
282  param->profile = avctx->profile;
283 
284  if (avctx->level != AV_LEVEL_UNKNOWN)
285  param->level = avctx->level;
286 
287  // gop_size == 1 case is handled when encoding each frame by setting
288  // pic_type to EB_AV1_KEY_PICTURE. For gop_size > 1, set the
289  // intra_period_length. Even though setting intra_period_length to 0 should
290  // work in this case, it does not.
291  // See: https://gitlab.com/AOMediaCodec/SVT-AV1/-/issues/2076
292  if (avctx->gop_size > 1)
293  param->intra_period_length = avctx->gop_size - 1;
294 
295 #if SVT_AV1_CHECK_VERSION(1, 1, 0)
296  // In order for SVT-AV1 to force keyframes by setting pic_type to
297  // EB_AV1_KEY_PICTURE on any frame, force_key_frames has to be set. Note
298  // that this does not force all frames to be keyframes (it only forces a
299  // keyframe with pic_type is set to EB_AV1_KEY_PICTURE). As of now, SVT-AV1
300  // does not support arbitrary keyframe requests by setting pic_type to
301  // EB_AV1_KEY_PICTURE, so it is done only when gop_size == 1.
302  // FIXME: When SVT-AV1 supports arbitrary keyframe requests, this code needs
303  // to be updated to set force_key_frames accordingly.
304  if (avctx->gop_size == 1)
305  param->force_key_frames = 1;
306 #endif
307 
308  if (avctx->framerate.num > 0 && avctx->framerate.den > 0) {
309  param->frame_rate_numerator = avctx->framerate.num;
310  param->frame_rate_denominator = avctx->framerate.den;
311  } else {
312  param->frame_rate_numerator = avctx->time_base.den;
313  param->frame_rate_denominator = avctx->time_base.num;
314  }
315 
316  /* 2 = IDR, closed GOP, 1 = CRA, open GOP */
317  param->intra_refresh_type = avctx->flags & AV_CODEC_FLAG_CLOSED_GOP ? 2 : 1;
318 
319  handle_side_data(avctx, param);
320 
321 #if SVT_AV1_CHECK_VERSION(0, 9, 1)
322  while ((en = av_dict_iterate(svt_enc->svtav1_opts, en))) {
323  EbErrorType ret = svt_av1_enc_parse_parameter(param, en->key, en->value);
324  if (ret != EB_ErrorNone) {
326  av_log(avctx, level, "Error parsing option %s: %s.\n", en->key, en->value);
327  if (avctx->err_recognition & AV_EF_EXPLODE)
328  return AVERROR(EINVAL);
329  }
330  }
331 #else
332  if (av_dict_count(svt_enc->svtav1_opts)) {
334  av_log(avctx, level, "svt-params needs libavcodec to be compiled with SVT-AV1 "
335  "headers >= 0.9.1.\n");
336  if (avctx->err_recognition & AV_EF_EXPLODE)
337  return AVERROR(ENOSYS);
338  }
339 #endif
340 
341  param->source_width = avctx->width;
342  param->source_height = avctx->height;
343 
344  param->encoder_bit_depth = desc->comp[0].depth;
345 
346  if (desc->log2_chroma_w == 1 && desc->log2_chroma_h == 1)
347  param->encoder_color_format = EB_YUV420;
348  else if (desc->log2_chroma_w == 1 && desc->log2_chroma_h == 0)
349  param->encoder_color_format = EB_YUV422;
350  else if (!desc->log2_chroma_w && !desc->log2_chroma_h)
351  param->encoder_color_format = EB_YUV444;
352  else {
353  av_log(avctx, AV_LOG_ERROR , "Unsupported pixel format\n");
354  return AVERROR(EINVAL);
355  }
356 
357  if ((param->encoder_color_format == EB_YUV422 || param->encoder_bit_depth > 10)
358  && param->profile != AV_PROFILE_AV1_PROFESSIONAL ) {
359  av_log(avctx, AV_LOG_WARNING, "Forcing Professional profile\n");
360  param->profile = AV_PROFILE_AV1_PROFESSIONAL;
361  } else if (param->encoder_color_format == EB_YUV444 && param->profile != AV_PROFILE_AV1_HIGH) {
362  av_log(avctx, AV_LOG_WARNING, "Forcing High profile\n");
363  param->profile = AV_PROFILE_AV1_HIGH;
364  }
365 
366  avctx->bit_rate = param->rate_control_mode > 0 ?
367  param->target_bit_rate : 0;
368  avctx->rc_max_rate = param->max_bit_rate;
369  avctx->rc_buffer_size = param->maximum_buffer_size_ms *
370  FFMAX(avctx->bit_rate, avctx->rc_max_rate) / 1000LL;
371 
372  if (avctx->bit_rate || avctx->rc_max_rate || avctx->rc_buffer_size) {
373  AVCPBProperties *cpb_props = ff_encode_add_cpb_side_data(avctx);
374  if (!cpb_props)
375  return AVERROR(ENOMEM);
376 
377  cpb_props->buffer_size = avctx->rc_buffer_size;
378  cpb_props->max_bitrate = avctx->rc_max_rate;
379  cpb_props->avg_bitrate = avctx->bit_rate;
380  }
381 
382  return 0;
383 }
384 
385 static int read_in_data(EbSvtAv1EncConfiguration *param, const AVFrame *frame,
386  EbBufferHeaderType *header_ptr)
387 {
388  EbSvtIOFormat *in_data = (EbSvtIOFormat *)header_ptr->p_buffer;
389  ptrdiff_t linesizes[4];
390  size_t sizes[4];
391  int bytes_shift = param->encoder_bit_depth > 8 ? 1 : 0;
392  int ret, frame_size;
393 
394  for (int i = 0; i < 4; i++)
395  linesizes[i] = frame->linesize[i];
396 
397  ret = av_image_fill_plane_sizes(sizes, frame->format, frame->height,
398  linesizes);
399  if (ret < 0)
400  return ret;
401 
402  frame_size = 0;
403  for (int i = 0; i < 4; i++) {
404  if (sizes[i] > INT_MAX - frame_size)
405  return AVERROR(EINVAL);
406  frame_size += sizes[i];
407  }
408 
409  in_data->luma = frame->data[0];
410  in_data->cb = frame->data[1];
411  in_data->cr = frame->data[2];
412 
413  in_data->y_stride = AV_CEIL_RSHIFT(frame->linesize[0], bytes_shift);
414  in_data->cb_stride = AV_CEIL_RSHIFT(frame->linesize[1], bytes_shift);
415  in_data->cr_stride = AV_CEIL_RSHIFT(frame->linesize[2], bytes_shift);
416 
417  header_ptr->n_filled_len = frame_size;
418  svt_metadata_array_free(&header_ptr->metadata);
419 
420  return 0;
421 }
422 
424 {
425  SvtContext *svt_enc = avctx->priv_data;
426  EbErrorType svt_ret;
427  int ret;
428 
429  svt_enc->eos_flag = EOS_NOT_REACHED;
430 
431 #if SVT_AV1_CHECK_VERSION(3, 0, 0)
432  svt_ret = svt_av1_enc_init_handle(&svt_enc->svt_handle, &svt_enc->enc_params);
433 #else
434  svt_ret = svt_av1_enc_init_handle(&svt_enc->svt_handle, svt_enc, &svt_enc->enc_params);
435 #endif
436  if (svt_ret != EB_ErrorNone) {
437  return svt_print_error(avctx, svt_ret, "Error initializing encoder handle");
438  }
439 
440  ret = config_enc_params(&svt_enc->enc_params, avctx);
441  if (ret < 0) {
442  av_log(avctx, AV_LOG_ERROR, "Error configuring encoder parameters\n");
443  return ret;
444  }
445 
446  svt_ret = svt_av1_enc_set_parameter(svt_enc->svt_handle, &svt_enc->enc_params);
447  if (svt_ret != EB_ErrorNone) {
448  return svt_print_error(avctx, svt_ret, "Error setting encoder parameters");
449  }
450 
451  svt_ret = svt_av1_enc_init(svt_enc->svt_handle);
452  if (svt_ret != EB_ErrorNone) {
453  return svt_print_error(avctx, svt_ret, "Error initializing encoder");
454  }
455 
456  svt_enc->dovi.logctx = avctx;
457  ret = ff_dovi_configure(&svt_enc->dovi, avctx);
458  if (ret < 0)
459  return ret;
460 
461  if (avctx->flags & AV_CODEC_FLAG_GLOBAL_HEADER) {
462  EbBufferHeaderType *headerPtr = NULL;
463 
464  svt_ret = svt_av1_enc_stream_header(svt_enc->svt_handle, &headerPtr);
465  if (svt_ret != EB_ErrorNone) {
466  return svt_print_error(avctx, svt_ret, "Error building stream header");
467  }
468 
469  avctx->extradata_size = headerPtr->n_filled_len;
471  if (!avctx->extradata) {
472  av_log(avctx, AV_LOG_ERROR,
473  "Cannot allocate AV1 header of size %d.\n", avctx->extradata_size);
474  return AVERROR(ENOMEM);
475  }
476 
477  memcpy(avctx->extradata, headerPtr->p_buffer, avctx->extradata_size);
478 
479  svt_ret = svt_av1_enc_stream_header_release(headerPtr);
480  if (svt_ret != EB_ErrorNone) {
481  return svt_print_error(avctx, svt_ret, "Error freeing stream header");
482  }
483  }
484 
485  svt_enc->frame = av_frame_alloc();
486  if (!svt_enc->frame)
487  return AVERROR(ENOMEM);
488 
489  return alloc_buffer(&svt_enc->enc_params, svt_enc);
490 }
491 
492 static int eb_send_frame(AVCodecContext *avctx, const AVFrame *frame)
493 {
494  SvtContext *svt_enc = avctx->priv_data;
495  EbBufferHeaderType *headerPtr = svt_enc->in_buf;
496  AVFrameSideData *sd;
497  EbErrorType svt_ret;
498  int ret;
499 
500  if (!frame) {
501  EbBufferHeaderType headerPtrLast;
502 
503  if (svt_enc->eos_flag == EOS_SENT)
504  return 0;
505 
506  memset(&headerPtrLast, 0, sizeof(headerPtrLast));
507  headerPtrLast.pic_type = EB_AV1_INVALID_PICTURE;
508  headerPtrLast.flags = EB_BUFFERFLAG_EOS;
509 
510  svt_av1_enc_send_picture(svt_enc->svt_handle, &headerPtrLast);
511  svt_enc->eos_flag = EOS_SENT;
512  return 0;
513  }
514 
515  ret = read_in_data(&svt_enc->enc_params, frame, headerPtr);
516  if (ret < 0)
517  return ret;
518 
519  headerPtr->flags = 0;
520  headerPtr->p_app_private = NULL;
521  headerPtr->pts = frame->pts;
522 
523  switch (frame->pict_type) {
524  case AV_PICTURE_TYPE_I:
525  headerPtr->pic_type = EB_AV1_KEY_PICTURE;
526  break;
527  default:
528  // Actually means auto, or default.
529  headerPtr->pic_type = EB_AV1_INVALID_PICTURE;
530  break;
531  }
532 
533  if (avctx->gop_size == 1)
534  headerPtr->pic_type = EB_AV1_KEY_PICTURE;
535 
537  if (svt_enc->dovi.cfg.dv_profile && sd) {
538  const AVDOVIMetadata *metadata = (const AVDOVIMetadata *)sd->data;
539  uint8_t *t35;
540  int size;
542  &t35, &size)) < 0)
543  return ret;
544  ret = svt_add_metadata(headerPtr, EB_AV1_METADATA_TYPE_ITUT_T35, t35, size);
545  av_free(t35);
546  if (ret < 0)
547  return AVERROR(ENOMEM);
548  } else if (svt_enc->dovi.cfg.dv_profile) {
549  av_log(avctx, AV_LOG_ERROR, "Dolby Vision enabled, but received frame "
550  "without AV_FRAME_DATA_DOVI_METADATA\n");
551  return AVERROR_INVALIDDATA;
552  }
553 
554 
555  svt_ret = svt_av1_enc_send_picture(svt_enc->svt_handle, headerPtr);
556  if (svt_ret != EB_ErrorNone)
557  return svt_print_error(avctx, svt_ret, "Error sending a frame to encoder");
558 
559  return 0;
560 }
561 
562 static AVBufferRef *get_output_ref(AVCodecContext *avctx, SvtContext *svt_enc, int filled_len)
563 {
564  if (filled_len > svt_enc->max_tu_size) {
565  const int max_frames = 8;
566  int max_tu_size;
567 
568  if (filled_len > svt_enc->raw_size * max_frames) {
569  av_log(avctx, AV_LOG_ERROR, "TU size > %d raw frame size.\n", max_frames);
570  return NULL;
571  }
572 
573  max_tu_size = 1 << av_ceil_log2(filled_len);
574  av_buffer_pool_uninit(&svt_enc->pool);
575  svt_enc->pool = av_buffer_pool_init(max_tu_size + AV_INPUT_BUFFER_PADDING_SIZE, NULL);
576  if (!svt_enc->pool)
577  return NULL;
578 
579  svt_enc->max_tu_size = max_tu_size;
580  }
581  av_assert0(svt_enc->pool);
582 
583  return av_buffer_pool_get(svt_enc->pool);
584 }
585 
587 {
588  SvtContext *svt_enc = avctx->priv_data;
589  EbBufferHeaderType *headerPtr;
590  AVFrame *frame = svt_enc->frame;
591  EbErrorType svt_ret;
592  AVBufferRef *ref;
593  int ret = 0;
594 
595  if (svt_enc->eos_flag == EOS_RECEIVED)
596  return AVERROR_EOF;
597 
598  ret = ff_encode_get_frame(avctx, frame);
599  if (ret < 0 && ret != AVERROR_EOF)
600  return ret;
601  if (ret == AVERROR_EOF)
602  frame = NULL;
603 
604  ret = eb_send_frame(avctx, frame);
605  if (ret < 0)
606  return ret;
607  av_frame_unref(svt_enc->frame);
608 
609  svt_ret = svt_av1_enc_get_packet(svt_enc->svt_handle, &headerPtr, svt_enc->eos_flag);
610  if (svt_ret == EB_NoErrorEmptyQueue)
611  return AVERROR(EAGAIN);
612  else if (svt_ret != EB_ErrorNone)
613  return svt_print_error(avctx, svt_ret, "Error getting an output packet from encoder");
614 
615 #if SVT_AV1_CHECK_VERSION(2, 0, 0)
616  if (headerPtr->flags & EB_BUFFERFLAG_EOS) {
617  svt_enc->eos_flag = EOS_RECEIVED;
618  svt_av1_enc_release_out_buffer(&headerPtr);
619  return AVERROR_EOF;
620  }
621 #endif
622 
623  ref = get_output_ref(avctx, svt_enc, headerPtr->n_filled_len);
624  if (!ref) {
625  av_log(avctx, AV_LOG_ERROR, "Failed to allocate output packet.\n");
626  svt_av1_enc_release_out_buffer(&headerPtr);
627  return AVERROR(ENOMEM);
628  }
629  pkt->buf = ref;
630  pkt->data = ref->data;
631 
632  memcpy(pkt->data, headerPtr->p_buffer, headerPtr->n_filled_len);
633  memset(pkt->data + headerPtr->n_filled_len, 0, AV_INPUT_BUFFER_PADDING_SIZE);
634 
635  pkt->size = headerPtr->n_filled_len;
636  pkt->pts = headerPtr->pts;
637  pkt->dts = headerPtr->dts;
638 
639  enum AVPictureType pict_type;
640  switch (headerPtr->pic_type) {
641  case EB_AV1_KEY_PICTURE:
643  // fall-through
644  case EB_AV1_INTRA_ONLY_PICTURE:
645  pict_type = AV_PICTURE_TYPE_I;
646  break;
647  case EB_AV1_INVALID_PICTURE:
648  pict_type = AV_PICTURE_TYPE_NONE;
649  break;
650  default:
651  pict_type = AV_PICTURE_TYPE_P;
652  break;
653  }
654 
655  if (headerPtr->pic_type == EB_AV1_NON_REF_PICTURE)
657 
658 #if !(SVT_AV1_CHECK_VERSION(2, 0, 0))
659  if (headerPtr->flags & EB_BUFFERFLAG_EOS)
660  svt_enc->eos_flag = EOS_RECEIVED;
661 #endif
662 
663  ff_encode_add_stats_side_data(pkt, headerPtr->qp * FF_QP2LAMBDA, NULL, 0, pict_type);
664 
665  svt_av1_enc_release_out_buffer(&headerPtr);
666 
667  return 0;
668 }
669 
671 {
672  SvtContext *svt_enc = avctx->priv_data;
673 
674  if (svt_enc->svt_handle) {
675  svt_av1_enc_deinit(svt_enc->svt_handle);
676  svt_av1_enc_deinit_handle(svt_enc->svt_handle);
677  }
678  if (svt_enc->in_buf) {
679  av_free(svt_enc->in_buf->p_buffer);
680  svt_metadata_array_free(&svt_enc->in_buf->metadata);
681  av_freep(&svt_enc->in_buf);
682  }
683 
684  av_buffer_pool_uninit(&svt_enc->pool);
685  av_frame_free(&svt_enc->frame);
686  ff_dovi_ctx_unref(&svt_enc->dovi);
687 
688  return 0;
689 }
690 
691 #define OFFSET(x) offsetof(SvtContext, x)
692 #define VE AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
693 static const AVOption options[] = {
694  { "preset", "Encoding preset",
695  OFFSET(enc_mode), AV_OPT_TYPE_INT, { .i64 = -2 }, -2, MAX_ENC_PRESET, VE },
696 
698 
699 #define LEVEL(name, value) name, NULL, 0, AV_OPT_TYPE_CONST, \
700  { .i64 = value }, 0, 0, VE, .unit = "avctx.level"
701  { LEVEL("2.0", 20) },
702  { LEVEL("2.1", 21) },
703  { LEVEL("2.2", 22) },
704  { LEVEL("2.3", 23) },
705  { LEVEL("3.0", 30) },
706  { LEVEL("3.1", 31) },
707  { LEVEL("3.2", 32) },
708  { LEVEL("3.3", 33) },
709  { LEVEL("4.0", 40) },
710  { LEVEL("4.1", 41) },
711  { LEVEL("4.2", 42) },
712  { LEVEL("4.3", 43) },
713  { LEVEL("5.0", 50) },
714  { LEVEL("5.1", 51) },
715  { LEVEL("5.2", 52) },
716  { LEVEL("5.3", 53) },
717  { LEVEL("6.0", 60) },
718  { LEVEL("6.1", 61) },
719  { LEVEL("6.2", 62) },
720  { LEVEL("6.3", 63) },
721  { LEVEL("7.0", 70) },
722  { LEVEL("7.1", 71) },
723  { LEVEL("7.2", 72) },
724  { LEVEL("7.3", 73) },
725 #undef LEVEL
726 
727  { "crf", "Constant Rate Factor value", OFFSET(crf),
728  AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 63, VE },
729  { "qp", "Initial Quantizer level value", OFFSET(qp),
730  AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 63, VE },
731  { "svtav1-params", "Set the SVT-AV1 configuration using a :-separated list of key=value parameters", OFFSET(svtav1_opts), AV_OPT_TYPE_DICT, { 0 }, 0, 0, VE },
732 
733  { "dolbyvision", "Enable Dolby Vision RPU coding", OFFSET(dovi.enable), AV_OPT_TYPE_BOOL, {.i64 = FF_DOVI_AUTOMATIC }, -1, 1, VE, .unit = "dovi" },
734  { "auto", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = FF_DOVI_AUTOMATIC}, .flags = VE, .unit = "dovi" },
735 
736  {NULL},
737 };
738 
739 static const AVClass class = {
740  .class_name = "libsvtav1",
741  .item_name = av_default_item_name,
742  .option = options,
744 };
745 
746 static const FFCodecDefault eb_enc_defaults[] = {
747  { "b", "0" },
748  { "flags", "+cgop" },
749  { "g", "-1" },
750  { "qmin", "1" },
751  { "qmax", "63" },
752  { NULL },
753 };
754 
756  .p.name = "libsvtav1",
757  CODEC_LONG_NAME("SVT-AV1(Scalable Video Technology for AV1) encoder"),
758  .priv_data_size = sizeof(SvtContext),
759  .p.type = AVMEDIA_TYPE_VIDEO,
760  .p.id = AV_CODEC_ID_AV1,
761  .init = eb_enc_init,
763  .close = eb_enc_close,
765  .caps_internal = FF_CODEC_CAP_NOT_INIT_THREADSAFE |
768  .color_ranges = AVCOL_RANGE_MPEG | AVCOL_RANGE_JPEG,
769  .p.priv_class = &class,
770  .defaults = eb_enc_defaults,
771  .p.wrapper_name = "libsvtav1",
772 };
AVMasteringDisplayMetadata::has_primaries
int has_primaries
Flag indicating whether the display primaries (and white point) are set.
Definition: mastering_display_metadata.h:62
CODEC_PIXFMTS
#define CODEC_PIXFMTS(...)
Definition: codec_internal.h:392
DOVIContext::cfg
AVDOVIDecoderConfigurationRecord cfg
Currently active dolby vision configuration, or {0} for none.
Definition: dovi_rpu.h:61
av_buffer_pool_init
AVBufferPool * av_buffer_pool_init(size_t size, AVBufferRef *(*alloc)(size_t size))
Allocate and initialize a buffer pool.
Definition: buffer.c:283
AV_LOG_WARNING
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition: log.h:216
AVMasteringDisplayMetadata::max_luminance
AVRational max_luminance
Max luminance of mastering display (cd/m^2).
Definition: mastering_display_metadata.h:57
name
it s the only field you need to keep assuming you have a context There is some magic you don t need to care about around this just let it vf default minimum maximum flags name is the option name
Definition: writing_filters.txt:88
level
uint8_t level
Definition: svq3.c:208
AV_EF_EXPLODE
#define AV_EF_EXPLODE
abort decoding on minor error detection
Definition: defs.h:51
FF_CODEC_CAP_INIT_CLEANUP
#define FF_CODEC_CAP_INIT_CLEANUP
The codec allows calling the close function for deallocation even if the init function returned a fai...
Definition: codec_internal.h:42
AVERROR
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFrame structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later. That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another. Frame references ownership and permissions
opt.h
ff_dovi_ctx_unref
void ff_dovi_ctx_unref(DOVIContext *s)
Completely reset a DOVIContext, preserving only logctx.
Definition: dovi_rpu.c:30
AVCodecContext::colorspace
enum AVColorSpace colorspace
YUV colorspace type.
Definition: avcodec.h:659
eb_enc_defaults
static const FFCodecDefault eb_enc_defaults[]
Definition: libsvtav1.c:746
AVCodecContext::decoded_side_data
AVFrameSideData ** decoded_side_data
Array containing static side data, such as HDR10 CLL / MDCV structures.
Definition: avcodec.h:1924
get_output_ref
static AVBufferRef * get_output_ref(AVCodecContext *avctx, SvtContext *svt_enc, int filled_len)
Definition: libsvtav1.c:562
av_frame_get_side_data
AVFrameSideData * av_frame_get_side_data(const AVFrame *frame, enum AVFrameSideDataType type)
Definition: frame.c:659
AVBufferPool
The buffer pool.
Definition: buffer_internal.h:88
av_pix_fmt_desc_get
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
Definition: pixdesc.c:3456
AVERROR_EOF
#define AVERROR_EOF
End of file.
Definition: error.h:57
av_dict_count
int av_dict_count(const AVDictionary *m)
Get number of entries in dictionary.
Definition: dict.c:37
SvtContext
Definition: libsvtav1.c:50
AVMasteringDisplayMetadata::display_primaries
AVRational display_primaries[3][2]
CIE 1931 xy chromaticity coords of color primaries (r, g, b order).
Definition: mastering_display_metadata.h:42
AVPictureType
AVPictureType
Definition: avutil.h:276
AVMasteringDisplayMetadata::has_luminance
int has_luminance
Flag indicating whether the luminance (min_ and max_) have been set.
Definition: mastering_display_metadata.h:67
AVCodecContext::err_recognition
int err_recognition
Error recognition; may misdetect some more or less valid parts as errors.
Definition: avcodec.h:1398
AV_FRAME_DATA_DOVI_METADATA
@ AV_FRAME_DATA_DOVI_METADATA
Parsed Dolby Vision metadata, suitable for passing to a software implementation.
Definition: frame.h:208
FF_AV1_PROFILE_OPTS
#define FF_AV1_PROFILE_OPTS
Definition: profiles.h:56
av_unused
#define av_unused
Definition: attributes.h:151
av_frame_free
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
Definition: frame.c:64
AVContentLightMetadata::MaxCLL
unsigned MaxCLL
Max content light level (cd/m^2).
Definition: mastering_display_metadata.h:111
AVFrame
This structure describes decoded (raw) audio or video data.
Definition: frame.h:427
pixdesc.h
AVCodecContext::color_trc
enum AVColorTransferCharacteristic color_trc
Color Transfer Characteristic.
Definition: avcodec.h:652
AVCOL_RANGE_JPEG
@ AVCOL_RANGE_JPEG
Full range content.
Definition: pixfmt.h:777
AVPacket::data
uint8_t * data
Definition: packet.h:588
AVOption
AVOption.
Definition: opt.h:429
encode.h
SvtContext::frame
AVFrame * frame
Definition: libsvtav1.c:60
AV_PIX_FMT_YUV420P10
#define AV_PIX_FMT_YUV420P10
Definition: pixfmt.h:539
eb_receive_packet
static int eb_receive_packet(AVCodecContext *avctx, AVPacket *pkt)
Definition: libsvtav1.c:586
FF_CODEC_CAP_NOT_INIT_THREADSAFE
#define FF_CODEC_CAP_NOT_INIT_THREADSAFE
The codec is not known to be init-threadsafe (i.e.
Definition: codec_internal.h:34
FFCodec
Definition: codec_internal.h:127
eb_enc_init
static av_cold int eb_enc_init(AVCodecContext *avctx)
Definition: libsvtav1.c:423
AVCOL_SPC_RGB
@ AVCOL_SPC_RGB
order of coefficients is actually GBR, also IEC 61966-2-1 (sRGB), YZX and ST 428-1
Definition: pixfmt.h:701
AVDictionary
Definition: dict.c:32
eb_enc_close
static av_cold int eb_enc_close(AVCodecContext *avctx)
Definition: libsvtav1.c:670
AV_PKT_FLAG_DISPOSABLE
#define AV_PKT_FLAG_DISPOSABLE
Flag is used to indicate packets that contain frames that can be discarded by the decoder.
Definition: packet.h:662
FFMAX
#define FFMAX(a, b)
Definition: macros.h:47
AV_PROFILE_AV1_PROFESSIONAL
#define AV_PROFILE_AV1_PROFESSIONAL
Definition: defs.h:171
AVERROR_UNKNOWN
#define AVERROR_UNKNOWN
Unknown error, typically from an external library.
Definition: error.h:73
AVCodecContext::qmax
int qmax
maximum quantizer
Definition: avcodec.h:1241
tf_sess_config.config
config
Definition: tf_sess_config.py:33
AV_PKT_FLAG_KEY
#define AV_PKT_FLAG_KEY
The packet contains a keyframe.
Definition: packet.h:643
av_chroma_location_name
const char * av_chroma_location_name(enum AVChromaLocation location)
Definition: pixdesc.c:3877
AV_CODEC_FLAG_GLOBAL_HEADER
#define AV_CODEC_FLAG_GLOBAL_HEADER
Place global headers in extradata instead of every keyframe.
Definition: avcodec.h:318
FF_DOVI_WRAP_T35
@ FF_DOVI_WRAP_T35
wrap inside T.35+EMDF
Definition: dovi_rpu.h:160
AVContentLightMetadata
Content light level needed by to transmit HDR over HDMI (CTA-861.3).
Definition: mastering_display_metadata.h:107
AVCodecContext::framerate
AVRational framerate
Definition: avcodec.h:551
FFCodecDefault
Definition: codec_internal.h:96
FFCodec::p
AVCodec p
The public AVCodec.
Definition: codec_internal.h:131
DOVIContext
Definition: dovi_rpu.h:42
av_ceil_log2
#define av_ceil_log2
Definition: common.h:97
eb_err
EbErrorType eb_err
Definition: libsvtav1.c:76
eb_send_frame
static int eb_send_frame(AVCodecContext *avctx, const AVFrame *frame)
Definition: libsvtav1.c:492
AVCodecContext::flags
int flags
AV_CODEC_FLAG_*.
Definition: avcodec.h:488
dovi_rpu.h
ff_encode_add_stats_side_data
int ff_encode_add_stats_side_data(AVPacket *pkt, int quality, const int64_t error[], int error_count, enum AVPictureType pict_type)
Definition: encode.c:918
AVRational::num
int num
Numerator.
Definition: rational.h:59
ff_dovi_configure
int ff_dovi_configure(DOVIContext *s, AVCodecContext *avctx)
Variant of ff_dovi_configure_from_codedpar which infers the codec parameters from an AVCodecContext.
Definition: dovi_rpuenc.c:260
FF_DOVI_AUTOMATIC
#define FF_DOVI_AUTOMATIC
Enable tri-state.
Definition: dovi_rpu.h:49
av_frame_alloc
AVFrame * av_frame_alloc(void)
Allocate an AVFrame and set its fields to default values.
Definition: frame.c:52
avassert.h
AVCodecContext::color_primaries
enum AVColorPrimaries color_primaries
Chromaticity coordinates of the source primaries.
Definition: avcodec.h:645
EOS_RECEIVED
@ EOS_RECEIVED
Definition: libsvtav1.c:47
pkt
AVPacket * pkt
Definition: movenc.c:60
AV_LOG_ERROR
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:210
FF_ARRAY_ELEMS
#define FF_ARRAY_ELEMS(a)
Definition: sinewin_tablegen.c:29
av_cold
#define av_cold
Definition: attributes.h:106
AV_PROFILE_UNKNOWN
#define AV_PROFILE_UNKNOWN
Definition: defs.h:65
av_buffer_pool_get
AVBufferRef * av_buffer_pool_get(AVBufferPool *pool)
Allocate a new AVBuffer, reusing an old buffer from the pool when available.
Definition: buffer.c:390
AVCodecContext::extradata_size
int extradata_size
Definition: avcodec.h:515
AVDOVIMetadata
Combined struct representing a combination of header, mapping and color metadata, for attaching to fr...
Definition: dovi_meta.h:337
AVMasteringDisplayMetadata::white_point
AVRational white_point[2]
CIE 1931 xy chromaticity coords of white point.
Definition: mastering_display_metadata.h:47
intreadwrite.h
AV_CEIL_RSHIFT
#define AV_CEIL_RSHIFT(a, b)
Definition: common.h:60
AVCodecContext::nb_decoded_side_data
int nb_decoded_side_data
Definition: avcodec.h:1925
SvtContext::dovi
DOVIContext dovi
Definition: libsvtav1.c:66
frame_size
int frame_size
Definition: mxfenc.c:2487
AV_CODEC_CAP_OTHER_THREADS
#define AV_CODEC_CAP_OTHER_THREADS
Codec supports multithreading through a method other than slice- or frame-level multithreading.
Definition: codec.h:109
av_assert0
#define av_assert0(cond)
assert() equivalent, that is always enabled.
Definition: avassert.h:41
SvtContext::enc_mode
int enc_mode
Definition: libsvtav1.c:70
AVDOVIDecoderConfigurationRecord::dv_profile
uint8_t dv_profile
Definition: dovi_meta.h:58
av_rescale_q
int64_t av_rescale_q(int64_t a, AVRational bq, AVRational cq)
Rescale a 64-bit integer by 2 rational numbers.
Definition: mathematics.c:142
AV_PIX_FMT_YUV420P
@ AV_PIX_FMT_YUV420P
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
Definition: pixfmt.h:73
AVCodecContext::rc_max_rate
int64_t rc_max_rate
maximum bitrate
Definition: avcodec.h:1270
handle_side_data
static void handle_side_data(AVCodecContext *avctx, EbSvtAv1EncConfiguration *param)
Definition: libsvtav1.c:182
AVCPBProperties
This structure describes the bitrate properties of an encoded bitstream.
Definition: defs.h:282
CODEC_LONG_NAME
#define CODEC_LONG_NAME(str)
Definition: codec_internal.h:332
if
if(ret)
Definition: filter_design.txt:179
AVCodecContext::rc_buffer_size
int rc_buffer_size
decoder bitstream buffer size
Definition: avcodec.h:1255
AVPacket::buf
AVBufferRef * buf
A reference to the reference-counted buffer where the packet data is stored.
Definition: packet.h:571
LIBAVUTIL_VERSION_INT
#define LIBAVUTIL_VERSION_INT
Definition: version.h:85
AVClass
Describe the class of an AVClass context structure.
Definition: log.h:76
metadata
Stream codec metadata
Definition: ogg-flac-chained-meta.txt:2
NULL
#define NULL
Definition: coverity.c:32
sizes
static const int sizes[][2]
Definition: img2dec.c:61
AVCodecContext::color_range
enum AVColorRange color_range
MPEG vs JPEG YUV range.
Definition: avcodec.h:669
AV_CODEC_ID_AV1
@ AV_CODEC_ID_AV1
Definition: codec_id.h:284
AV_WB16
#define AV_WB16(p, v)
Definition: intreadwrite.h:401
AVCHROMA_LOC_LEFT
@ AVCHROMA_LOC_LEFT
MPEG-2/4 4:2:0, H.264 default for 4:2:0.
Definition: pixfmt.h:798
AV_LEVEL_UNKNOWN
#define AV_LEVEL_UNKNOWN
Definition: defs.h:209
ff_dovi_rpu_generate
int ff_dovi_rpu_generate(DOVIContext *s, const AVDOVIMetadata *metadata, int flags, uint8_t **out_rpu, int *out_size)
Synthesize a Dolby Vision RPU reflecting the current state.
Definition: dovi_rpuenc.c:567
av_image_fill_plane_sizes
int av_image_fill_plane_sizes(size_t sizes[4], enum AVPixelFormat pix_fmt, int height, const ptrdiff_t linesizes[4])
Fill plane sizes for an image with pixel format pix_fmt and height height.
Definition: imgutils.c:111
AVRational
Rational number (pair of numerator and denominator).
Definition: rational.h:58
AVCHROMA_LOC_TOPLEFT
@ AVCHROMA_LOC_TOPLEFT
ITU-R 601, SMPTE 274M 296M S314M(DV 4:1:1), mpeg2 4:2:2.
Definition: pixfmt.h:800
FF_CODEC_RECEIVE_PACKET_CB
#define FF_CODEC_RECEIVE_PACKET_CB(func)
Definition: codec_internal.h:367
AVCodecContext::bit_rate
int64_t bit_rate
the average bitrate
Definition: avcodec.h:481
AV_OPT_TYPE_DICT
@ AV_OPT_TYPE_DICT
Underlying C type is AVDictionary*.
Definition: opt.h:290
av_default_item_name
const char * av_default_item_name(void *ptr)
Return the context name.
Definition: log.c:241
AV_PICTURE_TYPE_I
@ AV_PICTURE_TYPE_I
Intra.
Definition: avutil.h:278
profiles.h
av_buffer_pool_uninit
void av_buffer_pool_uninit(AVBufferPool **ppool)
Mark the pool as being available for freeing.
Definition: buffer.c:328
SvtContext::pool
AVBufferPool * pool
Definition: libsvtav1.c:62
options
Definition: swscale.c:43
AV_FRAME_DATA_MASTERING_DISPLAY_METADATA
@ AV_FRAME_DATA_MASTERING_DISPLAY_METADATA
Mastering display metadata associated with a video frame.
Definition: frame.h:120
AVCodecContext::level
int level
Encoding level descriptor.
Definition: avcodec.h:1628
ff_libsvtav1_encoder
const FFCodec ff_libsvtav1_encoder
Definition: libsvtav1.c:755
AVCOL_RANGE_UNSPECIFIED
@ AVCOL_RANGE_UNSPECIFIED
Definition: pixfmt.h:743
LEVEL
#define LEVEL(name, value)
AV_WB32
#define AV_WB32(p, v)
Definition: intreadwrite.h:415
AVCodecContext::time_base
AVRational time_base
This is the fundamental unit of time (in seconds) in terms of which frame timestamps are represented.
Definition: avcodec.h:535
AVPacket::size
int size
Definition: packet.h:589
AVCodecContext::gop_size
int gop_size
the number of pictures in a group of pictures, or 0 for intra_only
Definition: avcodec.h:1005
codec_internal.h
AV_PIX_FMT_FLAG_RGB
#define AV_PIX_FMT_FLAG_RGB
The pixel format contains RGB-like data (as opposed to YUV/grayscale).
Definition: pixdesc.h:136
dst
uint8_t ptrdiff_t const uint8_t ptrdiff_t int intptr_t intptr_t int int16_t * dst
Definition: dsp.h:87
EOS_NOT_REACHED
@ EOS_NOT_REACHED
Definition: libsvtav1.c:45
for
for(k=2;k<=8;++k)
Definition: h264pred_template.c:424
size
int size
Definition: twinvq_data.h:10344
SvtContext::crf
int crf
Definition: libsvtav1.c:71
config_enc_params
static int config_enc_params(EbSvtAv1EncConfiguration *param, AVCodecContext *avctx)
Definition: libsvtav1.c:207
AVFrameSideData::data
uint8_t * data
Definition: frame.h:284
SvtContext::svt_handle
EbComponentType * svt_handle
Definition: libsvtav1.c:54
SvtContext::svtav1_opts
AVDictionary * svtav1_opts
Definition: libsvtav1.c:69
AVCHROMA_LOC_UNSPECIFIED
@ AVCHROMA_LOC_UNSPECIFIED
Definition: pixfmt.h:797
AV_PICTURE_TYPE_NONE
@ AV_PICTURE_TYPE_NONE
Undefined.
Definition: avutil.h:277
alloc_buffer
static int alloc_buffer(EbSvtAv1EncConfiguration *config, SvtContext *svt_enc)
Definition: libsvtav1.c:120
frame.h
AVPacket::dts
int64_t dts
Decompression timestamp in AVStream->time_base units; the time at which the packet is decompressed.
Definition: packet.h:587
options
static const AVOption options[]
Definition: libsvtav1.c:693
VE
#define VE
Definition: libsvtav1.c:692
AVERROR_EXTERNAL
#define AVERROR_EXTERNAL
Generic error in an external library.
Definition: error.h:59
AV_PROFILE_AV1_HIGH
#define AV_PROFILE_AV1_HIGH
Definition: defs.h:170
AVPacket::flags
int flags
A combination of AV_PKT_FLAG values.
Definition: packet.h:594
svt_map_error
static int svt_map_error(EbErrorType eb_err, const char **desc)
Definition: libsvtav1.c:94
AVCPBProperties::avg_bitrate
int64_t avg_bitrate
Average bitrate of the stream, in bits per second.
Definition: defs.h:297
AV_FRAME_DATA_CONTENT_LIGHT_LEVEL
@ AV_FRAME_DATA_CONTENT_LIGHT_LEVEL
Content light level (based on CTA-861.3).
Definition: frame.h:137
SvtContext::eos_flag
EOS_STATUS eos_flag
Definition: libsvtav1.c:64
i
#define i(width, name, range_min, range_max)
Definition: cbs_h2645.c:256
AVPacket::pts
int64_t pts
Presentation timestamp in AVStream->time_base units; the time at which the decompressed packet will b...
Definition: packet.h:581
eos_status
eos_status
Definition: libsvtav1.c:44
AVCodecContext::extradata
uint8_t * extradata
Out-of-band global headers that may be used by some codecs.
Definition: avcodec.h:514
OFFSET
#define OFFSET(x)
Definition: libsvtav1.c:691
av_err
int av_err
Definition: libsvtav1.c:77
SvtContext::max_tu_size
int max_tu_size
Definition: libsvtav1.c:58
common.h
AVCPBProperties::max_bitrate
int64_t max_bitrate
Maximum bitrate of the stream, in bits per second.
Definition: defs.h:287
SvtContext::raw_size
int raw_size
Definition: libsvtav1.c:57
av_frame_unref
void av_frame_unref(AVFrame *frame)
Unreference all the buffers referenced by frame and reset the frame fields.
Definition: frame.c:496
av_mallocz
void * av_mallocz(size_t size)
Allocate a memory block with alignment suitable for all memory accesses (including vectors if availab...
Definition: mem.c:256
AVCodec::name
const char * name
Name of the codec implementation.
Definition: codec.h:179
AVCodecContext::chroma_sample_location
enum AVChromaLocation chroma_sample_location
This defines the location of chroma samples.
Definition: avcodec.h:676
AVMasteringDisplayMetadata
Mastering display metadata capable of representing the color volume of the display used to master the...
Definition: mastering_display_metadata.h:38
AVCodecContext::height
int height
Definition: avcodec.h:592
AVCodecContext::pix_fmt
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
Definition: avcodec.h:631
SvtContext::enc_params
EbSvtAv1EncConfiguration enc_params
Definition: libsvtav1.c:53
AVCOL_RANGE_MPEG
@ AVCOL_RANGE_MPEG
Narrow or limited range content.
Definition: pixfmt.h:760
avcodec.h
AV_CODEC_FLAG_CLOSED_GOP
#define AV_CODEC_FLAG_CLOSED_GOP
Definition: avcodec.h:332
ret
ret
Definition: filter_design.txt:187
AVClass::class_name
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
Definition: log.h:81
frame
these buffered frames must be flushed immediately if a new input produces new the filter must not call request_frame to get more It must just process the frame or queue it The task of requesting more frames is left to the filter s request_frame method or the application If a filter has several the filter must be ready for frames arriving randomly on any input any filter with several inputs will most likely require some kind of queuing mechanism It is perfectly acceptable to have a limited queue and to drop frames when the inputs are too unbalanced request_frame For filters that do not use the this method is called when a frame is wanted on an output For a it should directly call filter_frame on the corresponding output For a if there are queued frames already one of these frames should be pushed If the filter should request a frame on one of its repeatedly until at least one frame has been pushed Return or at least make progress towards producing a frame
Definition: filter_design.txt:265
AVCPBProperties::buffer_size
int64_t buffer_size
The size of the buffer to which the ratecontrol is applied, in bits.
Definition: defs.h:303
AV_INPUT_BUFFER_PADDING_SIZE
#define AV_INPUT_BUFFER_PADDING_SIZE
Definition: defs.h:40
svt_print_error
static int svt_print_error(void *log_ctx, EbErrorType err, const char *error_string)
Definition: libsvtav1.c:109
AVCodecContext
main external API structure.
Definition: avcodec.h:431
AVCodecContext::qmin
int qmin
minimum quantizer
Definition: avcodec.h:1234
AVRational::den
int den
Denominator.
Definition: rational.h:60
AV_OPT_TYPE_INT
@ AV_OPT_TYPE_INT
Underlying C type is int.
Definition: opt.h:259
AVCodecContext::profile
int profile
profile
Definition: avcodec.h:1618
ref
static int ref[MAX_W *MAX_W]
Definition: jpeg2000dwt.c:117
DOVIContext::logctx
void * logctx
Definition: dovi_rpu.h:43
AV_CODEC_CAP_DELAY
#define AV_CODEC_CAP_DELAY
Encoder or decoder requires flushing with NULL input at the end in order to give the complete and cor...
Definition: codec.h:76
Windows::Graphics::DirectX::Direct3D11::p
IDirect3DDxgiInterfaceAccess _COM_Outptr_ void ** p
Definition: vsrc_gfxcapture_winrt.hpp:53
AVMasteringDisplayMetadata::min_luminance
AVRational min_luminance
Min luminance of mastering display (cd/m^2).
Definition: mastering_display_metadata.h:52
SvtContext::in_buf
EbBufferHeaderType * in_buf
Definition: libsvtav1.c:56
desc
const char * desc
Definition: libsvtav1.c:78
AV_PICTURE_TYPE_P
@ AV_PICTURE_TYPE_P
Predicted.
Definition: avutil.h:279
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:200
mem.h
ff_encode_get_frame
int ff_encode_get_frame(AVCodecContext *avctx, AVFrame *frame)
Called by encoders to get the next frame for encoding.
Definition: encode.c:204
AVBufferRef
A reference to a data buffer.
Definition: buffer.h:82
FF_CODEC_CAP_AUTO_THREADS
#define FF_CODEC_CAP_AUTO_THREADS
Codec handles avctx->thread_count == 0 (auto) internally.
Definition: codec_internal.h:72
mastering_display_metadata.h
AVFrameSideData
Structure to hold side data for an AVFrame.
Definition: frame.h:282
AVPixFmtDescriptor
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
Definition: pixdesc.h:69
av_free
#define av_free(p)
Definition: tableprint_vlc.h:34
AVDictionaryEntry
Definition: dict.h:90
AVPacket
This structure stores compressed data.
Definition: packet.h:565
AVCodecContext::priv_data
void * priv_data
Definition: avcodec.h:458
AVContentLightMetadata::MaxFALL
unsigned MaxFALL
Max average light level per frame (cd/m^2).
Definition: mastering_display_metadata.h:116
AV_OPT_TYPE_BOOL
@ AV_OPT_TYPE_BOOL
Underlying C type is int.
Definition: opt.h:327
handle_mdcv
static void handle_mdcv(struct EbSvtAv1MasteringDisplayInfo *dst, const AVMasteringDisplayMetadata *mdcv)
Definition: libsvtav1.c:144
av_freep
#define av_freep(p)
Definition: tableprint_vlc.h:35
av_frame_side_data_get
static const AVFrameSideData * av_frame_side_data_get(AVFrameSideData *const *sd, const int nb_sd, enum AVFrameSideDataType type)
Wrapper around av_frame_side_data_get_c() to workaround the limitation that for any type T the conver...
Definition: frame.h:1151
AVCodecContext::width
int width
picture width / height.
Definition: avcodec.h:592
EOS_SENT
@ EOS_SENT
Definition: libsvtav1.c:46
imgutils.h
av_log
#define av_log(a,...)
Definition: tableprint_vlc.h:27
SvtContext::qp
int qp
Definition: libsvtav1.c:72
AVERROR_INVALIDDATA
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:61
ff_encode_add_cpb_side_data
AVCPBProperties * ff_encode_add_cpb_side_data(AVCodecContext *avctx)
Add a CPB properties side data to an encoding context.
Definition: encode.c:887
FF_QP2LAMBDA
#define FF_QP2LAMBDA
factor to convert from H.263 QP to lambda
Definition: avutil.h:226
svt_errors
static const struct @178 svt_errors[]
read_in_data
static int read_in_data(EbSvtAv1EncConfiguration *param, const AVFrame *frame, EbBufferHeaderType *header_ptr)
Definition: libsvtav1.c:385
AV_OPT_TYPE_CONST
@ AV_OPT_TYPE_CONST
Special option type for declaring named constants.
Definition: opt.h:299
av_dict_iterate
const AVDictionaryEntry * av_dict_iterate(const AVDictionary *m, const AVDictionaryEntry *prev)
Iterate over a dictionary.
Definition: dict.c:42
src
#define src
Definition: vp8dsp.c:248