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 "internal.h"
39 
40 #define FF_DAV1D_VERSION_AT_LEAST(x,y) \
41  (DAV1D_API_VERSION_MAJOR > (x) || DAV1D_API_VERSION_MAJOR == (x) && DAV1D_API_VERSION_MINOR >= (y))
42 
43 typedef struct Libdav1dContext {
44  AVClass *class;
45  Dav1dContext *c;
47  int pool_size;
48 
49  Dav1dData data;
57 
58 static const enum AVPixelFormat pix_fmt[][3] = {
59  [DAV1D_PIXEL_LAYOUT_I400] = { AV_PIX_FMT_GRAY8, AV_PIX_FMT_GRAY10, AV_PIX_FMT_GRAY12 },
60  [DAV1D_PIXEL_LAYOUT_I420] = { AV_PIX_FMT_YUV420P, AV_PIX_FMT_YUV420P10, AV_PIX_FMT_YUV420P12 },
61  [DAV1D_PIXEL_LAYOUT_I422] = { AV_PIX_FMT_YUV422P, AV_PIX_FMT_YUV422P10, AV_PIX_FMT_YUV422P12 },
62  [DAV1D_PIXEL_LAYOUT_I444] = { AV_PIX_FMT_YUV444P, AV_PIX_FMT_YUV444P10, AV_PIX_FMT_YUV444P12 },
63 };
64 
65 static const enum AVPixelFormat pix_fmt_rgb[3] = {
67 };
68 
69 static void libdav1d_log_callback(void *opaque, const char *fmt, va_list vl)
70 {
71  AVCodecContext *c = opaque;
72 
73  av_vlog(c, AV_LOG_ERROR, fmt, vl);
74 }
75 
76 static int libdav1d_picture_allocator(Dav1dPicture *p, void *cookie)
77 {
78  Libdav1dContext *dav1d = cookie;
79  enum AVPixelFormat format = pix_fmt[p->p.layout][p->seq_hdr->hbd];
80  int ret, linesize[4], h = FFALIGN(p->p.h, 128), w = FFALIGN(p->p.w, 128);
81  uint8_t *aligned_ptr, *data[4];
82  AVBufferRef *buf;
83 
84  ret = av_image_get_buffer_size(format, w, h, DAV1D_PICTURE_ALIGNMENT);
85  if (ret < 0)
86  return ret;
87 
88  if (ret != dav1d->pool_size) {
89  av_buffer_pool_uninit(&dav1d->pool);
90  // Use twice the amount of required padding bytes for aligned_ptr below.
91  dav1d->pool = av_buffer_pool_init(ret + DAV1D_PICTURE_ALIGNMENT * 2, NULL);
92  if (!dav1d->pool) {
93  dav1d->pool_size = 0;
94  return AVERROR(ENOMEM);
95  }
96  dav1d->pool_size = ret;
97  }
98  buf = av_buffer_pool_get(dav1d->pool);
99  if (!buf)
100  return AVERROR(ENOMEM);
101 
102  // libdav1d requires DAV1D_PICTURE_ALIGNMENT aligned buffers, which av_malloc()
103  // doesn't guarantee for example when AVX is disabled at configure time.
104  // Use the extra DAV1D_PICTURE_ALIGNMENT padding bytes in the buffer to align it
105  // if required.
106  aligned_ptr = (uint8_t *)FFALIGN((uintptr_t)buf->data, DAV1D_PICTURE_ALIGNMENT);
107  ret = av_image_fill_arrays(data, linesize, aligned_ptr, format, w, h,
108  DAV1D_PICTURE_ALIGNMENT);
109  if (ret < 0) {
110  av_buffer_unref(&buf);
111  return ret;
112  }
113 
114  p->data[0] = data[0];
115  p->data[1] = data[1];
116  p->data[2] = data[2];
117  p->stride[0] = linesize[0];
118  p->stride[1] = linesize[1];
119  p->allocator_data = buf;
120 
121  return 0;
122 }
123 
124 static void libdav1d_picture_release(Dav1dPicture *p, void *cookie)
125 {
126  AVBufferRef *buf = p->allocator_data;
127 
128  av_buffer_unref(&buf);
129 }
130 
131 static void libdav1d_init_params(AVCodecContext *c, const Dav1dSequenceHeader *seq)
132 {
133  c->profile = seq->profile;
134  c->level = ((seq->operating_points[0].major_level - 2) << 2)
135  | seq->operating_points[0].minor_level;
136 
137  switch (seq->chr) {
138  case DAV1D_CHR_VERTICAL:
139  c->chroma_sample_location = AVCHROMA_LOC_LEFT;
140  break;
141  case DAV1D_CHR_COLOCATED:
142  c->chroma_sample_location = AVCHROMA_LOC_TOPLEFT;
143  break;
144  }
145  c->colorspace = (enum AVColorSpace) seq->mtrx;
146  c->color_primaries = (enum AVColorPrimaries) seq->pri;
147  c->color_trc = (enum AVColorTransferCharacteristic) seq->trc;
148  c->color_range = seq->color_range ? AVCOL_RANGE_JPEG : AVCOL_RANGE_MPEG;
149 
150  if (seq->layout == DAV1D_PIXEL_LAYOUT_I444 &&
151  seq->mtrx == DAV1D_MC_IDENTITY &&
152  seq->pri == DAV1D_COLOR_PRI_BT709 &&
153  seq->trc == DAV1D_TRC_SRGB)
154  c->pix_fmt = pix_fmt_rgb[seq->hbd];
155  else
156  c->pix_fmt = pix_fmt[seq->layout][seq->hbd];
157 
158  c->framerate = ff_av1_framerate(seq->num_ticks_per_picture,
159  (unsigned)seq->num_units_in_tick,
160  (unsigned)seq->time_scale);
161 
162  if (seq->film_grain_present)
163  c->properties |= FF_CODEC_PROPERTY_FILM_GRAIN;
164  else
165  c->properties &= ~FF_CODEC_PROPERTY_FILM_GRAIN;
166 }
167 
169 {
170  Dav1dSequenceHeader seq;
171  size_t offset = 0;
172  int res;
173 
174  if (!c->extradata || c->extradata_size <= 0)
175  return 0;
176 
177  if (c->extradata[0] & 0x80) {
178  int version = c->extradata[0] & 0x7F;
179 
180  if (version != 1 || c->extradata_size < 4) {
181  int explode = !!(c->err_recognition & AV_EF_EXPLODE);
182  av_log(c, explode ? AV_LOG_ERROR : AV_LOG_WARNING,
183  "Error decoding extradata\n");
184  return explode ? AVERROR_INVALIDDATA : 0;
185  }
186 
187  // Do nothing if there are no configOBUs to parse
188  if (c->extradata_size == 4)
189  return 0;
190 
191  offset = 4;
192  }
193 
194  res = dav1d_parse_sequence_header(&seq, c->extradata + offset,
195  c->extradata_size - offset);
196  if (res < 0)
197  return 0; // Assume no seqhdr OBUs are present
198 
199  libdav1d_init_params(c, &seq);
200  res = ff_set_dimensions(c, seq.max_width, seq.max_height);
201  if (res < 0)
202  return res;
203 
204  return 0;
205 }
206 
208 {
209  Libdav1dContext *dav1d = c->priv_data;
210  Dav1dSettings s;
211 #if FF_DAV1D_VERSION_AT_LEAST(6,0)
212  int threads = c->thread_count;
213 #else
214  int threads = (c->thread_count ? c->thread_count : av_cpu_count()) * 3 / 2;
215 #endif
216  int res;
217 
218  av_log(c, AV_LOG_INFO, "libdav1d %s\n", dav1d_version());
219 
220  dav1d_default_settings(&s);
221  s.logger.cookie = c;
222  s.logger.callback = libdav1d_log_callback;
223  s.allocator.cookie = dav1d;
224  s.allocator.alloc_picture_callback = libdav1d_picture_allocator;
225  s.allocator.release_picture_callback = libdav1d_picture_release;
226  s.frame_size_limit = c->max_pixels;
227  if (dav1d->apply_grain >= 0)
228  s.apply_grain = dav1d->apply_grain;
229  else
230  s.apply_grain = !(c->export_side_data & AV_CODEC_EXPORT_DATA_FILM_GRAIN);
231 
232  s.all_layers = dav1d->all_layers;
233  if (dav1d->operating_point >= 0)
234  s.operating_point = dav1d->operating_point;
235 #if FF_DAV1D_VERSION_AT_LEAST(6,2)
236  s.strict_std_compliance = c->strict_std_compliance > 0;
237 #endif
238 
239 #if FF_DAV1D_VERSION_AT_LEAST(6,0)
240  if (dav1d->frame_threads || dav1d->tile_threads)
241  s.n_threads = FFMAX(dav1d->frame_threads, dav1d->tile_threads);
242  else
243  s.n_threads = FFMIN(threads, DAV1D_MAX_THREADS);
244  if (dav1d->max_frame_delay > 0 && (c->flags & AV_CODEC_FLAG_LOW_DELAY))
245  av_log(c, AV_LOG_WARNING, "Low delay mode requested, forcing max_frame_delay 1\n");
246  s.max_frame_delay = (c->flags & AV_CODEC_FLAG_LOW_DELAY) ? 1 : dav1d->max_frame_delay;
247  av_log(c, AV_LOG_DEBUG, "Using %d threads, %d max_frame_delay\n",
248  s.n_threads, s.max_frame_delay);
249 #else
250  s.n_tile_threads = dav1d->tile_threads
251  ? dav1d->tile_threads
252  : FFMIN(floor(sqrt(threads)), DAV1D_MAX_TILE_THREADS);
253  s.n_frame_threads = dav1d->frame_threads
254  ? dav1d->frame_threads
255  : FFMIN(ceil(threads / s.n_tile_threads), DAV1D_MAX_FRAME_THREADS);
256  if (dav1d->max_frame_delay > 0)
257  s.n_frame_threads = FFMIN(s.n_frame_threads, dav1d->max_frame_delay);
258  av_log(c, AV_LOG_DEBUG, "Using %d frame threads, %d tile threads\n",
259  s.n_frame_threads, s.n_tile_threads);
260 #endif
261 
262 #if FF_DAV1D_VERSION_AT_LEAST(6,8)
263  if (c->skip_frame >= AVDISCARD_NONKEY)
264  s.decode_frame_type = DAV1D_DECODEFRAMETYPE_KEY;
265  else if (c->skip_frame >= AVDISCARD_NONINTRA)
266  s.decode_frame_type = DAV1D_DECODEFRAMETYPE_INTRA;
267  else if (c->skip_frame >= AVDISCARD_NONREF)
268  s.decode_frame_type = DAV1D_DECODEFRAMETYPE_REFERENCE;
269 #endif
270 
272  if (res < 0)
273  return res;
274 
275  res = dav1d_open(&dav1d->c, &s);
276  if (res < 0)
277  return AVERROR(ENOMEM);
278 
279 #if FF_DAV1D_VERSION_AT_LEAST(6,7)
280  res = dav1d_get_frame_delay(&s);
281  if (res < 0) // Should not happen
282  return AVERROR_EXTERNAL;
283 
284  // When dav1d_get_frame_delay() returns 1, there's no delay whatsoever
285  c->delay = res > 1 ? res : 0;
286 #endif
287 
288  return 0;
289 }
290 
292 {
293  Libdav1dContext *dav1d = c->priv_data;
294 
295  dav1d_data_unref(&dav1d->data);
296  dav1d_flush(dav1d->c);
297 }
298 
299 typedef struct OpaqueData {
301 #if FF_API_REORDERED_OPAQUE
302  int64_t reordered_opaque;
303 #endif
304 } OpaqueData;
305 
306 static void libdav1d_data_free(const uint8_t *data, void *opaque) {
307  AVBufferRef *buf = opaque;
308 
309  av_buffer_unref(&buf);
310 }
311 
312 static void libdav1d_user_data_free(const uint8_t *data, void *opaque) {
313  AVPacket *pkt = opaque;
314  av_assert0(data == opaque);
315  av_free(pkt->opaque);
317 }
318 
319 static int libdav1d_receive_frame_internal(AVCodecContext *c, Dav1dPicture *p)
320 {
321  Libdav1dContext *dav1d = c->priv_data;
322  Dav1dData *data = &dav1d->data;
323  int res;
324 
325  if (!data->sz) {
327 
328  if (!pkt)
329  return AVERROR(ENOMEM);
330 
331  res = ff_decode_get_packet(c, pkt);
332  if (res < 0 && res != AVERROR_EOF) {
334  return res;
335  }
336 
337  if (pkt->size) {
338  OpaqueData *od = NULL;
339 
340  res = dav1d_data_wrap(data, pkt->data, pkt->size,
342  if (res < 0) {
344  return res;
345  }
346 
347  pkt->buf = NULL;
348 
350  if (
352  c->reordered_opaque != AV_NOPTS_VALUE ||
353 #endif
354  (pkt->opaque && (c->flags & AV_CODEC_FLAG_COPY_OPAQUE))) {
355  od = av_mallocz(sizeof(*od));
356  if (!od) {
358  dav1d_data_unref(data);
359  return AVERROR(ENOMEM);
360  }
361  od->pkt_orig_opaque = pkt->opaque;
362 #if FF_API_REORDERED_OPAQUE
363  od->reordered_opaque = c->reordered_opaque;
364 #endif
366  }
367  pkt->opaque = od;
368 
369  res = dav1d_data_wrap_user_data(data, (const uint8_t *)pkt,
371  if (res < 0) {
372  av_free(pkt->opaque);
374  dav1d_data_unref(data);
375  return res;
376  }
377  pkt = NULL;
378  } else {
380  if (res >= 0)
381  return AVERROR(EAGAIN);
382  }
383  }
384 
385  res = dav1d_send_data(dav1d->c, data);
386  if (res < 0) {
387  if (res == AVERROR(EINVAL))
388  res = AVERROR_INVALIDDATA;
389  if (res != AVERROR(EAGAIN)) {
390  dav1d_data_unref(data);
391  return res;
392  }
393  }
394 
395  res = dav1d_get_picture(dav1d->c, p);
396  if (res < 0) {
397  if (res == AVERROR(EINVAL))
398  res = AVERROR_INVALIDDATA;
399  else if (res == AVERROR(EAGAIN))
400  res = c->internal->draining ? AVERROR_EOF : 1;
401  }
402 
403  return res;
404 }
405 
407 {
408  Libdav1dContext *dav1d = c->priv_data;
409  Dav1dPicture pic = { 0 }, *p = &pic;
410  AVPacket *pkt;
411  OpaqueData *od = NULL;
412 #if FF_DAV1D_VERSION_AT_LEAST(5,1)
413  enum Dav1dEventFlags event_flags = 0;
414 #endif
415  int res;
416 
417  do {
419  } while (res > 0);
420 
421  if (res < 0)
422  return res;
423 
424  av_assert0(p->data[0] && p->allocator_data);
425 
426  // This requires the custom allocator above
427  frame->buf[0] = av_buffer_ref(p->allocator_data);
428  if (!frame->buf[0]) {
429  dav1d_picture_unref(p);
430  return AVERROR(ENOMEM);
431  }
432 
433  frame->data[0] = p->data[0];
434  frame->data[1] = p->data[1];
435  frame->data[2] = p->data[2];
436  frame->linesize[0] = p->stride[0];
437  frame->linesize[1] = p->stride[1];
438  frame->linesize[2] = p->stride[1];
439 
440 #if FF_DAV1D_VERSION_AT_LEAST(5,1)
441  dav1d_get_event_flags(dav1d->c, &event_flags);
442  if (c->pix_fmt == AV_PIX_FMT_NONE ||
443  event_flags & DAV1D_EVENT_FLAG_NEW_SEQUENCE)
444 #endif
445  libdav1d_init_params(c, p->seq_hdr);
446  res = ff_decode_frame_props(c, frame);
447  if (res < 0)
448  goto fail;
449 
450  frame->width = p->p.w;
451  frame->height = p->p.h;
452  if (c->width != p->p.w || c->height != p->p.h) {
453  res = ff_set_dimensions(c, p->p.w, p->p.h);
454  if (res < 0)
455  goto fail;
456  }
457 
460  frame->height * (int64_t)p->frame_hdr->render_width,
461  frame->width * (int64_t)p->frame_hdr->render_height,
462  INT_MAX);
464 
465  pkt = (AVPacket *)p->m.user_data.data;
466  od = pkt->opaque;
469  if (od && od->reordered_opaque != AV_NOPTS_VALUE)
470  frame->reordered_opaque = od->reordered_opaque;
471  else
474 #endif
475 
476  // restore the original user opaque value for
477  // ff_decode_frame_props_from_pkt()
478  pkt->opaque = od ? od->pkt_orig_opaque : NULL;
479  av_freep(&od);
480 
481  // match timestamps and packet size
483  pkt->opaque = NULL;
484  if (res < 0)
485  goto fail;
486 
487  frame->pkt_dts = pkt->pts;
488  if (p->frame_hdr->frame_type == DAV1D_FRAME_TYPE_KEY)
490  else
492 
493  switch (p->frame_hdr->frame_type) {
494  case DAV1D_FRAME_TYPE_KEY:
495  case DAV1D_FRAME_TYPE_INTRA:
497  break;
498  case DAV1D_FRAME_TYPE_INTER:
500  break;
501  case DAV1D_FRAME_TYPE_SWITCH:
503  break;
504  default:
505  res = AVERROR_INVALIDDATA;
506  goto fail;
507  }
508 
509  if (p->mastering_display) {
511  if (!mastering) {
512  res = AVERROR(ENOMEM);
513  goto fail;
514  }
515 
516  for (int i = 0; i < 3; i++) {
517  mastering->display_primaries[i][0] = av_make_q(p->mastering_display->primaries[i][0], 1 << 16);
518  mastering->display_primaries[i][1] = av_make_q(p->mastering_display->primaries[i][1], 1 << 16);
519  }
520  mastering->white_point[0] = av_make_q(p->mastering_display->white_point[0], 1 << 16);
521  mastering->white_point[1] = av_make_q(p->mastering_display->white_point[1], 1 << 16);
522 
523  mastering->max_luminance = av_make_q(p->mastering_display->max_luminance, 1 << 8);
524  mastering->min_luminance = av_make_q(p->mastering_display->min_luminance, 1 << 14);
525 
526  mastering->has_primaries = 1;
527  mastering->has_luminance = 1;
528  }
529  if (p->content_light) {
531  if (!light) {
532  res = AVERROR(ENOMEM);
533  goto fail;
534  }
535  light->MaxCLL = p->content_light->max_content_light_level;
536  light->MaxFALL = p->content_light->max_frame_average_light_level;
537  }
538  if (p->itut_t35) {
539 #if FF_DAV1D_VERSION_AT_LEAST(6,9)
540  for (size_t i = 0; i < p->n_itut_t35; i++) {
541  const Dav1dITUTT35 *itut_t35 = &p->itut_t35[i];
542 #else
543  const Dav1dITUTT35 *itut_t35 = p->itut_t35;
544 #endif
545  GetByteContext gb;
546  int provider_code;
547 
548  bytestream2_init(&gb, itut_t35->payload, itut_t35->payload_size);
549 
550  provider_code = bytestream2_get_be16(&gb);
551  switch (provider_code) {
552  case 0x31: { // atsc_provider_code
553  uint32_t user_identifier = bytestream2_get_be32(&gb);
554  switch (user_identifier) {
555  case MKBETAG('G', 'A', '9', '4'): { // closed captions
556  AVBufferRef *buf = NULL;
557 
558  res = ff_parse_a53_cc(&buf, gb.buffer, bytestream2_get_bytes_left(&gb));
559  if (res < 0)
560  goto fail;
561  if (!res)
562  break;
563 
565  av_buffer_unref(&buf);
566 
567  c->properties |= FF_CODEC_PROPERTY_CLOSED_CAPTIONS;
568  break;
569  }
570  default: // ignore unsupported identifiers
571  break;
572  }
573  break;
574  }
575  case 0x3C: { // smpte_provider_code
576  AVDynamicHDRPlus *hdrplus;
577  int provider_oriented_code = bytestream2_get_be16(&gb);
578  int application_identifier = bytestream2_get_byte(&gb);
579 
580  if (itut_t35->country_code != 0xB5 ||
581  provider_oriented_code != 1 || application_identifier != 4)
582  break;
583 
585  if (!hdrplus) {
586  res = AVERROR(ENOMEM);
587  goto fail;
588  }
589 
590  res = av_dynamic_hdr_plus_from_t35(hdrplus, gb.buffer,
592  if (res < 0)
593  goto fail;
594  break;
595  }
596  default: // ignore unsupported provider codes
597  break;
598  }
599 #if FF_DAV1D_VERSION_AT_LEAST(6,9)
600  }
601 #endif
602  }
603  if (p->frame_hdr->film_grain.present && (!dav1d->apply_grain ||
604  (c->export_side_data & AV_CODEC_EXPORT_DATA_FILM_GRAIN))) {
606  if (!fgp) {
607  res = AVERROR(ENOMEM);
608  goto fail;
609  }
610 
612  fgp->seed = p->frame_hdr->film_grain.data.seed;
613  fgp->codec.aom.num_y_points = p->frame_hdr->film_grain.data.num_y_points;
614  fgp->codec.aom.chroma_scaling_from_luma = p->frame_hdr->film_grain.data.chroma_scaling_from_luma;
615  fgp->codec.aom.scaling_shift = p->frame_hdr->film_grain.data.scaling_shift;
616  fgp->codec.aom.ar_coeff_lag = p->frame_hdr->film_grain.data.ar_coeff_lag;
617  fgp->codec.aom.ar_coeff_shift = p->frame_hdr->film_grain.data.ar_coeff_shift;
618  fgp->codec.aom.grain_scale_shift = p->frame_hdr->film_grain.data.grain_scale_shift;
619  fgp->codec.aom.overlap_flag = p->frame_hdr->film_grain.data.overlap_flag;
620  fgp->codec.aom.limit_output_range = p->frame_hdr->film_grain.data.clip_to_restricted_range;
621 
622  memcpy(&fgp->codec.aom.y_points, &p->frame_hdr->film_grain.data.y_points,
623  sizeof(fgp->codec.aom.y_points));
624  memcpy(&fgp->codec.aom.num_uv_points, &p->frame_hdr->film_grain.data.num_uv_points,
625  sizeof(fgp->codec.aom.num_uv_points));
626  memcpy(&fgp->codec.aom.uv_points, &p->frame_hdr->film_grain.data.uv_points,
627  sizeof(fgp->codec.aom.uv_points));
628  memcpy(&fgp->codec.aom.ar_coeffs_y, &p->frame_hdr->film_grain.data.ar_coeffs_y,
629  sizeof(fgp->codec.aom.ar_coeffs_y));
630  memcpy(&fgp->codec.aom.ar_coeffs_uv[0], &p->frame_hdr->film_grain.data.ar_coeffs_uv[0],
631  sizeof(fgp->codec.aom.ar_coeffs_uv[0]));
632  memcpy(&fgp->codec.aom.ar_coeffs_uv[1], &p->frame_hdr->film_grain.data.ar_coeffs_uv[1],
633  sizeof(fgp->codec.aom.ar_coeffs_uv[1]));
634  memcpy(&fgp->codec.aom.uv_mult, &p->frame_hdr->film_grain.data.uv_mult,
635  sizeof(fgp->codec.aom.uv_mult));
636  memcpy(&fgp->codec.aom.uv_mult_luma, &p->frame_hdr->film_grain.data.uv_luma_mult,
637  sizeof(fgp->codec.aom.uv_mult_luma));
638  memcpy(&fgp->codec.aom.uv_offset, &p->frame_hdr->film_grain.data.uv_offset,
639  sizeof(fgp->codec.aom.uv_offset));
640  }
641 
642  res = 0;
643 fail:
644  dav1d_picture_unref(p);
645  if (res < 0)
647  return res;
648 }
649 
651 {
652  Libdav1dContext *dav1d = c->priv_data;
653 
654  av_buffer_pool_uninit(&dav1d->pool);
655  dav1d_data_unref(&dav1d->data);
656  dav1d_close(&dav1d->c);
657 
658  return 0;
659 }
660 
661 #ifndef DAV1D_MAX_FRAME_THREADS
662 #define DAV1D_MAX_FRAME_THREADS DAV1D_MAX_THREADS
663 #endif
664 #ifndef DAV1D_MAX_TILE_THREADS
665 #define DAV1D_MAX_TILE_THREADS DAV1D_MAX_THREADS
666 #endif
667 #ifndef DAV1D_MAX_FRAME_DELAY
668 #define DAV1D_MAX_FRAME_DELAY DAV1D_MAX_FRAME_THREADS
669 #endif
670 
671 #define OFFSET(x) offsetof(Libdav1dContext, x)
672 #define VD AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_DECODING_PARAM
673 static const AVOption libdav1d_options[] = {
674  { "tilethreads", "Tile threads", OFFSET(tile_threads), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, DAV1D_MAX_TILE_THREADS, VD | AV_OPT_FLAG_DEPRECATED },
675  { "framethreads", "Frame threads", OFFSET(frame_threads), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, DAV1D_MAX_FRAME_THREADS, VD | AV_OPT_FLAG_DEPRECATED },
676  { "max_frame_delay", "Max frame delay", OFFSET(max_frame_delay), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, DAV1D_MAX_FRAME_DELAY, VD },
677  { "filmgrain", "Apply Film Grain", OFFSET(apply_grain), AV_OPT_TYPE_BOOL, { .i64 = -1 }, -1, 1, VD | AV_OPT_FLAG_DEPRECATED },
678  { "oppoint", "Select an operating point of the scalable bitstream", OFFSET(operating_point), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 31, VD },
679  { "alllayers", "Output all spatial layers", OFFSET(all_layers), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, VD },
680  { NULL }
681 };
682 
683 static const AVClass libdav1d_class = {
684  .class_name = "libdav1d decoder",
685  .item_name = av_default_item_name,
686  .option = libdav1d_options,
687  .version = LIBAVUTIL_VERSION_INT,
688 };
689 
691  .p.name = "libdav1d",
692  CODEC_LONG_NAME("dav1d AV1 decoder by VideoLAN"),
693  .p.type = AVMEDIA_TYPE_VIDEO,
694  .p.id = AV_CODEC_ID_AV1,
695  .priv_data_size = sizeof(Libdav1dContext),
696  .init = libdav1d_init,
697  .close = libdav1d_close,
701  .caps_internal = FF_CODEC_CAP_SETS_FRAME_PROPS |
703  .p.priv_class = &libdav1d_class,
704  .p.wrapper_name = "libdav1d",
705 };
Libdav1dContext::c
Dav1dContext * c
Definition: libdav1d.c:45
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:426
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:47
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:280
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:241
AV_LOG_WARNING
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition: log.h:186
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:64
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:76
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
OpaqueData
Definition: libdav1d.c:299
AVColorTransferCharacteristic
AVColorTransferCharacteristic
Color Transfer Characteristic.
Definition: pixfmt.h:570
libdav1d_class
static const AVClass libdav1d_class
Definition: libdav1d.c:683
GetByteContext
Definition: bytestream.h:33
AVBufferPool
The buffer pool.
Definition: buffer_internal.h:88
FF_API_REORDERED_OPAQUE
#define FF_API_REORDERED_OPAQUE
Definition: version.h:114
AVERROR_EOF
#define AVERROR_EOF
End of file.
Definition: error.h:57
OpaqueData::pkt_orig_opaque
void * pkt_orig_opaque
Definition: libdav1d.c:300
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
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:102
AVFilmGrainParams::aom
AVFilmGrainAOMParams aom
Definition: film_grain_params.h:236
AVFrame
This structure describes decoded (raw) audio or video data.
Definition: frame.h:340
AVFrame::width
int width
Definition: frame.h:412
w
uint8_t w
Definition: llviddspenc.c:38
AVCOL_RANGE_JPEG
@ AVCOL_RANGE_JPEG
Full range content.
Definition: pixfmt.h:673
internal.h
AVPacket::data
uint8_t * data
Definition: packet.h:491
AVFilmGrainParams::codec
union AVFilmGrainParams::@337 codec
Additional fields may be added both here and in any structure included.
AVOption
AVOption.
Definition: opt.h:251
data
const char data[16]
Definition: mxf.c:148
AV_PIX_FMT_YUV420P10
#define AV_PIX_FMT_YUV420P10
Definition: pixfmt.h:468
FFCodec
Definition: codec_internal.h:127
libdav1d_user_data_free
static void libdav1d_user_data_free(const uint8_t *data, void *opaque)
Definition: libdav1d.c:312
AVFrame::flags
int flags
Frame flags, a combination of AV_FRAME_FLAGS.
Definition: frame.h:649
FFMAX
#define FFMAX(a, b)
Definition: macros.h:47
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:545
AVFrame::buf
AVBufferRef * buf[AV_NUM_DATA_POINTERS]
AVBuffer references backing the data for this frame.
Definition: frame.h:590
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:94
av_packet_free
void av_packet_free(AVPacket **pkt)
Free the packet, if the packet is reference counted, it will be unreferenced first.
Definition: avpacket.c:74
AVFilmGrainParams::seed
uint64_t seed
Seed to use for the synthesis process, if the codec allows for it.
Definition: film_grain_params.h:228
AVFrame::data
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: frame.h:361
AVContentLightMetadata
Content light level needed by to transmit HDR over HDMI (CTA-861.3).
Definition: mastering_display_metadata.h:98
av1_parse.h
AV_CODEC_FLAG_COPY_OPAQUE
#define AV_CODEC_FLAG_COPY_OPAQUE
Definition: avcodec.h:295
FFCodec::p
AVCodec p
The public AVCodec.
Definition: codec_internal.h:131
fail
#define fail()
Definition: checkasm.h:138
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:484
libdav1d_init_params
static void libdav1d_init_params(AVCodecContext *c, const Dav1dSequenceHeader *seq)
Definition: libdav1d.c:131
libdav1d_init
static av_cold int libdav1d_init(AVCodecContext *c)
Definition: libdav1d.c:207
AV_CODEC_FLAG_LOW_DELAY
#define AV_CODEC_FLAG_LOW_DELAY
Force low delay.
Definition: avcodec.h:330
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:1439
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:52
Libdav1dContext::tile_threads
int tile_threads
Definition: libdav1d.c:50
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
AVRational::num
int num
Numerator.
Definition: rational.h:59
AV_PIX_FMT_YUV444P10
#define AV_PIX_FMT_YUV444P10
Definition: pixfmt.h:471
DAV1D_MAX_FRAME_THREADS
#define DAV1D_MAX_FRAME_THREADS
Definition: libdav1d.c:662
avassert.h
ceil
static __device__ float ceil(float a)
Definition: cuda_runtime.h:176
pkt
AVPacket * pkt
Definition: movenc.c:59
AV_LOG_ERROR
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:180
film_grain_params.h
av_cold
#define av_cold
Definition: attributes.h:90
AV_FRAME_FLAG_KEY
#define AV_FRAME_FLAG_KEY
A flag to mark frames that are keyframes.
Definition: frame.h:628
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:384
AVFrame::reordered_opaque
attribute_deprecated int64_t reordered_opaque
reordered opaque 64 bits (generally an integer or a double precision float PTS but can be anything).
Definition: frame.h:561
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
format
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 format(the sample packing is implied by the sample format) and sample rate. The lists are not just lists
floor
static __device__ float floor(float a)
Definition: cuda_runtime.h:173
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:124
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:31
GetByteContext::buffer
const uint8_t * buffer
Definition: bytestream.h:34
init
int(* init)(AVBSFContext *ctx)
Definition: dts2pts_bsf.c:365
av_assert0
#define av_assert0(cond)
assert() equivalent, that is always enabled.
Definition: avassert.h:40
AV_LOG_DEBUG
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
Definition: log.h:201
libdav1d_receive_frame_internal
static int libdav1d_receive_frame_internal(AVCodecContext *c, Dav1dPicture *p)
Definition: libdav1d.c:319
decode.h
Libdav1dContext
Definition: libdav1d.c:43
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:66
AVPacket::opaque
void * opaque
for some private data of the user
Definition: packet.h:516
CODEC_LONG_NAME
#define CODEC_LONG_NAME(str)
Definition: codec_internal.h:272
frame
static AVFrame * frame
Definition: demux_decode.c:54
FF_CODEC_PROPERTY_FILM_GRAIN
#define FF_CODEC_PROPERTY_FILM_GRAIN
Definition: avcodec.h:1907
AV_PIX_FMT_GRAY10
#define AV_PIX_FMT_GRAY10
Definition: pixfmt.h:449
if
if(ret)
Definition: filter_design.txt:179
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:68
AVPacket::buf
AVBufferRef * buf
A reference to the reference-counted buffer where the packet data is stored.
Definition: packet.h:474
LIBAVUTIL_VERSION_INT
#define LIBAVUTIL_VERSION_INT
Definition: version.h:85
AVClass
Describe the class of an AVClass context structure.
Definition: log.h:66
NULL
#define NULL
Definition: coverity.c:32
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:283
AVCHROMA_LOC_LEFT
@ AVCHROMA_LOC_LEFT
MPEG-2/4 4:2:0, H.264 default for 4:2:0.
Definition: pixfmt.h:694
AVCHROMA_LOC_TOPLEFT
@ AVCHROMA_LOC_TOPLEFT
ITU-R 601, SMPTE 274M 296M S314M(DV 4:1:1), mpeg2 4:2:2.
Definition: pixfmt.h:696
av_default_item_name
const char * av_default_item_name(void *ptr)
Return the context name.
Definition: log.c:237
AV_PICTURE_TYPE_I
@ AV_PICTURE_TYPE_I
Intra.
Definition: avutil.h:279
av_buffer_pool_uninit
void av_buffer_pool_uninit(AVBufferPool **ppool)
Mark the pool as being available for freeing.
Definition: buffer.c:322
libdav1d_picture_release
static void libdav1d_picture_release(Dav1dPicture *p, void *cookie)
Definition: libdav1d.c:124
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:109
av_frame_new_side_data_from_buf
AVFrameSideData * av_frame_new_side_data_from_buf(AVFrame *frame, enum AVFrameSideDataType type, AVBufferRef *buf)
Add a new side data to a frame from an existing AVBufferRef.
Definition: frame.c:780
AVFrame::pkt_dts
int64_t pkt_dts
DTS copied from the AVPacket that triggered returning this frame.
Definition: frame.h:459
AV_PIX_FMT_YUV422P10
#define AV_PIX_FMT_YUV422P10
Definition: pixfmt.h:469
AV_PIX_FMT_GRAY8
@ AV_PIX_FMT_GRAY8
Y , 8bpp.
Definition: pixfmt.h:74
AV_PICTURE_TYPE_SP
@ AV_PICTURE_TYPE_SP
Switching Predicted.
Definition: avutil.h:284
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
bytestream2_get_bytes_left
static av_always_inline int bytestream2_get_bytes_left(GetByteContext *g)
Definition: bytestream.h:158
av_cpu_count
int av_cpu_count(void)
Definition: cpu.c:209
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:668
Libdav1dContext::data
Dav1dData data
Definition: libdav1d.c:49
AVDISCARD_NONKEY
@ AVDISCARD_NONKEY
discard all frames except keyframes
Definition: defs.h:218
AVFrame::pict_type
enum AVPictureType pict_type
Picture type of the frame.
Definition: frame.h:442
AVPacket::size
int size
Definition: packet.h:492
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:46
libdav1d_log_callback
static void libdav1d_log_callback(void *opaque, const char *fmt, va_list vl)
Definition: libdav1d.c:69
codec_internal.h
cpu.h
pix_fmt_rgb
static enum AVPixelFormat pix_fmt_rgb[3]
Definition: libdav1d.c:65
libdav1d_receive_frame
static int libdav1d_receive_frame(AVCodecContext *c, AVFrame *frame)
Definition: libdav1d.c:406
OFFSET
#define OFFSET(x)
Definition: libdav1d.c:671
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:78
AV_PIX_FMT_YUV422P12
#define AV_PIX_FMT_YUV422P12
Definition: pixfmt.h:473
av_make_q
static AVRational av_make_q(int num, int den)
Create an AVRational.
Definition: rational.h:71
AV_NOPTS_VALUE
#define AV_NOPTS_VALUE
Undefined timestamp value.
Definition: avutil.h:248
MKBETAG
#define MKBETAG(a, b, c, d)
Definition: macros.h:56
AV_PIX_FMT_YUV444P12
#define AV_PIX_FMT_YUV444P12
Definition: pixfmt.h:475
AVFilmGrainParams
This structure describes how to handle film grain synthesis in video for specific codecs.
Definition: film_grain_params.h:216
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
av_content_light_metadata_create_side_data
AVContentLightMetadata * av_content_light_metadata_create_side_data(AVFrame *frame)
Allocate a complete AVContentLightMetadata and add it to the frame.
Definition: mastering_display_metadata.c:55
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: avpacket.c:63
version
version
Definition: libkvazaar.c:321
AVFilmGrainAOMParams::ar_coeffs_y
int8_t ar_coeffs_y[24]
Luma auto-regression coefficients.
Definition: film_grain_params.h:80
AV_LOG_INFO
#define AV_LOG_INFO
Standard information.
Definition: log.h:191
ff_libdav1d_decoder
const FFCodec ff_libdav1d_decoder
Definition: libdav1d.c:690
AVDISCARD_NONINTRA
@ AVDISCARD_NONINTRA
discard all non intra frames
Definition: defs.h:217
i
#define i(width, name, range_min, range_max)
Definition: cbs_h2645.c:255
AVPacket::pts
int64_t pts
Presentation timestamp in AVStream->time_base units; the time at which the decompressed packet will b...
Definition: packet.h:484
AV_PIX_FMT_GBRP12
#define AV_PIX_FMT_GBRP12
Definition: pixfmt.h:485
AVColorSpace
AVColorSpace
YUV colorspace type.
Definition: pixfmt.h:599
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:622
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:254
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:194
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:656
Libdav1dContext::apply_grain
int apply_grain
Definition: libdav1d.c:53
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
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:71
atsc_a53.h
AVFrame::sample_aspect_ratio
AVRational sample_aspect_ratio
Sample aspect ratio for the video frame, 0/1 if unknown/unspecified.
Definition: frame.h:447
AV_PIX_FMT_YUV420P12
#define AV_PIX_FMT_YUV420P12
Definition: pixfmt.h:472
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:1504
AVCodecContext
main external API structure.
Definition: avcodec.h:441
AVFrame::height
int height
Definition: frame.h:412
AVFilmGrainAOMParams::ar_coeff_lag
int ar_coeff_lag
Specifies the auto-regression lag.
Definition: film_grain_params.h:74
FF_CODEC_RECEIVE_FRAME_CB
#define FF_CODEC_RECEIVE_FRAME_CB(func)
Definition: codec_internal.h:312
av_mastering_display_metadata_create_side_data
AVMasteringDisplayMetadata * av_mastering_display_metadata_create_side_data(AVFrame *frame)
Allocate a complete AVMasteringDisplayMetadata and add it to the frame.
Definition: mastering_display_metadata.c:32
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
AVRational::den
int den
Denominator.
Definition: rational.h:60
pix_fmt
static enum AVPixelFormat pix_fmt[][3]
Definition: libdav1d.c:58
AV_PIX_FMT_NONE
@ AV_PIX_FMT_NONE
Definition: pixfmt.h:65
AV_OPT_TYPE_INT
@ AV_OPT_TYPE_INT
Definition: opt.h:225
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
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
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:1906
Libdav1dContext::frame_threads
int frame_threads
Definition: libdav1d.c:51
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:71
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:158
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:673
AV_PICTURE_TYPE_P
@ AV_PICTURE_TYPE_P
Predicted.
Definition: avutil.h:280
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:201
libdav1d_flush
static void libdav1d_flush(AVCodecContext *c)
Definition: libdav1d.c:291
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:70
flush
void(* flush)(AVBSFContext *ctx)
Definition: dts2pts_bsf.c:367
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:73
mastering_display_metadata.h
av_free
#define av_free(p)
Definition: tableprint_vlc.h:33
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:306
AVContentLightMetadata::MaxFALL
unsigned MaxFALL
Max average light level per frame (cd/m^2).
Definition: mastering_display_metadata.h:107
AVPacket
This structure stores compressed data.
Definition: packet.h:468
AV_OPT_TYPE_BOOL
@ AV_OPT_TYPE_BOOL
Definition: opt.h:244
av_freep
#define av_freep(p)
Definition: tableprint_vlc.h:34
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:54
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
AVFrame::linesize
int linesize[AV_NUM_DATA_POINTERS]
For video, a positive or negative value, which is typically indicating the size in bytes of each pict...
Definition: frame.h:385
av_log
#define av_log(a,...)
Definition: tableprint_vlc.h:27
AVERROR_INVALIDDATA
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:61
Libdav1dContext::all_layers
int all_layers
Definition: libdav1d.c:55
h
h
Definition: vp9dsp_template.c:2038
AV_PIX_FMT_GRAY12
#define AV_PIX_FMT_GRAY12
Definition: pixfmt.h:450
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:215
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:672
AVFilmGrainParams::type
enum AVFilmGrainParamsType type
Specifies the codec for which this structure is valid.
Definition: film_grain_params.h:220
DAV1D_MAX_TILE_THREADS
#define DAV1D_MAX_TILE_THREADS
Definition: libdav1d.c:665
AV_CODEC_EXPORT_DATA_FILM_GRAIN
#define AV_CODEC_EXPORT_DATA_FILM_GRAIN
Decoding only.
Definition: avcodec.h:416
libdav1d_parse_extradata
static av_cold int libdav1d_parse_extradata(AVCodecContext *c)
Definition: libdav1d.c:168
AVFilmGrainAOMParams::ar_coeff_shift
int ar_coeff_shift
Specifies the range of the auto-regressive coefficients.
Definition: film_grain_params.h:93
libdav1d_close
static av_cold int libdav1d_close(AVCodecContext *c)
Definition: libdav1d.c:650
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:298
AVFilmGrainAOMParams::ar_coeffs_uv
int8_t ar_coeffs_uv[2][25]
Chroma auto-regression coefficients.
Definition: film_grain_params.h:86