FFmpeg
libdav1d.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2018 Ronald S. Bultje <rsbultje gmail com>
3  * Copyright (c) 2018 James Almer <jamrial gmail com>
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21 
22 #include <dav1d/dav1d.h>
23 
24 #include "libavutil/avassert.h"
25 #include "libavutil/cpu.h"
29 #include "libavutil/imgutils.h"
30 #include "libavutil/opt.h"
31 
32 #include "atsc_a53.h"
33 #include "av1_parse.h"
34 #include "avcodec.h"
35 #include "bytestream.h"
36 #include "codec_internal.h"
37 #include "decode.h"
38 #include "dovi_rpu.h"
39 #include "internal.h"
40 #include "itut35.h"
41 
42 #define FF_DAV1D_VERSION_AT_LEAST(x,y) \
43  (DAV1D_API_VERSION_MAJOR > (x) || DAV1D_API_VERSION_MAJOR == (x) && DAV1D_API_VERSION_MINOR >= (y))
44 
45 typedef struct Libdav1dContext {
46  AVClass *class;
47  Dav1dContext *c;
50  int pool_size;
51 
52  Dav1dData data;
58 
59 static const enum AVPixelFormat pix_fmt[][3] = {
60  [DAV1D_PIXEL_LAYOUT_I400] = { AV_PIX_FMT_GRAY8, AV_PIX_FMT_GRAY10, AV_PIX_FMT_GRAY12 },
61  [DAV1D_PIXEL_LAYOUT_I420] = { AV_PIX_FMT_YUV420P, AV_PIX_FMT_YUV420P10, AV_PIX_FMT_YUV420P12 },
62  [DAV1D_PIXEL_LAYOUT_I422] = { AV_PIX_FMT_YUV422P, AV_PIX_FMT_YUV422P10, AV_PIX_FMT_YUV422P12 },
63  [DAV1D_PIXEL_LAYOUT_I444] = { AV_PIX_FMT_YUV444P, AV_PIX_FMT_YUV444P10, AV_PIX_FMT_YUV444P12 },
64 };
65 
66 static const enum AVPixelFormat pix_fmt_rgb[3] = {
68 };
69 
70 static void libdav1d_log_callback(void *opaque, const char *fmt, va_list vl)
71 {
72  AVCodecContext *c = opaque;
73 
74  av_vlog(c, AV_LOG_ERROR, fmt, vl);
75 }
76 
77 static int libdav1d_picture_allocator(Dav1dPicture *p, void *cookie)
78 {
79  Libdav1dContext *dav1d = cookie;
80  enum AVPixelFormat format = pix_fmt[p->p.layout][p->seq_hdr->hbd];
81  int ret, linesize[4], h = FFALIGN(p->p.h, 128), w = FFALIGN(p->p.w, 128);
82  uint8_t *aligned_ptr, *data[4];
83  AVBufferRef *buf;
84 
85  ret = av_image_get_buffer_size(format, w, h, DAV1D_PICTURE_ALIGNMENT);
86  if (ret < 0)
87  return ret;
88 
89  if (ret != dav1d->pool_size) {
90  av_buffer_pool_uninit(&dav1d->pool);
91  // Use twice the amount of required padding bytes for aligned_ptr below.
92  dav1d->pool = av_buffer_pool_init(ret + DAV1D_PICTURE_ALIGNMENT * 2, NULL);
93  if (!dav1d->pool) {
94  dav1d->pool_size = 0;
95  return AVERROR(ENOMEM);
96  }
97  dav1d->pool_size = ret;
98  }
99  buf = av_buffer_pool_get(dav1d->pool);
100  if (!buf)
101  return AVERROR(ENOMEM);
102 
103  // libdav1d requires DAV1D_PICTURE_ALIGNMENT aligned buffers, which av_malloc()
104  // doesn't guarantee for example when AVX is disabled at configure time.
105  // Use the extra DAV1D_PICTURE_ALIGNMENT padding bytes in the buffer to align it
106  // if required.
107  aligned_ptr = (uint8_t *)FFALIGN((uintptr_t)buf->data, DAV1D_PICTURE_ALIGNMENT);
108  ret = av_image_fill_arrays(data, linesize, aligned_ptr, format, w, h,
109  DAV1D_PICTURE_ALIGNMENT);
110  if (ret < 0) {
111  av_buffer_unref(&buf);
112  return ret;
113  }
114 
115  p->data[0] = data[0];
116  p->data[1] = data[1];
117  p->data[2] = data[2];
118  p->stride[0] = linesize[0];
119  p->stride[1] = linesize[1];
120  p->allocator_data = buf;
121 
122  return 0;
123 }
124 
125 static void libdav1d_picture_release(Dav1dPicture *p, void *cookie)
126 {
127  AVBufferRef *buf = p->allocator_data;
128 
129  av_buffer_unref(&buf);
130 }
131 
132 static void libdav1d_init_params(AVCodecContext *c, const Dav1dSequenceHeader *seq)
133 {
134  c->profile = seq->profile;
135  c->level = ((seq->operating_points[0].major_level - 2) << 2)
136  | seq->operating_points[0].minor_level;
137 
138  switch (seq->chr) {
139  case DAV1D_CHR_VERTICAL:
140  c->chroma_sample_location = AVCHROMA_LOC_LEFT;
141  break;
142  case DAV1D_CHR_COLOCATED:
143  c->chroma_sample_location = AVCHROMA_LOC_TOPLEFT;
144  break;
145  }
146  if (seq->color_description_present) {
147  c->colorspace = (enum AVColorSpace) seq->mtrx;
148  c->color_primaries = (enum AVColorPrimaries) seq->pri;
149  c->color_trc = (enum AVColorTransferCharacteristic) seq->trc;
150  c->color_range = seq->color_range ? AVCOL_RANGE_JPEG : AVCOL_RANGE_MPEG;
151  }
152 
153  if (seq->layout == DAV1D_PIXEL_LAYOUT_I444 &&
154  c->colorspace == AVCOL_SPC_RGB &&
155  c->color_primaries == AVCOL_PRI_BT709 &&
156  c->color_trc == AVCOL_TRC_IEC61966_2_1)
157  c->pix_fmt = pix_fmt_rgb[seq->hbd];
158  else
159  c->pix_fmt = pix_fmt[seq->layout][seq->hbd];
160 
161  c->framerate = ff_av1_framerate(seq->num_ticks_per_picture,
162  (unsigned)seq->num_units_in_tick,
163  (unsigned)seq->time_scale);
164 
165 #if FF_API_CODEC_PROPS
167  if (seq->film_grain_present)
168  c->properties |= FF_CODEC_PROPERTY_FILM_GRAIN;
169  else
170  c->properties &= ~FF_CODEC_PROPERTY_FILM_GRAIN;
172 #endif
173 }
174 
176 {
177  Dav1dSequenceHeader seq;
178  size_t offset = 0;
179  int res;
180 
181  if (!c->extradata || c->extradata_size <= 0)
182  return 0;
183 
184  if (c->extradata[0] & 0x80) {
185  int version = c->extradata[0] & 0x7F;
186 
187  if (version != 1 || c->extradata_size < 4) {
188  int explode = !!(c->err_recognition & AV_EF_EXPLODE);
189  av_log(c, explode ? AV_LOG_ERROR : AV_LOG_WARNING,
190  "Error decoding extradata\n");
191  return explode ? AVERROR_INVALIDDATA : 0;
192  }
193 
194  // Do nothing if there are no configOBUs to parse
195  if (c->extradata_size == 4)
196  return 0;
197 
198  offset = 4;
199  }
200 
201  res = dav1d_parse_sequence_header(&seq, c->extradata + offset,
202  c->extradata_size - offset);
203  if (res < 0)
204  return 0; // Assume no seqhdr OBUs are present
205 
206  libdav1d_init_params(c, &seq);
207  res = ff_set_dimensions(c, seq.max_width, seq.max_height);
208  if (res < 0)
209  return res;
210 
211  return 0;
212 }
213 
215 {
216  Libdav1dContext *dav1d = c->priv_data;
217  Dav1dSettings s;
218  int threads = c->thread_count;
219  const AVPacketSideData *sd;
220  int res;
221 
222  av_log(c, AV_LOG_VERBOSE, "libdav1d %s\n", dav1d_version());
223 
224  dav1d_default_settings(&s);
225  s.logger.cookie = c;
226  s.logger.callback = libdav1d_log_callback;
227  s.allocator.cookie = dav1d;
228  s.allocator.alloc_picture_callback = libdav1d_picture_allocator;
229  s.allocator.release_picture_callback = libdav1d_picture_release;
230  s.frame_size_limit = c->max_pixels;
231  if (dav1d->apply_grain >= 0)
232  s.apply_grain = dav1d->apply_grain;
233  else
234  s.apply_grain = !(c->export_side_data & AV_CODEC_EXPORT_DATA_FILM_GRAIN);
235 
236  s.all_layers = dav1d->all_layers;
237  if (dav1d->operating_point >= 0)
238  s.operating_point = dav1d->operating_point;
239  s.strict_std_compliance = c->strict_std_compliance > 0;
240 
241  s.n_threads = FFMIN(threads, DAV1D_MAX_THREADS);
242  if (dav1d->max_frame_delay > 0 && (c->flags & AV_CODEC_FLAG_LOW_DELAY))
243  av_log(c, AV_LOG_WARNING, "Low delay mode requested, forcing max_frame_delay 1\n");
244  s.max_frame_delay = (c->flags & AV_CODEC_FLAG_LOW_DELAY) ? 1 : dav1d->max_frame_delay;
245  av_log(c, AV_LOG_DEBUG, "Using %d threads, %d max_frame_delay\n",
246  s.n_threads, s.max_frame_delay);
247 
248 #if FF_DAV1D_VERSION_AT_LEAST(6,8)
249  if (c->skip_frame >= AVDISCARD_NONKEY)
250  s.decode_frame_type = DAV1D_DECODEFRAMETYPE_KEY;
251  else if (c->skip_frame >= AVDISCARD_NONINTRA)
252  s.decode_frame_type = DAV1D_DECODEFRAMETYPE_INTRA;
253  else if (c->skip_frame >= AVDISCARD_NONREF)
254  s.decode_frame_type = DAV1D_DECODEFRAMETYPE_REFERENCE;
255 #endif
256 
258  if (res < 0)
259  return res;
260 
261  res = dav1d_open(&dav1d->c, &s);
262  if (res < 0)
263  return AVERROR(ENOMEM);
264 
265 #if FF_DAV1D_VERSION_AT_LEAST(6,7)
266  res = dav1d_get_frame_delay(&s);
267  if (res < 0) // Should not happen
268  return AVERROR_EXTERNAL;
269 
270  // When dav1d_get_frame_delay() returns 1, there's no delay whatsoever
271  c->delay = res > 1 ? res : 0;
272 #endif
273 
274  dav1d->dovi.logctx = c;
275  dav1d->dovi.cfg.dv_profile = 10; // default for AV1
277  if (sd && sd->size >= sizeof(dav1d->dovi.cfg))
278  dav1d->dovi.cfg = *(AVDOVIDecoderConfigurationRecord *) sd->data;
279  return 0;
280 }
281 
283 {
284  Libdav1dContext *dav1d = c->priv_data;
285 
286  dav1d_data_unref(&dav1d->data);
287  dav1d_flush(dav1d->c);
288 }
289 
290 static void libdav1d_data_free(const uint8_t *data, void *opaque) {
291  AVBufferRef *buf = opaque;
292 
293  av_buffer_unref(&buf);
294 }
295 
296 static void libdav1d_user_data_free(const uint8_t *data, void *opaque) {
297  AVPacket *pkt = opaque;
298  av_assert0(data == opaque);
300 }
301 
303 {
304  Libdav1dContext *dav1d = c->priv_data;
305  Dav1dData *data = &dav1d->data;
306  int res;
307 
308  if (!data->sz) {
310 
311  if (!pkt)
312  return AVERROR(ENOMEM);
313 
314  res = ff_decode_get_packet(c, pkt);
315  if (res < 0 && res != AVERROR_EOF) {
317  return res;
318  }
319 
320  if (pkt->size) {
321  res = dav1d_data_wrap(data, pkt->data, pkt->size,
323  if (res < 0) {
325  return res;
326  }
327 
328  pkt->buf = NULL;
329 
330  res = dav1d_data_wrap_user_data(data, (const uint8_t *)pkt,
332  if (res < 0) {
334  dav1d_data_unref(data);
335  return res;
336  }
337  pkt = NULL;
338  } else {
340  if (res >= 0)
341  return AVERROR(EAGAIN);
342  }
343  }
344 
345  res = dav1d_send_data(dav1d->c, data);
346  if (res < 0) {
347  if (res == AVERROR(EINVAL))
348  res = AVERROR_INVALIDDATA;
349  if (res != AVERROR(EAGAIN)) {
350  dav1d_data_unref(data);
351  return res;
352  }
353  }
354 
355  res = dav1d_get_picture(dav1d->c, p);
356  if (res < 0) {
357  if (res == AVERROR(EINVAL)) {
358  dav1d_data_unref(data);
359  res = AVERROR_INVALIDDATA;
360  } else if (res == AVERROR(EAGAIN))
361  res = c->internal->draining ? AVERROR_EOF : 1;
362  }
363 
364  return res;
365 }
366 
367 static int parse_itut_t35_metadata(Libdav1dContext *dav1d, Dav1dPicture *p,
368  const Dav1dITUTT35 *itut_t35, AVCodecContext *c,
369  AVFrame *frame) {
370  GetByteContext gb;
371  int provider_code, country_code;
372  int res;
373 
374  bytestream2_init(&gb, itut_t35->payload, itut_t35->payload_size);
375 
376  provider_code = bytestream2_get_be16(&gb);
377  country_code = itut_t35->country_code;
378  if (country_code == ITU_T_T35_COUNTRY_CODE_US && provider_code == ITU_T_T35_PROVIDER_CODE_ATSC) {
379  uint32_t user_identifier = bytestream2_get_be32(&gb);
380  switch (user_identifier) {
381  case MKBETAG('G', 'A', '9', '4'): { // closed captions
382  AVBufferRef *buf = NULL;
383 
384  res = ff_parse_a53_cc(&buf, gb.buffer, bytestream2_get_bytes_left(&gb));
385  if (res < 0)
386  return res;
387  if (!res)
388  return 0; // no cc found, ignore
389 
391  if (res < 0)
392  return res;
393 
394 #if FF_API_CODEC_PROPS
396  c->properties |= FF_CODEC_PROPERTY_CLOSED_CAPTIONS;
398 #endif
399  break;
400  }
401  default: // ignore unsupported identifiers
402  break;
403  }
404  } else if (country_code == ITU_T_T35_COUNTRY_CODE_US && provider_code == ITU_T_T35_PROVIDER_CODE_SAMSUNG) {
405  AVDynamicHDRPlus *hdrplus;
406  int provider_oriented_code = bytestream2_get_be16(&gb);
407  int application_identifier = bytestream2_get_byte(&gb);
408 
409  if (provider_oriented_code != 1 || application_identifier != 4)
410  return 0; // ignore
411 
413  if (!hdrplus)
414  return AVERROR(ENOMEM);
415 
416  res = av_dynamic_hdr_plus_from_t35(hdrplus, gb.buffer,
418  if (res < 0)
419  return res;
420  } else if (country_code == ITU_T_T35_COUNTRY_CODE_US && provider_code == ITU_T_T35_PROVIDER_CODE_DOLBY) {
421  int provider_oriented_code = bytestream2_get_be32(&gb);
422  if (provider_oriented_code != 0x800)
423  return 0; // ignore
424 
426  c->err_recognition);
427  if (res < 0) {
428  av_log(c, AV_LOG_WARNING, "Error parsing DOVI OBU.\n");
429  return 0; // ignore
430  }
431 
432  res = ff_dovi_attach_side_data(&dav1d->dovi, frame);
433  if (res < 0)
434  return res;
435  } else {
436  // ignore unsupported provider codes
437  }
438  return 0;
439 }
440 
442 {
443  Libdav1dContext *dav1d = c->priv_data;
444  Dav1dPicture pic = { 0 }, *p = &pic;
445  const AVPacket *pkt;
446  enum Dav1dEventFlags event_flags = 0;
447  int res;
448 
449  do {
451  } while (res > 0);
452 
453  if (res < 0)
454  return res;
455 
456  av_assert0(p->data[0] && p->allocator_data);
457 
458  // This requires the custom allocator above
459  frame->buf[0] = av_buffer_ref(p->allocator_data);
460  if (!frame->buf[0]) {
461  dav1d_picture_unref(p);
462  return AVERROR(ENOMEM);
463  }
464 
465  frame->data[0] = p->data[0];
466  frame->data[1] = p->data[1];
467  frame->data[2] = p->data[2];
468  frame->linesize[0] = p->stride[0];
469  frame->linesize[1] = p->stride[1];
470  frame->linesize[2] = p->stride[1];
471 
472  dav1d_get_event_flags(dav1d->c, &event_flags);
473  if (c->pix_fmt == AV_PIX_FMT_NONE || event_flags & DAV1D_EVENT_FLAG_NEW_SEQUENCE)
474  libdav1d_init_params(c, p->seq_hdr);
475 
476  res = ff_decode_frame_props(c, frame);
477  if (res < 0)
478  goto fail;
479 
480  frame->width = p->p.w;
481  frame->height = p->p.h;
482  if (c->width != p->p.w || c->height != p->p.h) {
483  res = ff_set_dimensions(c, p->p.w, p->p.h);
484  if (res < 0)
485  goto fail;
486  }
487 
488  av_reduce(&frame->sample_aspect_ratio.num,
489  &frame->sample_aspect_ratio.den,
490  frame->height * (int64_t)p->frame_hdr->render_width,
491  frame->width * (int64_t)p->frame_hdr->render_height,
492  INT_MAX);
493  ff_set_sar(c, frame->sample_aspect_ratio);
494 
495  pkt = (const AVPacket *)p->m.user_data.data;
496 
497  // match timestamps and packet size
499  if (res < 0)
500  goto fail;
501 
502  frame->pkt_dts = pkt->pts;
503  if (p->frame_hdr->frame_type == DAV1D_FRAME_TYPE_KEY)
504  frame->flags |= AV_FRAME_FLAG_KEY;
505  else
506  frame->flags &= ~AV_FRAME_FLAG_KEY;
507 
508  switch (p->frame_hdr->frame_type) {
509  case DAV1D_FRAME_TYPE_KEY:
510  case DAV1D_FRAME_TYPE_INTRA:
511  frame->pict_type = AV_PICTURE_TYPE_I;
512  break;
513  case DAV1D_FRAME_TYPE_INTER:
514  frame->pict_type = AV_PICTURE_TYPE_P;
515  break;
516  case DAV1D_FRAME_TYPE_SWITCH:
517  frame->pict_type = AV_PICTURE_TYPE_SP;
518  break;
519  default:
520  res = AVERROR_INVALIDDATA;
521  goto fail;
522  }
523 
524  if (p->mastering_display) {
525  AVMasteringDisplayMetadata *mastering;
526 
527  res = ff_decode_mastering_display_new(c, frame, &mastering);
528  if (res < 0)
529  goto fail;
530 
531  if (mastering) {
532  for (int i = 0; i < 3; i++) {
533  mastering->display_primaries[i][0] = av_make_q(p->mastering_display->primaries[i][0], 1 << 16);
534  mastering->display_primaries[i][1] = av_make_q(p->mastering_display->primaries[i][1], 1 << 16);
535  }
536  mastering->white_point[0] = av_make_q(p->mastering_display->white_point[0], 1 << 16);
537  mastering->white_point[1] = av_make_q(p->mastering_display->white_point[1], 1 << 16);
538 
539  mastering->max_luminance = av_make_q(p->mastering_display->max_luminance, 1 << 8);
540  mastering->min_luminance = av_make_q(p->mastering_display->min_luminance, 1 << 14);
541 
542  mastering->has_primaries = 1;
543  mastering->has_luminance = 1;
544  }
545  }
546  if (p->content_light) {
547  AVContentLightMetadata *light;
548 
549  res = ff_decode_content_light_new(c, frame, &light);
550  if (res < 0)
551  goto fail;
552 
553  if (light) {
554  light->MaxCLL = p->content_light->max_content_light_level;
555  light->MaxFALL = p->content_light->max_frame_average_light_level;
556  }
557  }
558  if (p->itut_t35) {
559 #if FF_DAV1D_VERSION_AT_LEAST(6,9)
560  for (size_t i = 0; i < p->n_itut_t35; i++) {
561  const Dav1dITUTT35 *itut_t35 = &p->itut_t35[i];
562 #else
563  const Dav1dITUTT35 *itut_t35 = p->itut_t35;
564 #endif
565  res = parse_itut_t35_metadata(dav1d, p, itut_t35, c, frame);
566  if (res < 0)
567  goto fail;
568 #if FF_DAV1D_VERSION_AT_LEAST(6,9)
569  }
570 #endif
571  }
572  if (p->frame_hdr->film_grain.present && (!dav1d->apply_grain ||
573  (c->export_side_data & AV_CODEC_EXPORT_DATA_FILM_GRAIN))) {
575  const AVPixFmtDescriptor *pixdesc = av_pix_fmt_desc_get(frame->format);
576  av_assert0(pixdesc);
577  if (!fgp) {
578  res = AVERROR(ENOMEM);
579  goto fail;
580  }
581 
583  fgp->seed = p->frame_hdr->film_grain.data.seed;
584  fgp->width = frame->width;
585  fgp->height = frame->height;
586  fgp->color_range = frame->color_range;
587  fgp->color_primaries = frame->color_primaries;
588  fgp->color_trc = frame->color_trc;
589  fgp->color_space = frame->colorspace;
590  fgp->subsampling_x = pixdesc->log2_chroma_w;
591  fgp->subsampling_y = pixdesc->log2_chroma_h;
592  fgp->codec.aom.num_y_points = p->frame_hdr->film_grain.data.num_y_points;
593  fgp->codec.aom.chroma_scaling_from_luma = p->frame_hdr->film_grain.data.chroma_scaling_from_luma;
594  fgp->codec.aom.scaling_shift = p->frame_hdr->film_grain.data.scaling_shift;
595  fgp->codec.aom.ar_coeff_lag = p->frame_hdr->film_grain.data.ar_coeff_lag;
596  fgp->codec.aom.ar_coeff_shift = p->frame_hdr->film_grain.data.ar_coeff_shift;
597  fgp->codec.aom.grain_scale_shift = p->frame_hdr->film_grain.data.grain_scale_shift;
598  fgp->codec.aom.overlap_flag = p->frame_hdr->film_grain.data.overlap_flag;
599  fgp->codec.aom.limit_output_range = p->frame_hdr->film_grain.data.clip_to_restricted_range;
600 
601  memcpy(&fgp->codec.aom.y_points, &p->frame_hdr->film_grain.data.y_points,
602  sizeof(fgp->codec.aom.y_points));
603  memcpy(&fgp->codec.aom.num_uv_points, &p->frame_hdr->film_grain.data.num_uv_points,
604  sizeof(fgp->codec.aom.num_uv_points));
605  memcpy(&fgp->codec.aom.uv_points, &p->frame_hdr->film_grain.data.uv_points,
606  sizeof(fgp->codec.aom.uv_points));
607  memcpy(&fgp->codec.aom.ar_coeffs_y, &p->frame_hdr->film_grain.data.ar_coeffs_y,
608  sizeof(fgp->codec.aom.ar_coeffs_y));
609  memcpy(&fgp->codec.aom.ar_coeffs_uv[0], &p->frame_hdr->film_grain.data.ar_coeffs_uv[0],
610  sizeof(fgp->codec.aom.ar_coeffs_uv[0]));
611  memcpy(&fgp->codec.aom.ar_coeffs_uv[1], &p->frame_hdr->film_grain.data.ar_coeffs_uv[1],
612  sizeof(fgp->codec.aom.ar_coeffs_uv[1]));
613  memcpy(&fgp->codec.aom.uv_mult, &p->frame_hdr->film_grain.data.uv_mult,
614  sizeof(fgp->codec.aom.uv_mult));
615  memcpy(&fgp->codec.aom.uv_mult_luma, &p->frame_hdr->film_grain.data.uv_luma_mult,
616  sizeof(fgp->codec.aom.uv_mult_luma));
617  memcpy(&fgp->codec.aom.uv_offset, &p->frame_hdr->film_grain.data.uv_offset,
618  sizeof(fgp->codec.aom.uv_offset));
619  }
620 
621  res = 0;
622 fail:
623  dav1d_picture_unref(p);
624  if (res < 0)
626  return res;
627 }
628 
630 {
631  Libdav1dContext *dav1d = c->priv_data;
632 
633  av_buffer_pool_uninit(&dav1d->pool);
634  ff_dovi_ctx_unref(&dav1d->dovi);
635  dav1d_data_unref(&dav1d->data);
636  dav1d_close(&dav1d->c);
637 
638  return 0;
639 }
640 
641 #ifndef DAV1D_MAX_FRAME_THREADS
642 #define DAV1D_MAX_FRAME_THREADS DAV1D_MAX_THREADS
643 #endif
644 #ifndef DAV1D_MAX_TILE_THREADS
645 #define DAV1D_MAX_TILE_THREADS DAV1D_MAX_THREADS
646 #endif
647 #ifndef DAV1D_MAX_FRAME_DELAY
648 #define DAV1D_MAX_FRAME_DELAY DAV1D_MAX_FRAME_THREADS
649 #endif
650 
651 #define OFFSET(x) offsetof(Libdav1dContext, x)
652 #define VD AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_DECODING_PARAM
653 static const AVOption libdav1d_options[] = {
654  { "max_frame_delay", "Max frame delay", OFFSET(max_frame_delay), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, DAV1D_MAX_FRAME_DELAY, VD },
655  { "filmgrain", "Apply Film Grain", OFFSET(apply_grain), AV_OPT_TYPE_BOOL, { .i64 = -1 }, -1, 1, VD | AV_OPT_FLAG_DEPRECATED },
656  { "oppoint", "Select an operating point of the scalable bitstream", OFFSET(operating_point), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 31, VD },
657  { "alllayers", "Output all spatial layers", OFFSET(all_layers), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, VD },
658  { NULL }
659 };
660 
661 static const AVClass libdav1d_class = {
662  .class_name = "libdav1d decoder",
663  .item_name = av_default_item_name,
664  .option = libdav1d_options,
665  .version = LIBAVUTIL_VERSION_INT,
666 };
667 
669  .p.name = "libdav1d",
670  CODEC_LONG_NAME("dav1d AV1 decoder by VideoLAN"),
671  .p.type = AVMEDIA_TYPE_VIDEO,
672  .p.id = AV_CODEC_ID_AV1,
673  .priv_data_size = sizeof(Libdav1dContext),
674  .init = libdav1d_init,
679  .caps_internal = FF_CODEC_CAP_SETS_FRAME_PROPS |
681  .p.priv_class = &libdav1d_class,
682  .p.wrapper_name = "libdav1d",
683 };
ff_get_coded_side_data
const AVPacketSideData * ff_get_coded_side_data(const AVCodecContext *avctx, enum AVPacketSideDataType type)
Get side data of the given type from a decoding context.
Definition: decode.c:1352
Libdav1dContext::c
Dav1dContext * c
Definition: libdav1d.c:47
av_vlog
void av_vlog(void *avcl, int level, const char *fmt, va_list vl)
Send the specified message to the log if the level is less than or equal to the current av_log_level.
Definition: log.c:459
AVMasteringDisplayMetadata::has_primaries
int has_primaries
Flag indicating whether the display primaries (and white point) are set.
Definition: mastering_display_metadata.h:62
Libdav1dContext::pool_size
int pool_size
Definition: libdav1d.c:50
DOVIContext::cfg
AVDOVIDecoderConfigurationRecord cfg
Currently active dolby vision configuration, or {0} for none.
Definition: dovi_rpu.h:61
FF_ENABLE_DEPRECATION_WARNINGS
#define FF_ENABLE_DEPRECATION_WARNINGS
Definition: internal.h:73
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
ff_decode_get_packet
int ff_decode_get_packet(AVCodecContext *avctx, AVPacket *pkt)
Called by decoders to get the next packet for decoding.
Definition: decode.c:245
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
AVPixelFormat
AVPixelFormat
Pixel format.
Definition: pixfmt.h:71
AV_EF_EXPLODE
#define AV_EF_EXPLODE
abort decoding on minor error detection
Definition: defs.h:51
libdav1d_picture_allocator
static int libdav1d_picture_allocator(Dav1dPicture *p, void *cookie)
Definition: libdav1d.c:77
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
bytestream2_get_bytes_left
static av_always_inline int bytestream2_get_bytes_left(const GetByteContext *g)
Definition: bytestream.h:158
AVColorTransferCharacteristic
AVColorTransferCharacteristic
Color Transfer Characteristic.
Definition: pixfmt.h:661
libdav1d_class
static const AVClass libdav1d_class
Definition: libdav1d.c:661
GetByteContext
Definition: bytestream.h:33
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:3447
AVERROR_EOF
#define AVERROR_EOF
End of file.
Definition: error.h:57
AVBufferRef::data
uint8_t * data
The data buffer.
Definition: buffer.h:90
AV_FRAME_DATA_A53_CC
@ AV_FRAME_DATA_A53_CC
ATSC A53 Part 4 Closed Captions.
Definition: frame.h:59
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
AVMasteringDisplayMetadata::has_luminance
int has_luminance
Flag indicating whether the luminance (min_ and max_) have been set.
Definition: mastering_display_metadata.h:67
ff_dovi_rpu_parse
int ff_dovi_rpu_parse(DOVIContext *s, const uint8_t *rpu, size_t rpu_size, int err_recognition)
Parse the contents of a Dolby Vision RPU and update the parsed values in the DOVIContext struct.
Definition: dovi_rpudec.c:347
int64_t
long long int64_t
Definition: coverity.c:34
AVFilmGrainAOMParams::uv_points
uint8_t uv_points[2][10][2]
Definition: film_grain_params.h:63
AVContentLightMetadata::MaxCLL
unsigned MaxCLL
Max content light level (cd/m^2).
Definition: mastering_display_metadata.h:111
AVFilmGrainParams::aom
AVFilmGrainAOMParams aom
Definition: film_grain_params.h:247
AVFrame
This structure describes decoded (raw) audio or video data.
Definition: frame.h:427
AVPacketSideData
This structure stores auxiliary information for decoding, presenting, or otherwise processing the cod...
Definition: packet.h:409
w
uint8_t w
Definition: llviddspenc.c:38
AVCOL_RANGE_JPEG
@ AVCOL_RANGE_JPEG
Full range content.
Definition: pixfmt.h:767
internal.h
AVPacket::data
uint8_t * data
Definition: packet.h:558
AVOption
AVOption.
Definition: opt.h:429
data
const char data[16]
Definition: mxf.c:149
AV_PIX_FMT_YUV420P10
#define AV_PIX_FMT_YUV420P10
Definition: pixfmt.h:539
AVFilmGrainParams::color_space
enum AVColorSpace color_space
Definition: film_grain_params.h:233
FFCodec
Definition: codec_internal.h:127
AV_LOG_VERBOSE
#define AV_LOG_VERBOSE
Detailed information.
Definition: log.h:226
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:691
libdav1d_user_data_free
static void libdav1d_user_data_free(const uint8_t *data, void *opaque)
Definition: libdav1d.c:296
av_buffer_ref
AVBufferRef * av_buffer_ref(const AVBufferRef *buf)
Create a new reference to an AVBuffer.
Definition: buffer.c:103
AVColorPrimaries
AVColorPrimaries
Chromaticity coordinates of the source primaries.
Definition: pixfmt.h:636
ff_set_dimensions
int ff_set_dimensions(AVCodecContext *s, int width, int height)
Check that the provided frame dimensions are valid and set them on the codec context.
Definition: utils.c:91
AVFilmGrainParams::color_trc
enum AVColorTransferCharacteristic color_trc
Definition: film_grain_params.h:232
av_packet_free
void av_packet_free(AVPacket **pkt)
Free the packet, if the packet is reference counted, it will be unreferenced first.
Definition: packet.c:75
AVFilmGrainParams::seed
uint64_t seed
Seed to use for the synthesis process, if the codec allows for it.
Definition: film_grain_params.h:213
AVContentLightMetadata
Content light level needed by to transmit HDR over HDMI (CTA-861.3).
Definition: mastering_display_metadata.h:107
AV_PKT_DATA_DOVI_CONF
@ AV_PKT_DATA_DOVI_CONF
DOVI configuration ref: dolby-vision-bitstreams-within-the-iso-base-media-file-format-v2....
Definition: packet.h:280
close
static av_cold void close(AVCodecParserContext *s)
Definition: apv_parser.c:135
AVPacketSideData::size
size_t size
Definition: packet.h:411
av1_parse.h
FFCodec::p
AVCodec p
The public AVCodec.
Definition: codec_internal.h:131
AVCOL_TRC_IEC61966_2_1
@ AVCOL_TRC_IEC61966_2_1
IEC 61966-2-1 (sRGB or sYCC)
Definition: pixfmt.h:675
DOVIContext
Definition: dovi_rpu.h:42
fail
#define fail()
Definition: checkasm.h:205
parse_itut_t35_metadata
static int parse_itut_t35_metadata(Libdav1dContext *dav1d, Dav1dPicture *p, const Dav1dITUTT35 *itut_t35, AVCodecContext *c, AVFrame *frame)
Definition: libdav1d.c:367
AVFilmGrainAOMParams::grain_scale_shift
int grain_scale_shift
Signals the down shift applied to the generated gaussian numbers during synthesis.
Definition: film_grain_params.h:99
AV_PIX_FMT_GBRP10
#define AV_PIX_FMT_GBRP10
Definition: pixfmt.h:558
libdav1d_init_params
static void libdav1d_init_params(AVCodecContext *c, const Dav1dSequenceHeader *seq)
Definition: libdav1d.c:132
libdav1d_init
static av_cold int libdav1d_init(AVCodecContext *c)
Definition: libdav1d.c:214
AV_CODEC_FLAG_LOW_DELAY
#define AV_CODEC_FLAG_LOW_DELAY
Force low delay.
Definition: avcodec.h:314
ff_decode_frame_props_from_pkt
int ff_decode_frame_props_from_pkt(const AVCodecContext *avctx, AVFrame *frame, const AVPacket *pkt)
Set various frame properties from the provided packet.
Definition: decode.c:1524
dovi_rpu.h
AVFilmGrainAOMParams::limit_output_range
int limit_output_range
Signals to clip to limited color levels after film grain application.
Definition: film_grain_params.h:122
Libdav1dContext::max_frame_delay
int max_frame_delay
Definition: libdav1d.c:53
AVFilmGrainAOMParams::num_y_points
int num_y_points
Number of points, and the scale and value for each point of the piecewise linear scaling function for...
Definition: film_grain_params.h:49
av_reduce
int av_reduce(int *dst_num, int *dst_den, int64_t num, int64_t den, int64_t max)
Reduce a fraction.
Definition: rational.c:35
ITU_T_T35_PROVIDER_CODE_ATSC
#define ITU_T_T35_PROVIDER_CODE_ATSC
Definition: itut35.h:38
ff_frame_new_side_data_from_buf
int ff_frame_new_side_data_from_buf(const AVCodecContext *avctx, AVFrame *frame, enum AVFrameSideDataType type, AVBufferRef **buf)
Similar to ff_frame_new_side_data, but using an existing buffer ref.
Definition: decode.c:2152
AV_PIX_FMT_YUV444P10
#define AV_PIX_FMT_YUV444P10
Definition: pixfmt.h:542
avassert.h
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
film_grain_params.h
av_cold
#define av_cold
Definition: attributes.h:106
AVFilmGrainParams::width
int width
Intended display resolution.
Definition: film_grain_params.h:220
AV_FRAME_FLAG_KEY
#define AV_FRAME_FLAG_KEY
A flag to mark frames that are keyframes.
Definition: frame.h:642
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
Libdav1dContext::dovi
DOVIContext dovi
Definition: libdav1d.c:49
AVMasteringDisplayMetadata::white_point
AVRational white_point[2]
CIE 1931 xy chromaticity coords of white point.
Definition: mastering_display_metadata.h:47
s
#define s(width, name)
Definition: cbs_vp9.c:198
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_film_grain_params_create_side_data
AVFilmGrainParams * av_film_grain_params_create_side_data(AVFrame *frame)
Allocate a complete AVFilmGrainParams and add it to the frame.
Definition: film_grain_params.c:33
GetByteContext::buffer
const uint8_t * buffer
Definition: bytestream.h:34
av_assert0
#define av_assert0(cond)
assert() equivalent, that is always enabled.
Definition: avassert.h:41
AV_LOG_DEBUG
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
Definition: log.h:231
AVPacketSideData::data
uint8_t * data
Definition: packet.h:410
libdav1d_receive_frame_internal
static int libdav1d_receive_frame_internal(AVCodecContext *c, Dav1dPicture *p)
Definition: libdav1d.c:302
AVDOVIDecoderConfigurationRecord::dv_profile
uint8_t dv_profile
Definition: dovi_meta.h:58
decode.h
Libdav1dContext
Definition: libdav1d.c:45
AVPixFmtDescriptor::log2_chroma_w
uint8_t log2_chroma_w
Amount to shift the luma width right to find the chroma width.
Definition: pixdesc.h:80
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
CODEC_LONG_NAME
#define CODEC_LONG_NAME(str)
Definition: codec_internal.h:331
ff_decode_mastering_display_new
int ff_decode_mastering_display_new(const AVCodecContext *avctx, AVFrame *frame, AVMasteringDisplayMetadata **mdm)
Wrapper around av_mastering_display_metadata_create_side_data(), which rejects side data overridden b...
Definition: decode.c:2193
FF_CODEC_PROPERTY_FILM_GRAIN
#define FF_CODEC_PROPERTY_FILM_GRAIN
Definition: avcodec.h:1640
AV_PIX_FMT_GRAY10
#define AV_PIX_FMT_GRAY10
Definition: pixfmt.h:519
AVFilmGrainAOMParams::uv_mult_luma
int uv_mult_luma[2]
Definition: film_grain_params.h:106
ff_parse_a53_cc
int ff_parse_a53_cc(AVBufferRef **pbuf, const uint8_t *data, int size)
Parse a data array for ATSC A53 Part 4 Closed Captions and store them in an AVBufferRef.
Definition: atsc_a53.c:69
AVPacket::buf
AVBufferRef * buf
A reference to the reference-counted buffer where the packet data is stored.
Definition: packet.h:541
LIBAVUTIL_VERSION_INT
#define LIBAVUTIL_VERSION_INT
Definition: version.h:85
AVClass
Describe the class of an AVClass context structure.
Definition: log.h:76
NULL
#define NULL
Definition: coverity.c:32
format
New swscale design to change SwsGraph is what coordinates multiple passes These can include cascaded scaling error diffusion and so on Or we could have separate passes for the vertical and horizontal scaling In between each SwsPass lies a fully allocated image buffer Graph passes may have different levels of e g we can have a single threaded error diffusion pass following a multi threaded scaling pass SwsGraph is internally recreated whenever the image format
Definition: swscale-v2.txt:14
av_buffer_unref
void av_buffer_unref(AVBufferRef **buf)
Free a given reference and automatically free the buffer if there are no more references to it.
Definition: buffer.c:139
AV_CODEC_ID_AV1
@ AV_CODEC_ID_AV1
Definition: codec_id.h:284
AVCHROMA_LOC_LEFT
@ AVCHROMA_LOC_LEFT
MPEG-2/4 4:2:0, H.264 default for 4:2:0.
Definition: pixfmt.h:788
AVCHROMA_LOC_TOPLEFT
@ AVCHROMA_LOC_TOPLEFT
ITU-R 601, SMPTE 274M 296M S314M(DV 4:1:1), mpeg2 4:2:2.
Definition: pixfmt.h:790
AVCOL_PRI_BT709
@ AVCOL_PRI_BT709
also ITU-R BT1361 / IEC 61966-2-4 / SMPTE RP 177 Annex B
Definition: pixfmt.h:638
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
av_buffer_pool_uninit
void av_buffer_pool_uninit(AVBufferPool **ppool)
Mark the pool as being available for freeing.
Definition: buffer.c:328
libdav1d_picture_release
static void libdav1d_picture_release(Dav1dPicture *p, void *cookie)
Definition: libdav1d.c:125
ff_set_sar
int ff_set_sar(AVCodecContext *avctx, AVRational sar)
Check that the provided sample aspect ratio is valid and set it on the codec context.
Definition: utils.c:106
flush
void(* flush)(AVBSFContext *ctx)
Definition: dts2pts.c:370
AV_PIX_FMT_YUV422P10
#define AV_PIX_FMT_YUV422P10
Definition: pixfmt.h:540
AV_PIX_FMT_GRAY8
@ AV_PIX_FMT_GRAY8
Y , 8bpp.
Definition: pixfmt.h:81
AVFilmGrainParams::subsampling_x
int subsampling_x
Intended subsampling ratio, or 0 for luma-only streams.
Definition: film_grain_params.h:225
AV_PICTURE_TYPE_SP
@ AV_PICTURE_TYPE_SP
Switching Predicted.
Definition: avutil.h:283
c
Undefined Behavior In the C some operations are like signed integer dereferencing freed accessing outside allocated Undefined Behavior must not occur in a C it is not safe even if the output of undefined operations is unused The unsafety may seem nit picking but Optimizing compilers have in fact optimized code on the assumption that no undefined Behavior occurs Optimizing code based on wrong assumptions can and has in some cases lead to effects beyond the output of computations The signed integer overflow problem in speed critical code Code which is highly optimized and works with signed integers sometimes has the problem that often the output of the computation does not c
Definition: undefined.txt:32
AVFilmGrainAOMParams::num_uv_points
int num_uv_points[2]
If chroma_scaling_from_luma is set to 0, signals the chroma scaling function parameters.
Definition: film_grain_params.h:62
DAV1D_MAX_FRAME_DELAY
#define DAV1D_MAX_FRAME_DELAY
Definition: libdav1d.c:648
Libdav1dContext::data
Dav1dData data
Definition: libdav1d.c:52
ITU_T_T35_PROVIDER_CODE_DOLBY
#define ITU_T_T35_PROVIDER_CODE_DOLBY
Definition: itut35.h:39
AVDISCARD_NONKEY
@ AVDISCARD_NONKEY
discard all frames except keyframes
Definition: defs.h:231
init
int(* init)(AVBSFContext *ctx)
Definition: dts2pts.c:368
AVPacket::size
int size
Definition: packet.h:559
av_image_fill_arrays
int av_image_fill_arrays(uint8_t *dst_data[4], int dst_linesize[4], const uint8_t *src, enum AVPixelFormat pix_fmt, int width, int height, int align)
Setup the data pointers and linesizes based on the specified image parameters and the provided array.
Definition: imgutils.c:446
Libdav1dContext::pool
AVBufferPool * pool
Definition: libdav1d.c:48
ff_dovi_attach_side_data
int ff_dovi_attach_side_data(DOVIContext *s, AVFrame *frame)
Attach the decoded AVDOVIMetadata as side data to an AVFrame.
Definition: dovi_rpudec.c:64
libdav1d_log_callback
static void libdav1d_log_callback(void *opaque, const char *fmt, va_list vl)
Definition: libdav1d.c:70
codec_internal.h
cpu.h
pix_fmt_rgb
static enum AVPixelFormat pix_fmt_rgb[3]
Definition: libdav1d.c:66
libdav1d_receive_frame
static int libdav1d_receive_frame(AVCodecContext *c, AVFrame *frame)
Definition: libdav1d.c:441
OFFSET
#define OFFSET(x)
Definition: libdav1d.c:651
FF_CODEC_CAP_SETS_FRAME_PROPS
#define FF_CODEC_CAP_SETS_FRAME_PROPS
Codec handles output frame properties internally instead of letting the internal logic derive them fr...
Definition: codec_internal.h:77
AV_PIX_FMT_YUV422P12
#define AV_PIX_FMT_YUV422P12
Definition: pixfmt.h:544
av_make_q
static AVRational av_make_q(int num, int den)
Create an AVRational.
Definition: rational.h:71
AVFilmGrainParams::codec
union AVFilmGrainParams::@483 codec
Additional fields may be added both here and in any structure included.
MKBETAG
#define MKBETAG(a, b, c, d)
Definition: macros.h:56
AV_PIX_FMT_YUV444P12
#define AV_PIX_FMT_YUV444P12
Definition: pixfmt.h:546
AVFilmGrainParams
This structure describes how to handle film grain synthesis in video for specific codecs.
Definition: film_grain_params.h:201
ff_av1_framerate
AVRational ff_av1_framerate(int64_t ticks_per_frame, int64_t units_per_tick, int64_t time_scale)
Definition: av1_parse.c:110
av_image_get_buffer_size
int av_image_get_buffer_size(enum AVPixelFormat pix_fmt, int width, int height, int align)
Return the size in bytes of the amount of data required to store an image with the given parameters.
Definition: imgutils.c:466
AVERROR_EXTERNAL
#define AVERROR_EXTERNAL
Generic error in an external library.
Definition: error.h:59
offset
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 offset
Definition: writing_filters.txt:86
av_packet_alloc
AVPacket * av_packet_alloc(void)
Allocate an AVPacket and set its fields to default values.
Definition: packet.c:64
version
version
Definition: libkvazaar.c:315
AVFilmGrainAOMParams::ar_coeffs_y
int8_t ar_coeffs_y[24]
Luma auto-regression coefficients.
Definition: film_grain_params.h:80
AV_OPT_FLAG_DEPRECATED
#define AV_OPT_FLAG_DEPRECATED
Set if option is deprecated, users should refer to AVOption.help text for more information.
Definition: opt.h:386
ff_libdav1d_decoder
const FFCodec ff_libdav1d_decoder
Definition: libdav1d.c:668
AVFilmGrainParams::color_primaries
enum AVColorPrimaries color_primaries
Definition: film_grain_params.h:231
AVDISCARD_NONINTRA
@ AVDISCARD_NONINTRA
discard all non intra frames
Definition: defs.h:230
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:551
AV_PIX_FMT_GBRP12
#define AV_PIX_FMT_GBRP12
Definition: pixfmt.h:559
AVColorSpace
AVColorSpace
YUV colorspace type.
Definition: pixfmt.h:690
AVFilmGrainParams::subsampling_y
int subsampling_y
Definition: film_grain_params.h:225
FFMIN
#define FFMIN(a, b)
Definition: macros.h:49
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
AVFilmGrainAOMParams::scaling_shift
int scaling_shift
Specifies the shift applied to the chroma components.
Definition: film_grain_params.h:69
AVCodec::name
const char * name
Name of the codec implementation.
Definition: codec.h:179
AVMasteringDisplayMetadata
Mastering display metadata capable of representing the color volume of the display used to master the...
Definition: mastering_display_metadata.h:38
AVCOL_RANGE_MPEG
@ AVCOL_RANGE_MPEG
Narrow or limited range content.
Definition: pixfmt.h:750
Libdav1dContext::apply_grain
int apply_grain
Definition: libdav1d.c:54
AVDynamicHDRPlus
This struct represents dynamic metadata for color volume transform - application 4 of SMPTE 2094-40:2...
Definition: hdr_dynamic_metadata.h:243
avcodec.h
av_dynamic_hdr_plus_create_side_data
AVDynamicHDRPlus * av_dynamic_hdr_plus_create_side_data(AVFrame *frame)
Allocate a complete AVDynamicHDRPlus and add it to the frame.
Definition: hdr_dynamic_metadata.c:48
AVFilmGrainParams::height
int height
Definition: film_grain_params.h:220
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
atsc_a53.h
ff_decode_content_light_new
int ff_decode_content_light_new(const AVCodecContext *avctx, AVFrame *frame, AVContentLightMetadata **clm)
Wrapper around av_content_light_metadata_create_side_data(), which rejects side data overridden by th...
Definition: decode.c:2238
AV_PIX_FMT_YUV420P12
#define AV_PIX_FMT_YUV420P12
Definition: pixfmt.h:543
ff_decode_frame_props
int ff_decode_frame_props(AVCodecContext *avctx, AVFrame *frame)
Set various frame properties from the codec context / packet data.
Definition: decode.c:1566
AVCodecContext
main external API structure.
Definition: avcodec.h:431
AVFilmGrainAOMParams::ar_coeff_lag
int ar_coeff_lag
Specifies the auto-regression lag.
Definition: film_grain_params.h:74
itut35.h
FF_CODEC_RECEIVE_FRAME_CB
#define FF_CODEC_RECEIVE_FRAME_CB(func)
Definition: codec_internal.h:354
AVFilmGrainAOMParams::y_points
uint8_t y_points[14][2]
Definition: film_grain_params.h:50
AVFilmGrainAOMParams::uv_offset
int uv_offset[2]
Offset used for component scaling function.
Definition: film_grain_params.h:112
pix_fmt
static enum AVPixelFormat pix_fmt[][3]
Definition: libdav1d.c:59
AV_PIX_FMT_NONE
@ AV_PIX_FMT_NONE
Definition: pixfmt.h:72
AV_OPT_TYPE_INT
@ AV_OPT_TYPE_INT
Underlying C type is int.
Definition: opt.h:259
AVFilmGrainAOMParams::uv_mult
int uv_mult[2]
Specifies the luma/chroma multipliers for the index to the component scaling function.
Definition: film_grain_params.h:105
hdr_dynamic_metadata.h
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
FF_CODEC_PROPERTY_CLOSED_CAPTIONS
#define FF_CODEC_PROPERTY_CLOSED_CAPTIONS
Definition: avcodec.h:1639
AV_PIX_FMT_YUV444P
@ AV_PIX_FMT_YUV444P
planar YUV 4:4:4, 24bpp, (1 Cr & Cb sample per 1x1 Y samples)
Definition: pixfmt.h:78
AVFilmGrainParams::color_range
enum AVColorRange color_range
Intended video signal characteristics.
Definition: film_grain_params.h:230
FF_DISABLE_DEPRECATION_WARNINGS
#define FF_DISABLE_DEPRECATION_WARNINGS
Definition: internal.h:72
AV_PIX_FMT_GBRP
@ AV_PIX_FMT_GBRP
planar GBR 4:4:4 24bpp
Definition: pixfmt.h:165
AVFilmGrainAOMParams::overlap_flag
int overlap_flag
Signals whether to overlap film grain blocks.
Definition: film_grain_params.h:117
libdav1d_options
static const AVOption libdav1d_options[]
Definition: libdav1d.c:653
AV_PICTURE_TYPE_P
@ AV_PICTURE_TYPE_P
Predicted.
Definition: avutil.h:279
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:200
libdav1d_flush
static void libdav1d_flush(AVCodecContext *c)
Definition: libdav1d.c:282
AV_PIX_FMT_YUV422P
@ AV_PIX_FMT_YUV422P
planar YUV 4:2:2, 16bpp, (1 Cr & Cb sample per 2x1 Y samples)
Definition: pixfmt.h:77
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
ITU_T_T35_COUNTRY_CODE_US
#define ITU_T_T35_COUNTRY_CODE_US
Definition: itut35.h:24
AVPixFmtDescriptor
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
Definition: pixdesc.h:69
FFALIGN
#define FFALIGN(x, a)
Definition: macros.h:78
libdav1d_data_free
static void libdav1d_data_free(const uint8_t *data, void *opaque)
Definition: libdav1d.c:290
AVContentLightMetadata::MaxFALL
unsigned MaxFALL
Max average light level per frame (cd/m^2).
Definition: mastering_display_metadata.h:116
AVPacket
This structure stores compressed data.
Definition: packet.h:535
AV_OPT_TYPE_BOOL
@ AV_OPT_TYPE_BOOL
Underlying C type is int.
Definition: opt.h:327
av_dynamic_hdr_plus_from_t35
int av_dynamic_hdr_plus_from_t35(AVDynamicHDRPlus *s, const uint8_t *data, size_t size)
Parse the user data registered ITU-T T.35 to AVbuffer (AVDynamicHDRPlus).
Definition: hdr_dynamic_metadata.c:61
Libdav1dContext::operating_point
int operating_point
Definition: libdav1d.c:55
bytestream.h
imgutils.h
bytestream2_init
static av_always_inline void bytestream2_init(GetByteContext *g, const uint8_t *buf, int buf_size)
Definition: bytestream.h:137
av_log
#define av_log(a,...)
Definition: tableprint_vlc.h:27
ITU_T_T35_PROVIDER_CODE_SAMSUNG
#define ITU_T_T35_PROVIDER_CODE_SAMSUNG
Definition: itut35.h:41
AVERROR_INVALIDDATA
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:61
Libdav1dContext::all_layers
int all_layers
Definition: libdav1d.c:56
h
h
Definition: vp9dsp_template.c:2070
AV_PIX_FMT_GRAY12
#define AV_PIX_FMT_GRAY12
Definition: pixfmt.h:520
AVFilmGrainAOMParams::chroma_scaling_from_luma
int chroma_scaling_from_luma
Signals whether to derive the chroma scaling function from the luma.
Definition: film_grain_params.h:56
AVDISCARD_NONREF
@ AVDISCARD_NONREF
discard all non reference
Definition: defs.h:228
AV_FILM_GRAIN_PARAMS_AV1
@ AV_FILM_GRAIN_PARAMS_AV1
The union is valid when interpreted as AVFilmGrainAOMParams (codec.aom)
Definition: film_grain_params.h:30
VD
#define VD
Definition: libdav1d.c:652
AVFilmGrainParams::type
enum AVFilmGrainParamsType type
Specifies the codec for which this structure is valid.
Definition: film_grain_params.h:205
AVPixFmtDescriptor::log2_chroma_h
uint8_t log2_chroma_h
Amount to shift the luma height right to find the chroma height.
Definition: pixdesc.h:89
AV_CODEC_EXPORT_DATA_FILM_GRAIN
#define AV_CODEC_EXPORT_DATA_FILM_GRAIN
Decoding only.
Definition: avcodec.h:400
libdav1d_parse_extradata
static av_cold int libdav1d_parse_extradata(AVCodecContext *c)
Definition: libdav1d.c:175
AVFilmGrainAOMParams::ar_coeff_shift
int ar_coeff_shift
Specifies the range of the auto-regressive coefficients.
Definition: film_grain_params.h:93
AVDOVIDecoderConfigurationRecord
Definition: dovi_meta.h:55
libdav1d_close
static av_cold int libdav1d_close(AVCodecContext *c)
Definition: libdav1d.c:629
AVFilmGrainAOMParams::ar_coeffs_uv
int8_t ar_coeffs_uv[2][25]
Chroma auto-regression coefficients.
Definition: film_grain_params.h:86