Libav
avfilter.c
Go to the documentation of this file.
1 /*
2  * filter layer
3  * Copyright (c) 2007 Bobby Bingham
4  *
5  * This file is part of Libav.
6  *
7  * Libav 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  * Libav 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 Libav; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21 
22 #include "libavutil/avstring.h"
24 #include "libavutil/common.h"
25 #include "libavutil/imgutils.h"
26 #include "libavutil/internal.h"
27 #include "libavutil/opt.h"
28 #include "libavutil/pixdesc.h"
29 #include "libavutil/rational.h"
30 #include "libavutil/samplefmt.h"
31 
32 #include "audio.h"
33 #include "avfilter.h"
34 #include "formats.h"
35 #include "internal.h"
36 #include "video.h"
37 
38 unsigned avfilter_version(void)
39 {
41 }
42 
43 const char *avfilter_configuration(void)
44 {
45  return LIBAV_CONFIGURATION;
46 }
47 
48 const char *avfilter_license(void)
49 {
50 #define LICENSE_PREFIX "libavfilter license: "
51  return LICENSE_PREFIX LIBAV_LICENSE + sizeof(LICENSE_PREFIX) - 1;
52 }
53 
54 void ff_insert_pad(unsigned idx, unsigned *count, size_t padidx_off,
55  AVFilterPad **pads, AVFilterLink ***links,
56  AVFilterPad *newpad)
57 {
58  unsigned i;
59 
60  idx = FFMIN(idx, *count);
61 
62  *pads = av_realloc(*pads, sizeof(AVFilterPad) * (*count + 1));
63  *links = av_realloc(*links, sizeof(AVFilterLink*) * (*count + 1));
64  memmove(*pads + idx + 1, *pads + idx, sizeof(AVFilterPad) * (*count - idx));
65  memmove(*links + idx + 1, *links + idx, sizeof(AVFilterLink*) * (*count - idx));
66  memcpy(*pads + idx, newpad, sizeof(AVFilterPad));
67  (*links)[idx] = NULL;
68 
69  (*count)++;
70  for (i = idx + 1; i < *count; i++)
71  if (*links[i])
72  (*(unsigned *)((uint8_t *) *links[i] + padidx_off))++;
73 }
74 
75 int avfilter_link(AVFilterContext *src, unsigned srcpad,
76  AVFilterContext *dst, unsigned dstpad)
77 {
78  AVFilterLink *link;
79 
80  if (src->nb_outputs <= srcpad || dst->nb_inputs <= dstpad ||
81  src->outputs[srcpad] || dst->inputs[dstpad])
82  return -1;
83 
84  if (src->output_pads[srcpad].type != dst->input_pads[dstpad].type) {
85  av_log(src, AV_LOG_ERROR,
86  "Media type mismatch between the '%s' filter output pad %d and the '%s' filter input pad %d\n",
87  src->name, srcpad, dst->name, dstpad);
88  return AVERROR(EINVAL);
89  }
90 
91  link = av_mallocz(sizeof(*link));
92  if (!link)
93  return AVERROR(ENOMEM);
94 
95  src->outputs[srcpad] = dst->inputs[dstpad] = link;
96 
97  link->src = src;
98  link->dst = dst;
99  link->srcpad = &src->output_pads[srcpad];
100  link->dstpad = &dst->input_pads[dstpad];
101  link->type = src->output_pads[srcpad].type;
102  assert(AV_PIX_FMT_NONE == -1 && AV_SAMPLE_FMT_NONE == -1);
103  link->format = -1;
104 
105  return 0;
106 }
107 
109  unsigned filt_srcpad_idx, unsigned filt_dstpad_idx)
110 {
111  int ret;
112  unsigned dstpad_idx = link->dstpad - link->dst->input_pads;
113 
114  av_log(link->dst, AV_LOG_VERBOSE, "auto-inserting filter '%s' "
115  "between the filter '%s' and the filter '%s'\n",
116  filt->name, link->src->name, link->dst->name);
117 
118  link->dst->inputs[dstpad_idx] = NULL;
119  if ((ret = avfilter_link(filt, filt_dstpad_idx, link->dst, dstpad_idx)) < 0) {
120  /* failed to link output filter to new filter */
121  link->dst->inputs[dstpad_idx] = link;
122  return ret;
123  }
124 
125  /* re-hookup the link to the new destination filter we inserted */
126  link->dst = filt;
127  link->dstpad = &filt->input_pads[filt_srcpad_idx];
128  filt->inputs[filt_srcpad_idx] = link;
129 
130  /* if any information on supported media formats already exists on the
131  * link, we need to preserve that */
132  if (link->out_formats)
134  &filt->outputs[filt_dstpad_idx]->out_formats);
135  if (link->out_samplerates)
137  &filt->outputs[filt_dstpad_idx]->out_samplerates);
138  if (link->out_channel_layouts)
140  &filt->outputs[filt_dstpad_idx]->out_channel_layouts);
141 
142  return 0;
143 }
144 
146 {
147  int (*config_link)(AVFilterLink *);
148  unsigned i;
149  int ret;
150 
151  for (i = 0; i < filter->nb_inputs; i ++) {
152  AVFilterLink *link = filter->inputs[i];
153 
154  if (!link) continue;
155  if (!link->src || !link->dst) {
156  av_log(filter, AV_LOG_ERROR,
157  "Not all input and output are properly linked (%d).\n", i);
158  return AVERROR(EINVAL);
159  }
160 
161  switch (link->init_state) {
162  case AVLINK_INIT:
163  continue;
164  case AVLINK_STARTINIT:
165  av_log(filter, AV_LOG_INFO, "circular filter chain detected\n");
166  return 0;
167  case AVLINK_UNINIT:
168  link->init_state = AVLINK_STARTINIT;
169 
170  if ((ret = avfilter_config_links(link->src)) < 0)
171  return ret;
172 
173  if (!(config_link = link->srcpad->config_props)) {
174  if (link->src->nb_inputs != 1) {
175  av_log(link->src, AV_LOG_ERROR, "Source filters and filters "
176  "with more than one input "
177  "must set config_props() "
178  "callbacks on all outputs\n");
179  return AVERROR(EINVAL);
180  }
181  } else if ((ret = config_link(link)) < 0) {
182  av_log(link->src, AV_LOG_ERROR,
183  "Failed to configure output pad on %s\n",
184  link->src->name);
185  return ret;
186  }
187 
188  if (link->time_base.num == 0 && link->time_base.den == 0)
189  link->time_base = link->src->nb_inputs ?
190  link->src->inputs[0]->time_base : AV_TIME_BASE_Q;
191 
192  if (link->type == AVMEDIA_TYPE_VIDEO) {
193  if (!link->sample_aspect_ratio.num && !link->sample_aspect_ratio.den)
194  link->sample_aspect_ratio = link->src->nb_inputs ?
195  link->src->inputs[0]->sample_aspect_ratio : (AVRational){1,1};
196 
197  if (link->src->nb_inputs) {
198  if (!link->w)
199  link->w = link->src->inputs[0]->w;
200  if (!link->h)
201  link->h = link->src->inputs[0]->h;
202  } else if (!link->w || !link->h) {
203  av_log(link->src, AV_LOG_ERROR,
204  "Video source filters must set their output link's "
205  "width and height\n");
206  return AVERROR(EINVAL);
207  }
208  }
209 
210  if ((config_link = link->dstpad->config_props))
211  if ((ret = config_link(link)) < 0) {
212  av_log(link->dst, AV_LOG_ERROR,
213  "Failed to configure input pad on %s\n",
214  link->dst->name);
215  return ret;
216  }
217 
218  link->init_state = AVLINK_INIT;
219  }
220  }
221 
222  return 0;
223 }
224 
225 void ff_dlog_link(void *ctx, AVFilterLink *link, int end)
226 {
227  if (link->type == AVMEDIA_TYPE_VIDEO) {
228  av_dlog(ctx,
229  "link[%p s:%dx%d fmt:%-16s %-16s->%-16s]%s",
230  link, link->w, link->h,
232  link->src ? link->src->filter->name : "",
233  link->dst ? link->dst->filter->name : "",
234  end ? "\n" : "");
235  } else {
236  char buf[128];
237  av_get_channel_layout_string(buf, sizeof(buf), -1, link->channel_layout);
238 
239  av_dlog(ctx,
240  "link[%p r:%d cl:%s fmt:%-16s %-16s->%-16s]%s",
241  link, link->sample_rate, buf,
243  link->src ? link->src->filter->name : "",
244  link->dst ? link->dst->filter->name : "",
245  end ? "\n" : "");
246  }
247 }
248 
250 {
252 
253  if (link->srcpad->request_frame)
254  return link->srcpad->request_frame(link);
255  else if (link->src->inputs[0])
256  return ff_request_frame(link->src->inputs[0]);
257  else return -1;
258 }
259 
261 {
262  int i, min = INT_MAX;
263 
264  if (link->srcpad->poll_frame)
265  return link->srcpad->poll_frame(link);
266 
267  for (i = 0; i < link->src->nb_inputs; i++) {
268  int val;
269  if (!link->src->inputs[i])
270  return -1;
271  val = ff_poll_frame(link->src->inputs[i]);
272  min = FFMIN(min, val);
273  }
274 
275  return min;
276 }
277 
279 
280 #if !FF_API_NOCONST_GET_NAME
281 const
282 #endif
284 {
285  const AVFilter *f = NULL;
286 
287  if (!name)
288  return NULL;
289 
290  while ((f = avfilter_next(f)))
291  if (!strcmp(f->name, name))
292  return f;
293 
294  return NULL;
295 }
296 
298 {
299  AVFilter **f = &first_filter;
300  while (*f)
301  f = &(*f)->next;
302  *f = filter;
303  filter->next = NULL;
304  return 0;
305 }
306 
307 const AVFilter *avfilter_next(const AVFilter *prev)
308 {
309  return prev ? prev->next : first_filter;
310 }
311 
312 #if FF_API_OLD_FILTER_REGISTER
314 {
315  return filter ? &(*filter)->next : &first_filter;
316 }
317 
318 void avfilter_uninit(void)
319 {
320 }
321 #endif
322 
324 {
325  int count;
326 
327  if (!pads)
328  return 0;
329 
330  for (count = 0; pads->name; count++)
331  pads++;
332  return count;
333 }
334 
335 static const char *filter_name(void *p)
336 {
337  AVFilterContext *filter = p;
338  return filter->filter->name;
339 }
340 
341 static void *filter_child_next(void *obj, void *prev)
342 {
343  AVFilterContext *ctx = obj;
344  if (!prev && ctx->filter && ctx->filter->priv_class && ctx->priv)
345  return ctx->priv;
346  return NULL;
347 }
348 
349 static const AVClass *filter_child_class_next(const AVClass *prev)
350 {
351  const AVFilter *f = NULL;
352 
353  while (prev && (f = avfilter_next(f)))
354  if (f->priv_class == prev)
355  break;
356 
357  while ((f = avfilter_next(f)))
358  if (f->priv_class)
359  return f->priv_class;
360 
361  return NULL;
362 }
363 
364 #define OFFSET(x) offsetof(AVFilterContext, x)
365 #define FLAGS AV_OPT_FLAG_VIDEO_PARAM
366 static const AVOption avfilter_options[] = {
367  { "thread_type", "Allowed thread types", OFFSET(thread_type), AV_OPT_TYPE_FLAGS,
368  { .i64 = AVFILTER_THREAD_SLICE }, 0, INT_MAX, FLAGS, "thread_type" },
369  { "slice", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AVFILTER_THREAD_SLICE }, .unit = "thread_type" },
370  { NULL },
371 };
372 
373 static const AVClass avfilter_class = {
374  .class_name = "AVFilter",
375  .item_name = filter_name,
376  .version = LIBAVUTIL_VERSION_INT,
377  .child_next = filter_child_next,
378  .child_class_next = filter_child_class_next,
380 };
381 
382 static int default_execute(AVFilterContext *ctx, avfilter_action_func *func, void *arg,
383  int *ret, int nb_jobs)
384 {
385  int i;
386 
387  for (i = 0; i < nb_jobs; i++) {
388  int r = func(ctx, arg, i, nb_jobs);
389  if (ret)
390  ret[i] = r;
391  }
392  return 0;
393 }
394 
395 AVFilterContext *ff_filter_alloc(const AVFilter *filter, const char *inst_name)
396 {
397  AVFilterContext *ret;
398 
399  if (!filter)
400  return NULL;
401 
402  ret = av_mallocz(sizeof(AVFilterContext));
403  if (!ret)
404  return NULL;
405 
406  ret->av_class = &avfilter_class;
407  ret->filter = filter;
408  ret->name = inst_name ? av_strdup(inst_name) : NULL;
409  if (filter->priv_size) {
410  ret->priv = av_mallocz(filter->priv_size);
411  if (!ret->priv)
412  goto err;
413  }
414 
415  av_opt_set_defaults(ret);
416  if (filter->priv_class) {
417  *(const AVClass**)ret->priv = filter->priv_class;
419  }
420 
421  ret->internal = av_mallocz(sizeof(*ret->internal));
422  if (!ret->internal)
423  goto err;
425 
426  ret->nb_inputs = avfilter_pad_count(filter->inputs);
427  if (ret->nb_inputs ) {
428  ret->input_pads = av_malloc(sizeof(AVFilterPad) * ret->nb_inputs);
429  if (!ret->input_pads)
430  goto err;
431  memcpy(ret->input_pads, filter->inputs, sizeof(AVFilterPad) * ret->nb_inputs);
432  ret->inputs = av_mallocz(sizeof(AVFilterLink*) * ret->nb_inputs);
433  if (!ret->inputs)
434  goto err;
435  }
436 
437  ret->nb_outputs = avfilter_pad_count(filter->outputs);
438  if (ret->nb_outputs) {
439  ret->output_pads = av_malloc(sizeof(AVFilterPad) * ret->nb_outputs);
440  if (!ret->output_pads)
441  goto err;
442  memcpy(ret->output_pads, filter->outputs, sizeof(AVFilterPad) * ret->nb_outputs);
443  ret->outputs = av_mallocz(sizeof(AVFilterLink*) * ret->nb_outputs);
444  if (!ret->outputs)
445  goto err;
446  }
447 #if FF_API_FOO_COUNT
449  ret->output_count = ret->nb_outputs;
450  ret->input_count = ret->nb_inputs;
452 #endif
453 
454  return ret;
455 
456 err:
457  av_freep(&ret->inputs);
458  av_freep(&ret->input_pads);
459  ret->nb_inputs = 0;
460  av_freep(&ret->outputs);
461  av_freep(&ret->output_pads);
462  ret->nb_outputs = 0;
463  av_freep(&ret->priv);
464  av_freep(&ret->internal);
465  av_free(ret);
466  return NULL;
467 }
468 
469 #if FF_API_AVFILTER_OPEN
470 int avfilter_open(AVFilterContext **filter_ctx, AVFilter *filter, const char *inst_name)
471 {
472  *filter_ctx = ff_filter_alloc(filter, inst_name);
473  return *filter_ctx ? 0 : AVERROR(ENOMEM);
474 }
475 #endif
476 
477 static void free_link(AVFilterLink *link)
478 {
479  if (!link)
480  return;
481 
482  if (link->src)
483  link->src->outputs[link->srcpad - link->src->output_pads] = NULL;
484  if (link->dst)
485  link->dst->inputs[link->dstpad - link->dst->input_pads] = NULL;
486 
493  av_freep(&link);
494 }
495 
497 {
498  int i;
499 
500  if (filter->graph)
501  ff_filter_graph_remove_filter(filter->graph, filter);
502 
503  if (filter->filter->uninit)
504  filter->filter->uninit(filter);
505 
506  for (i = 0; i < filter->nb_inputs; i++) {
507  free_link(filter->inputs[i]);
508  }
509  for (i = 0; i < filter->nb_outputs; i++) {
510  free_link(filter->outputs[i]);
511  }
512 
513  if (filter->filter->priv_class)
514  av_opt_free(filter->priv);
515 
516  av_freep(&filter->name);
517  av_freep(&filter->input_pads);
518  av_freep(&filter->output_pads);
519  av_freep(&filter->inputs);
520  av_freep(&filter->outputs);
521  av_freep(&filter->priv);
522  av_freep(&filter->internal);
523  av_free(filter);
524 }
525 
526 /* process a list of value1:value2:..., each value corresponding
527  * to subsequent AVOption, in the order they are declared */
529  const char *args)
530 {
531  const AVOption *o = NULL;
532  const char *p = args;
533  char *val;
534 
535  while (*p) {
536  o = av_opt_next(ctx->priv, o);
537  if (!o) {
538  av_log(ctx, AV_LOG_ERROR, "More options provided than "
539  "this filter supports.\n");
540  return AVERROR(EINVAL);
541  }
542  if (o->type == AV_OPT_TYPE_CONST)
543  continue;
544 
545  val = av_get_token(&p, ":");
546  if (!val)
547  return AVERROR(ENOMEM);
548 
549  av_dict_set(options, o->name, val, 0);
550 
551  av_freep(&val);
552  if (*p)
553  p++;
554  }
555 
556  return 0;
557 }
558 
559 #if FF_API_AVFILTER_INIT_FILTER
560 int avfilter_init_filter(AVFilterContext *filter, const char *args, void *opaque)
561 {
562  return avfilter_init_str(filter, args);
563 }
564 #endif
565 
567 {
568  int ret = 0;
569 
570  ret = av_opt_set_dict(ctx, options);
571  if (ret < 0) {
572  av_log(ctx, AV_LOG_ERROR, "Error applying generic filter options.\n");
573  return ret;
574  }
575 
578  ctx->graph->internal->thread_execute) {
581  } else {
582  ctx->thread_type = 0;
583  }
584 
585  if (ctx->filter->priv_class) {
586  ret = av_opt_set_dict(ctx->priv, options);
587  if (ret < 0) {
588  av_log(ctx, AV_LOG_ERROR, "Error applying options to the filter.\n");
589  return ret;
590  }
591  }
592 
593  if (ctx->filter->init)
594  ret = ctx->filter->init(ctx);
595  else if (ctx->filter->init_dict)
596  ret = ctx->filter->init_dict(ctx, options);
597 
598  return ret;
599 }
600 
601 int avfilter_init_str(AVFilterContext *filter, const char *args)
602 {
605  int ret = 0;
606 
607  if (args && *args) {
608  if (!filter->filter->priv_class) {
609  av_log(filter, AV_LOG_ERROR, "This filter does not take any "
610  "options, but options were provided: %s.\n", args);
611  return AVERROR(EINVAL);
612  }
613 
614 #if FF_API_OLD_FILTER_OPTS
615  if (!strcmp(filter->filter->name, "scale") &&
616  strchr(args, ':') && strchr(args, ':') < strchr(args, '=')) {
617  /* old w:h:flags=<flags> syntax */
618  char *copy = av_strdup(args);
619  char *p;
620 
621  av_log(filter, AV_LOG_WARNING, "The <w>:<h>:flags=<flags> option "
622  "syntax is deprecated. Use either <w>:<h>:<flags> or "
623  "w=<w>:h=<h>:flags=<flags>.\n");
624 
625  if (!copy) {
626  ret = AVERROR(ENOMEM);
627  goto fail;
628  }
629 
630  p = strrchr(copy, ':');
631  if (p) {
632  *p++ = 0;
633  ret = av_dict_parse_string(&options, p, "=", ":", 0);
634  }
635  if (ret >= 0)
636  ret = process_unnamed_options(filter, &options, copy);
637  av_freep(&copy);
638 
639  if (ret < 0)
640  goto fail;
641  } else
642 #endif
643 
644  if (strchr(args, '=')) {
645  /* assume a list of key1=value1:key2=value2:... */
646  ret = av_dict_parse_string(&options, args, "=", ":", 0);
647  if (ret < 0)
648  goto fail;
649 #if FF_API_OLD_FILTER_OPTS
650  } else if (!strcmp(filter->filter->name, "format") ||
651  !strcmp(filter->filter->name, "noformat") ||
652  !strcmp(filter->filter->name, "frei0r") ||
653  !strcmp(filter->filter->name, "frei0r_src") ||
654  !strcmp(filter->filter->name, "ocv")) {
655  /* a hack for compatibility with the old syntax
656  * replace colons with |s */
657  char *copy = av_strdup(args);
658  char *p = copy;
659  int nb_leading = 0; // number of leading colons to skip
660 
661  if (!copy) {
662  ret = AVERROR(ENOMEM);
663  goto fail;
664  }
665 
666  if (!strcmp(filter->filter->name, "frei0r") ||
667  !strcmp(filter->filter->name, "ocv"))
668  nb_leading = 1;
669  else if (!strcmp(filter->filter->name, "frei0r_src"))
670  nb_leading = 3;
671 
672  while (nb_leading--) {
673  p = strchr(p, ':');
674  if (!p) {
675  p = copy + strlen(copy);
676  break;
677  }
678  p++;
679  }
680 
681  if (strchr(p, ':')) {
682  av_log(filter, AV_LOG_WARNING, "This syntax is deprecated. Use "
683  "'|' to separate the list items.\n");
684  }
685 
686  while ((p = strchr(p, ':')))
687  *p++ = '|';
688 
689  ret = process_unnamed_options(filter, &options, copy);
690  av_freep(&copy);
691 
692  if (ret < 0)
693  goto fail;
694 #endif
695  } else {
696  ret = process_unnamed_options(filter, &options, args);
697  if (ret < 0)
698  goto fail;
699  }
700  }
701 
702  ret = avfilter_init_dict(filter, &options);
703  if (ret < 0)
704  goto fail;
705 
706  if ((e = av_dict_get(options, "", NULL, AV_DICT_IGNORE_SUFFIX))) {
707  av_log(filter, AV_LOG_ERROR, "No such option: %s.\n", e->key);
709  goto fail;
710  }
711 
712 fail:
713  av_dict_free(&options);
714 
715  return ret;
716 }
717 
718 const char *avfilter_pad_get_name(const AVFilterPad *pads, int pad_idx)
719 {
720  return pads[pad_idx].name;
721 }
722 
723 enum AVMediaType avfilter_pad_get_type(const AVFilterPad *pads, int pad_idx)
724 {
725  return pads[pad_idx].type;
726 }
727 
728 static int default_filter_frame(AVFilterLink *link, AVFrame *frame)
729 {
730  return ff_filter_frame(link->dst->outputs[0], frame);
731 }
732 
734 {
735  int (*filter_frame)(AVFilterLink *, AVFrame *);
736  AVFilterPad *dst = link->dstpad;
737  AVFrame *out = NULL;
738  int ret;
739 
741  ff_dlog_link(NULL, link, 1);
742 
743  if (!(filter_frame = dst->filter_frame))
745 
746  /* copy the frame if needed */
747  if (dst->needs_writable && !av_frame_is_writable(frame)) {
748  av_log(link->dst, AV_LOG_DEBUG, "Copying data in avfilter.\n");
749 
750  switch (link->type) {
751  case AVMEDIA_TYPE_VIDEO:
752  out = ff_get_video_buffer(link, link->w, link->h);
753  break;
754  case AVMEDIA_TYPE_AUDIO:
755  out = ff_get_audio_buffer(link, frame->nb_samples);
756  break;
757  default:
758  ret = AVERROR(EINVAL);
759  goto fail;
760  }
761  if (!out) {
762  ret = AVERROR(ENOMEM);
763  goto fail;
764  }
765 
766  ret = av_frame_copy_props(out, frame);
767  if (ret < 0)
768  goto fail;
769 
770  switch (link->type) {
771  case AVMEDIA_TYPE_VIDEO:
772  av_image_copy(out->data, out->linesize, frame->data, frame->linesize,
773  frame->format, frame->width, frame->height);
774  break;
775  case AVMEDIA_TYPE_AUDIO:
777  0, 0, frame->nb_samples,
779  frame->format);
780  break;
781  default:
782  ret = AVERROR(EINVAL);
783  goto fail;
784  }
785 
786  av_frame_free(&frame);
787  } else
788  out = frame;
789 
790  return filter_frame(link, out);
791 
792 fail:
793  av_frame_free(&out);
794  av_frame_free(&frame);
795  return ret;
796 }
797 
799 {
800  return &avfilter_class;
801 }
void * av_malloc(size_t size)
Allocate a block of size bytes with alignment suitable for all memory accesses (including vectors if ...
Definition: mem.c:62
AVFilterContext * ff_filter_alloc(const AVFilter *filter, const char *inst_name)
Allocate a new filter context and return it.
Definition: avfilter.c:395
This structure describes decoded (raw) audio or video data.
Definition: frame.h:135
int thread_type
Type of multithreading allowed for filters in this graph.
Definition: avfilter.h:969
static int default_filter_frame(AVFilterLink *link, AVFrame *frame)
Definition: avfilter.c:728
AVOption.
Definition: opt.h:234
void avfilter_free(AVFilterContext *filter)
Free a filter context.
Definition: avfilter.c:496
static const char * filter_name(void *p)
Definition: avfilter.c:335
misc image utilities
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition: log.h:129
Main libavfilter public API header.
void ff_channel_layouts_changeref(AVFilterChannelLayouts **oldref, AVFilterChannelLayouts **newref)
Definition: formats.c:325
void av_opt_set_defaults(void *s)
Set the values of all AVOption fields to their default values.
Definition: opt.c:546
enum AVMediaType avfilter_pad_get_type(const AVFilterPad *pads, int pad_idx)
Get the type of an AVFilterPad.
Definition: avfilter.c:723
int num
numerator
Definition: rational.h:44
#define LIBAV_CONFIGURATION
Definition: config.h:4
#define LIBAVFILTER_VERSION_INT
Definition: version.h:36
uint8_t pi<< 24) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_U8, uint8_t,(*(const uint8_t *) pi - 0x80) *(1.0f/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_U8, uint8_t,(*(const uint8_t *) pi - 0x80) *(1.0/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S16, int16_t,(*(const int16_t *) pi >> 8)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S16, int16_t, *(const int16_t *) pi *(1.0f/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S16, int16_t, *(const int16_t *) pi *(1.0/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S32, int32_t,(*(const int32_t *) pi >> 24)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S32, int32_t, *(const int32_t *) pi *(1.0f/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S32, int32_t, *(const int32_t *) pi *(1.0/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_FLT, float, av_clip_uint8(lrintf(*(const float *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_FLT, float, av_clip_int16(lrintf(*(const float *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_FLT, float, av_clipl_int32(llrintf(*(const float *) pi *(1U<< 31)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_DBL, double, av_clip_uint8(lrint(*(const double *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_DBL, double, av_clip_int16(lrint(*(const double *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_DBL, double, av_clipl_int32(llrint(*(const double *) pi *(1U<< 31)))) #define SET_CONV_FUNC_GROUP(ofmt, ifmt) static void set_generic_function(AudioConvert *ac) { } void ff_audio_convert_free(AudioConvert **ac) { if(! *ac) return;ff_dither_free(&(*ac) ->dc);av_freep(ac);} AudioConvert *ff_audio_convert_alloc(AVAudioResampleContext *avr, enum AVSampleFormat out_fmt, enum AVSampleFormat in_fmt, int channels, int sample_rate, int apply_map) { AudioConvert *ac;int in_planar, out_planar;ac=av_mallocz(sizeof(*ac));if(!ac) return NULL;ac->avr=avr;ac->out_fmt=out_fmt;ac->in_fmt=in_fmt;ac->channels=channels;ac->apply_map=apply_map;if(avr->dither_method !=AV_RESAMPLE_DITHER_NONE &&av_get_packed_sample_fmt(out_fmt)==AV_SAMPLE_FMT_S16 &&av_get_bytes_per_sample(in_fmt) > 2) { ac->dc=ff_dither_alloc(avr, out_fmt, in_fmt, channels, sample_rate, apply_map);if(!ac->dc) { av_free(ac);return NULL;} return ac;} in_planar=ff_sample_fmt_is_planar(in_fmt, channels);out_planar=ff_sample_fmt_is_planar(out_fmt, channels);if(in_planar==out_planar) { ac->func_type=CONV_FUNC_TYPE_FLAT;ac->planes=in_planar ? ac->channels :1;} else if(in_planar) ac->func_type=CONV_FUNC_TYPE_INTERLEAVE;else ac->func_type=CONV_FUNC_TYPE_DEINTERLEAVE;set_generic_function(ac);if(ARCH_AARCH64) ff_audio_convert_init_aarch64(ac);if(ARCH_ARM) ff_audio_convert_init_arm(ac);if(ARCH_X86) ff_audio_convert_init_x86(ac);return ac;} int ff_audio_convert(AudioConvert *ac, AudioData *out, AudioData *in) { int use_generic=1;int len=in->nb_samples;int p;if(ac->dc) { av_dlog(ac->avr, "%d samples - audio_convert: %s to %s (dithered)\", len, av_get_sample_fmt_name(ac->in_fmt), av_get_sample_fmt_name(ac->out_fmt));return ff_convert_dither(ac-> out
AVFrame * ff_get_video_buffer(AVFilterLink *link, int w, int h)
Request a picture buffer with a specific set of permissions.
Definition: video.c:104
int thread_type
Type of multithreading being allowed/used.
Definition: avfilter.h:604
void(* uninit)(AVFilterContext *ctx)
Filter uninitialization function.
Definition: avfilter.h:520
#define AVFILTER_THREAD_SLICE
Process multiple parts of the frame concurrently.
Definition: avfilter.h:558
void av_freep(void *arg)
Free a memory block which has been allocated with av_malloc(z)() or av_realloc() and set the pointer ...
Definition: mem.c:198
struct AVFilterGraph * graph
filtergraph this filter belongs to
Definition: avfilter.h:586
int(* init_dict)(AVFilterContext *ctx, AVDictionary **options)
Should be set instead of init by the filters that want to pass a dictionary of AVOptions to nested co...
Definition: avfilter.h:508
av_dlog(ac->avr, "%d samples - audio_convert: %s to %s (%s)\, len, av_get_sample_fmt_name(ac->in_fmt), av_get_sample_fmt_name(ac->out_fmt), use_generic ? ac->func_descr_generic :ac->func_descr)
int priv_size
size of private data to allocate for the filter
Definition: avfilter.h:546
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:38
AVFilterLink ** inputs
array of pointers to input links
Definition: avfilter.h:571
char * name
name of this filter instance
Definition: avfilter.h:568
const char * name
Definition: opt.h:235
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
Definition: avfilter.c:733
int avfilter_link(AVFilterContext *src, unsigned srcpad, AVFilterContext *dst, unsigned dstpad)
Link two filters together.
Definition: avfilter.c:75
AVFilterPad * output_pads
array of output pads
Definition: avfilter.h:577
void ff_dlog_link(void *ctx, AVFilterLink *link, int end)
Definition: avfilter.c:225
const char * avfilter_license(void)
Return the libavfilter license.
Definition: avfilter.c:48
uint8_t
AVOptions.
const struct AVOption * option
a pointer to the first option specified in the class if any or NULL
Definition: log.h:51
const char * name
int flags
A combination of AVFILTER_FLAG_*.
Definition: avfilter.h:464
AVDictionaryEntry * av_dict_get(const AVDictionary *m, const char *key, const AVDictionaryEntry *prev, int flags)
Get a dictionary entry with matching key.
Definition: dict.c:38
int avfilter_config_links(AVFilterContext *filter)
Negotiate the media format, dimensions, etc of all inputs to a filter.
Definition: avfilter.c:145
const AVFilter * avfilter_next(const AVFilter *prev)
Iterate over all registered filters.
Definition: avfilter.c:307
#define AV_LOG_VERBOSE
Detailed information.
Definition: log.h:139
static void copy(LZOContext *c, int cnt)
Copies bytes from input to output buffer with checking.
Definition: lzo.c:79
static void free_link(AVFilterLink *link)
Definition: avfilter.c:477
#define r
Definition: input.c:51
const OptionDef options[]
Definition: avconv_opt.c:2187
static const AVClass avfilter_class
Definition: avfilter.c:373
AVFilterPad * input_pads
array of input pads
Definition: avfilter.h:570
int width
width and height of the video frame
Definition: frame.h:174
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:123
void ff_formats_changeref(AVFilterFormats **oldref, AVFilterFormats **newref)
Before After |formats |<------—.
Definition: formats.c:331
void av_free(void *ptr)
Free a memory block which has been allocated with av_malloc(z)() or av_realloc(). ...
Definition: mem.c:186
int avfilter_init_filter(AVFilterContext *filter, const char *args, void *opaque)
Definition: avfilter.c:560
AVFrame * ff_get_audio_buffer(AVFilterLink *link, int nb_samples)
Request an audio samples buffer with a specific set of permissions.
Definition: audio.c:57
#define AVERROR(e)
Definition: error.h:43
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
Definition: frame.c:69
unsigned nb_outputs
number of output pads
Definition: avfilter.h:582
unsigned avfilter_version(void)
Return the LIBAVFILTER_VERSION_INT constant.
Definition: avfilter.c:38
void * priv
private data for use by the filter
Definition: avfilter.h:584
#define AVFILTER_FLAG_SLICE_THREADS
The filter supports multithreading by splitting frames into multiple parts and processing them concur...
Definition: avfilter.h:415
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
Definition: log.h:144
void av_dict_free(AVDictionary **pm)
Free all the memory allocated for an AVDictionary struct and all keys and values. ...
Definition: dict.c:170
int av_get_channel_layout_nb_channels(uint64_t channel_layout)
Return the number of channels in the channel layout.
const AVOption * av_opt_next(void *obj, const AVOption *last)
Iterate over all AVOptions belonging to obj.
Definition: opt.c:37
void av_log(void *avcl, int level, const char *fmt,...)
Definition: log.c:169
const char * av_get_sample_fmt_name(enum AVSampleFormat sample_fmt)
Return the name of sample_fmt, or NULL if sample_fmt is not recognized.
Definition: samplefmt.c:47
#define LIBAV_LICENSE
Definition: config.h:5
void av_image_copy(uint8_t *dst_data[4], int dst_linesizes[4], const uint8_t *src_data[4], const int src_linesizes[4], enum AVPixelFormat pix_fmt, int width, int height)
Copy image in src_data to dst_data.
Definition: imgutils.c:267
char * av_get_token(const char **buf, const char *term)
Unescape the given string until a non escaped terminating char, and return the token corresponding to...
Definition: avstring.c:121
void avfilter_uninit(void)
Definition: avfilter.c:318
uint64_t channel_layout
Channel layout of the audio data.
Definition: frame.h:381
AVFilter * avfilter_get_by_name(const char *name)
Get a filter definition matching the given name.
Definition: avfilter.c:283
common internal API header
static void filter(MpegAudioContext *s, int ch, const short *samples, int incr)
Definition: mpegaudioenc.c:307
static void * filter_child_next(void *obj, void *prev)
Definition: avfilter.c:341
audio channel layout utility functions
unsigned nb_inputs
number of input pads
Definition: avfilter.h:575
#define FFMIN(a, b)
Definition: common.h:57
static AVFilter * first_filter
Definition: avfilter.c:278
static const AVOption avfilter_options[]
Definition: avfilter.c:366
int(* init)(AVFilterContext *ctx)
Filter initialization function.
Definition: avfilter.h:495
int avfilter_open(AVFilterContext **filter_ctx, AVFilter *filter, const char *inst_name)
Definition: avfilter.c:470
AVFilter ** av_filter_next(AVFilter **filter)
Definition: avfilter.c:313
static int process_unnamed_options(AVFilterContext *ctx, AVDictionary **options, const char *args)
Definition: avfilter.c:528
LIBAVUTIL_VERSION_INT
Definition: eval.c:55
int( avfilter_action_func)(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
A function pointer passed to the AVFilterGraph::execute callback to be executed multiple times...
Definition: avfilter.h:923
int avfilter_init_str(AVFilterContext *filter, const char *args)
Initialize a filter with the supplied parameters.
Definition: avfilter.c:601
const AVFilterPad * inputs
List of inputs, terminated by a zeroed element.
Definition: avfilter.h:441
const AVClass * avfilter_get_class(void)
Definition: avfilter.c:798
int avfilter_insert_filter(AVFilterLink *link, AVFilterContext *filt, unsigned filt_srcpad_idx, unsigned filt_dstpad_idx)
Insert a filter in the middle of an existing link.
Definition: avfilter.c:108
int format
format of the frame, -1 if unknown or unset Values correspond to enum AVPixelFormat for video frames...
Definition: frame.h:186
int av_dict_parse_string(AVDictionary **pm, const char *str, const char *key_val_sep, const char *pairs_sep, int flags)
Parse the key/value pairs list and add to a dictionary.
Definition: dict.c:147
NULL
Definition: eval.c:55
const AVClass * priv_class
A class for the private data, used to declare filter private AVOptions.
Definition: avfilter.h:459
#define AV_LOG_INFO
Standard information.
Definition: log.h:134
#define AV_TIME_BASE_Q
Internal time base represented as fractional value.
Definition: avutil.h:240
AVFilterGraphInternal * internal
Opaque object for libavfilter internal use.
Definition: avfilter.h:981
int av_frame_is_writable(AVFrame *frame)
Check if the frame data is writable.
Definition: frame.c:309
int av_opt_set_dict(void *obj, AVDictionary **options)
Definition: opt.c:679
char * av_strdup(const char *s)
Duplicate the string s.
Definition: mem.c:213
AV_SAMPLE_FMT_NONE
Definition: avconv_filter.c:68
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line.
Definition: frame.h:153
void ff_channel_layouts_unref(AVFilterChannelLayouts **ref)
Remove a reference to a channel layouts list.
Definition: formats.c:307
int av_samples_copy(uint8_t **dst, uint8_t *const *src, int dst_offset, int src_offset, int nb_samples, int nb_channels, enum AVSampleFormat sample_fmt)
Copy samples from src to dst.
Definition: samplefmt.c:187
int av_dict_set(AVDictionary **pm, const char *key, const char *value, int flags)
Set the given entry in *pm, overwriting an existing entry.
Definition: dict.c:68
Describe the class of an AVClass context structure.
Definition: log.h:33
Filter definition.
Definition: avfilter.h:421
rational number numerator/denominator
Definition: rational.h:43
struct AVFilter * next
Used by the filter registration system.
Definition: avfilter.h:552
AVMediaType
Definition: avutil.h:185
void ff_formats_unref(AVFilterFormats **ref)
If *ref is non-NULL, remove *ref as a reference to the format list it currently points to...
Definition: formats.c:302
const char * name
Filter name.
Definition: avfilter.h:425
const char * avfilter_configuration(void)
Return the libavfilter build-time configuration.
Definition: avfilter.c:43
const char * avfilter_pad_get_name(const AVFilterPad *pads, int pad_idx)
Get the name of an AVFilterPad.
Definition: avfilter.c:718
#define FLAGS
Definition: avfilter.c:365
#define LICENSE_PREFIX
AVFilterLink ** outputs
array of pointers to output links
Definition: avfilter.h:578
static int filter_frame(AVFilterLink *inlink, AVFrame *buf)
Definition: af_amix.c:459
#define OFFSET(x)
Definition: avfilter.c:364
AVFilterInternal * internal
An opaque struct for libavfilter internal use.
Definition: avfilter.h:609
static int default_execute(AVFilterContext *ctx, avfilter_action_func *func, void *arg, int *ret, int nb_jobs)
Definition: avfilter.c:382
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: frame.h:141
int avfilter_init_dict(AVFilterContext *ctx, AVDictionary **options)
Initialize a filter with the supplied dictionary of options.
Definition: avfilter.c:566
void av_opt_free(void *obj)
Free all allocated objects in obj.
Definition: opt.c:659
#define FF_DISABLE_DEPRECATION_WARNINGS
Definition: internal.h:76
common internal and external API header
rational numbers
void * av_realloc(void *ptr, size_t size)
Allocate or reallocate a block of memory.
Definition: mem.c:117
static int request_frame(AVFilterLink *outlink)
Definition: af_amix.c:392
char * key
Definition: dict.h:75
int den
denominator
Definition: rational.h:45
avfilter_execute_func * execute
Definition: internal.h:137
struct AVFilterPad AVFilterPad
Definition: avfilter.h:67
void ff_filter_graph_remove_filter(AVFilterGraph *graph, AVFilterContext *filter)
Remove a filter from a graph;.
Definition: avfiltergraph.c:89
avfilter_execute_func * thread_execute
Definition: internal.h:133
#define AVERROR_OPTION_NOT_FOUND
Option not found.
Definition: error.h:56
#define FF_ENABLE_DEPRECATION_WARNINGS
Definition: internal.h:77
int avfilter_register(AVFilter *filter)
Register a filter.
Definition: avfilter.c:297
enum AVOptionType type
Definition: opt.h:248
const AVClass * av_class
needed for av_log()
Definition: avfilter.h:564
An instance of a filter.
Definition: avfilter.h:563
int avfilter_pad_count(const AVFilterPad *pads)
Get the number of elements in a NULL-terminated array of AVFilterPads (e.g.
Definition: avfilter.c:323
#define FF_DPRINTF_START(ctx, func)
Definition: internal.h:148
int height
Definition: frame.h:174
const AVFilterPad * outputs
List of outputs, terminated by a zeroed element.
Definition: avfilter.h:449
#define AV_DICT_IGNORE_SUFFIX
Definition: dict.h:62
void ff_insert_pad(unsigned idx, unsigned *count, size_t padidx_off, AVFilterPad **pads, AVFilterLink ***links, AVFilterPad *newpad)
Insert a new pad.
Definition: avfilter.c:54
int ff_request_frame(AVFilterLink *link)
Request an input frame from the filter at the other end of the link.
Definition: avfilter.c:249
const char * av_get_pix_fmt_name(enum AVPixelFormat pix_fmt)
Return the short name for a pixel format, NULL in case pix_fmt is unknown.
Definition: pixdesc.c:1540
static const AVClass * filter_child_class_next(const AVClass *prev)
Definition: avfilter.c:349
internal API functions
uint8_t ** extended_data
pointers to the data planes/channels.
Definition: frame.h:169
int ff_poll_frame(AVFilterLink *link)
Poll a frame from the filter chain.
Definition: avfilter.c:260
float min
int nb_samples
number of audio samples (per channel) described by this frame
Definition: frame.h:179
void * av_mallocz(size_t size)
Allocate a block of size bytes with alignment suitable for all memory accesses (including vectors if ...
Definition: mem.c:205
const AVFilter * filter
the AVFilter of which this is an instance
Definition: avfilter.h:566
int av_frame_copy_props(AVFrame *dst, const AVFrame *src)
Copy only "metadata" fields from src to dst.
Definition: frame.c:367
void av_get_channel_layout_string(char *buf, int buf_size, int nb_channels, uint64_t channel_layout)
Return a description of a channel layout.