FFmpeg
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 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 "libavutil/avassert.h"
23 #include "libavutil/avstring.h"
24 #include "libavutil/bprint.h"
25 #include "libavutil/buffer.h"
27 #include "libavutil/common.h"
28 #include "libavutil/eval.h"
29 #include "libavutil/frame.h"
30 #include "libavutil/hwcontext.h"
31 #include "libavutil/internal.h"
32 #include "libavutil/mem.h"
33 #include "libavutil/opt.h"
34 #include "libavutil/pixdesc.h"
35 #include "libavutil/rational.h"
36 #include "libavutil/samplefmt.h"
37 
38 #include "audio.h"
39 #include "avfilter.h"
40 #include "avfilter_internal.h"
41 #include "filters.h"
42 #include "formats.h"
43 #include "framequeue.h"
44 #include "framepool.h"
45 #include "video.h"
46 
47 static void tlog_ref(void *ctx, AVFrame *ref, int end)
48 {
49 #ifdef TRACE
50  ff_tlog(ctx,
51  "ref[%p buf:%p data:%p linesize[%d, %d, %d, %d] pts:%"PRId64,
52  ref, ref->buf, ref->data[0],
53  ref->linesize[0], ref->linesize[1], ref->linesize[2], ref->linesize[3],
54  ref->pts);
55 
56  if (ref->width) {
57  ff_tlog(ctx, " a:%d/%d s:%dx%d i:%c iskey:%d type:%c",
58  ref->sample_aspect_ratio.num, ref->sample_aspect_ratio.den,
59  ref->width, ref->height,
60  !(ref->flags & AV_FRAME_FLAG_INTERLACED) ? 'P' : /* Progressive */
61  (ref->flags & AV_FRAME_FLAG_TOP_FIELD_FIRST) ? 'T' : 'B', /* Top / Bottom */
62  !!(ref->flags & AV_FRAME_FLAG_KEY),
63  av_get_picture_type_char(ref->pict_type));
64  }
65  if (ref->nb_samples) {
66  AVBPrint bprint;
67 
69  av_channel_layout_describe_bprint(&ref->ch_layout, &bprint);
70  ff_tlog(ctx, " cl:%s n:%d r:%d",
71  bprint.str,
72  ref->nb_samples,
73  ref->sample_rate);
74  av_bprint_finalize(&bprint, NULL);
75  }
76 
77  ff_tlog(ctx, "]%s", end ? "\n" : "");
78 #endif
79 }
80 
82 {
85  av_freep(&c->arg);
86  av_freep(&c->command);
87  ctxi->command_queue = c->next;
88  av_free(c);
89 }
90 
91 /**
92  * Append a new pad.
93  *
94  * @param count Pointer to the number of pads in the list
95  * @param pads Pointer to the pointer to the beginning of the list of pads
96  * @param links Pointer to the pointer to the beginning of the list of links
97  * @param newpad The new pad to add. A copy is made when adding.
98  * @return >= 0 in case of success, a negative AVERROR code on error
99  */
100 static int append_pad(unsigned *count, AVFilterPad **pads,
101  AVFilterLink ***links, AVFilterPad *newpad)
102 {
103  AVFilterLink **newlinks;
104  AVFilterPad *newpads;
105  unsigned idx = *count;
106 
107  newpads = av_realloc_array(*pads, idx + 1, sizeof(*newpads));
108  newlinks = av_realloc_array(*links, idx + 1, sizeof(*newlinks));
109  if (newpads)
110  *pads = newpads;
111  if (newlinks)
112  *links = newlinks;
113  if (!newpads || !newlinks) {
114  if (newpad->flags & AVFILTERPAD_FLAG_FREE_NAME)
115  av_freep(&newpad->name);
116  return AVERROR(ENOMEM);
117  }
118 
119  memcpy(*pads + idx, newpad, sizeof(AVFilterPad));
120  (*links)[idx] = NULL;
121 
122  (*count)++;
123 
124  return 0;
125 }
126 
128 {
129  return append_pad(&f->nb_inputs, &f->input_pads, &f->inputs, p);
130 }
131 
133 {
135  return ff_append_inpad(f, p);
136 }
137 
139 {
140  return append_pad(&f->nb_outputs, &f->output_pads, &f->outputs, p);
141 }
142 
144 {
146  return ff_append_outpad(f, p);
147 }
148 
149 int avfilter_link(AVFilterContext *src, unsigned srcpad,
150  AVFilterContext *dst, unsigned dstpad)
151 {
152  FilterLinkInternal *li;
154 
155  av_assert0(src->graph);
156  av_assert0(dst->graph);
157  av_assert0(src->graph == dst->graph);
158 
159  if (src->nb_outputs <= srcpad || dst->nb_inputs <= dstpad ||
160  src->outputs[srcpad] || dst->inputs[dstpad])
161  return AVERROR(EINVAL);
162 
163  if (!(fffilterctx(src)->state_flags & AV_CLASS_STATE_INITIALIZED) ||
164  !(fffilterctx(dst)->state_flags & AV_CLASS_STATE_INITIALIZED)) {
165  av_log(src, AV_LOG_ERROR, "Filters must be initialized before linking.\n");
166  return AVERROR(EINVAL);
167  }
168 
169  if (src->output_pads[srcpad].type != dst->input_pads[dstpad].type) {
171  "Media type mismatch between the '%s' filter output pad %d (%s) and the '%s' filter input pad %d (%s)\n",
172  src->name, srcpad, (char *)av_x_if_null(av_get_media_type_string(src->output_pads[srcpad].type), "?"),
173  dst->name, dstpad, (char *)av_x_if_null(av_get_media_type_string(dst-> input_pads[dstpad].type), "?"));
174  return AVERROR(EINVAL);
175  }
176 
177  li = av_mallocz(sizeof(*li));
178  if (!li)
179  return AVERROR(ENOMEM);
180  link = &li->l.pub;
181 
182  src->outputs[srcpad] = dst->inputs[dstpad] = link;
183 
184  link->src = src;
185  link->dst = dst;
186  link->srcpad = &src->output_pads[srcpad];
187  link->dstpad = &dst->input_pads[dstpad];
188  link->type = src->output_pads[srcpad].type;
189  li->l.graph = src->graph;
191  link->format = -1;
194 
195  return 0;
196 }
197 
199 {
200  FilterLinkInternal *li;
201 
202  if (!*link)
203  return;
204  li = ff_link_internal(*link);
205 
206  ff_framequeue_free(&li->fifo);
208  av_channel_layout_uninit(&(*link)->ch_layout);
209 
211 
212  av_freep(link);
213 }
214 
215 #if FF_API_LINK_PUBLIC
216 void avfilter_link_free(AVFilterLink **link)
217 {
218  link_free(link);
219 }
220 int avfilter_config_links(AVFilterContext *filter)
221 {
223 }
224 #endif
225 
227 {
228  AVFilterLink *const link = &li->l.pub;
229 
230  if (pts == AV_NOPTS_VALUE)
231  return;
232  li->l.current_pts = pts;
234  /* TODO use duration */
235  if (li->l.graph && li->age_index >= 0)
237 }
238 
239 void ff_filter_set_ready(AVFilterContext *filter, unsigned priority)
240 {
242  ctxi->ready = FFMAX(ctxi->ready, priority);
243 }
244 
245 /**
246  * Clear frame_blocked_in on all outputs.
247  * This is necessary whenever something changes on input.
248  */
250 {
251  unsigned i;
252 
253  for (i = 0; i < filter->nb_outputs; i++) {
254  FilterLinkInternal * const li = ff_link_internal(filter->outputs[i]);
255  li->frame_blocked_in = 0;
256  }
257 }
258 
259 
261 {
263 
264  if (li->status_in == status)
265  return;
266  av_assert0(!li->status_in);
267  li->status_in = status;
268  li->status_in_pts = pts;
269  li->frame_wanted_out = 0;
270  li->frame_blocked_in = 0;
271  filter_unblock(link->dst);
272  ff_filter_set_ready(link->dst, 200);
273 }
274 
275 /**
276  * Set the status field of a link from the destination filter.
277  * The pts should probably be left unset (AV_NOPTS_VALUE).
278  */
280 {
282 
284  av_assert0(!li->status_out);
285  li->status_out = status;
286  if (pts != AV_NOPTS_VALUE)
288  filter_unblock(link->dst);
289  ff_filter_set_ready(link->src, 200);
290 }
291 
293  unsigned filt_srcpad_idx, unsigned filt_dstpad_idx)
294 {
295  int ret;
296  unsigned dstpad_idx = link->dstpad - link->dst->input_pads;
297 
298  av_log(link->dst, AV_LOG_VERBOSE, "auto-inserting filter '%s' "
299  "between the filter '%s' and the filter '%s'\n",
300  filt->name, link->src->name, link->dst->name);
301 
302  link->dst->inputs[dstpad_idx] = NULL;
303  if ((ret = avfilter_link(filt, filt_dstpad_idx, link->dst, dstpad_idx)) < 0) {
304  /* failed to link output filter to new filter */
305  link->dst->inputs[dstpad_idx] = link;
306  return ret;
307  }
308 
309  /* re-hookup the link to the new destination filter we inserted */
310  link->dst = filt;
311  link->dstpad = &filt->input_pads[filt_srcpad_idx];
312  filt->inputs[filt_srcpad_idx] = link;
313 
314  /* if any information on supported media formats already exists on the
315  * link, we need to preserve that */
316  if (link->outcfg.formats)
317  ff_formats_changeref(&link->outcfg.formats,
318  &filt->outputs[filt_dstpad_idx]->outcfg.formats);
319  if (link->outcfg.color_spaces)
320  ff_formats_changeref(&link->outcfg.color_spaces,
321  &filt->outputs[filt_dstpad_idx]->outcfg.color_spaces);
322  if (link->outcfg.color_ranges)
323  ff_formats_changeref(&link->outcfg.color_ranges,
324  &filt->outputs[filt_dstpad_idx]->outcfg.color_ranges);
325  if (link->outcfg.samplerates)
326  ff_formats_changeref(&link->outcfg.samplerates,
327  &filt->outputs[filt_dstpad_idx]->outcfg.samplerates);
328  if (link->outcfg.channel_layouts)
329  ff_channel_layouts_changeref(&link->outcfg.channel_layouts,
330  &filt->outputs[filt_dstpad_idx]->outcfg.channel_layouts);
331 
332  return 0;
333 }
334 
336 {
337  int (*config_link)(AVFilterLink *);
338  unsigned i;
339  int ret;
340 
341  for (i = 0; i < filter->nb_inputs; i ++) {
342  AVFilterLink *link = filter->inputs[i];
345  FilterLinkInternal *li_in;
346 
347  if (!link) continue;
348  if (!link->src || !link->dst) {
350  "Not all input and output are properly linked (%d).\n", i);
351  return AVERROR(EINVAL);
352  }
353 
354  inlink = link->src->nb_inputs ? link->src->inputs[0] : NULL;
355  li_in = inlink ? ff_link_internal(inlink) : NULL;
356  li->l.current_pts =
358 
359  switch (li->init_state) {
360  case AVLINK_INIT:
361  continue;
362  case AVLINK_STARTINIT:
363  av_log(filter, AV_LOG_INFO, "circular filter chain detected\n");
364  return 0;
365  case AVLINK_UNINIT:
366  li->init_state = AVLINK_STARTINIT;
367 
368  if ((ret = ff_filter_config_links(link->src)) < 0)
369  return ret;
370 
371  if (!(config_link = link->srcpad->config_props)) {
372  if (link->src->nb_inputs != 1) {
373  av_log(link->src, AV_LOG_ERROR, "Source filters and filters "
374  "with more than one input "
375  "must set config_props() "
376  "callbacks on all outputs\n");
377  return AVERROR(EINVAL);
378  }
379  } else if ((ret = config_link(link)) < 0) {
380  av_log(link->src, AV_LOG_ERROR,
381  "Failed to configure output pad on %s\n",
382  link->src->name);
383  return ret;
384  }
385 
386  switch (link->type) {
387  case AVMEDIA_TYPE_VIDEO:
388  if (!link->time_base.num && !link->time_base.den)
389  link->time_base = inlink ? inlink->time_base : AV_TIME_BASE_Q;
390 
393  inlink->sample_aspect_ratio : (AVRational){1,1};
394 
395  if (inlink) {
396  if (!li->l.frame_rate.num && !li->l.frame_rate.den)
397  li->l.frame_rate = li_in->l.frame_rate;
398  if (!link->w)
399  link->w = inlink->w;
400  if (!link->h)
401  link->h = inlink->h;
402  } else if (!link->w || !link->h) {
403  av_log(link->src, AV_LOG_ERROR,
404  "Video source filters must set their output link's "
405  "width and height\n");
406  return AVERROR(EINVAL);
407  }
408  break;
409 
410  case AVMEDIA_TYPE_AUDIO:
411  if (inlink) {
412  if (!link->time_base.num && !link->time_base.den)
413  link->time_base = inlink->time_base;
414  }
415 
416  if (!link->time_base.num && !link->time_base.den)
418  }
419 
420  if (link->src->nb_inputs &&
421  !(link->src->filter->flags_internal & FF_FILTER_FLAG_HWFRAME_AWARE)) {
422  FilterLink *l0 = ff_filter_link(link->src->inputs[0]);
423 
424  av_assert0(!li->l.hw_frames_ctx &&
425  "should not be set by non-hwframe-aware filter");
426 
427  if (l0->hw_frames_ctx) {
429  if (!li->l.hw_frames_ctx)
430  return AVERROR(ENOMEM);
431  }
432  }
433 
434  if ((config_link = link->dstpad->config_props))
435  if ((ret = config_link(link)) < 0) {
436  av_log(link->dst, AV_LOG_ERROR,
437  "Failed to configure input pad on %s\n",
438  link->dst->name);
439  return ret;
440  }
441 
442  li->init_state = AVLINK_INIT;
443  }
444  }
445 
446  return 0;
447 }
448 
449 #ifdef TRACE
450 void ff_tlog_link(void *ctx, AVFilterLink *link, int end)
451 {
452  if (link->type == AVMEDIA_TYPE_VIDEO) {
453  ff_tlog(ctx,
454  "link[%p s:%dx%d fmt:%s %s->%s]%s",
455  link, link->w, link->h,
457  link->src ? link->src->filter->name : "",
458  link->dst ? link->dst->filter->name : "",
459  end ? "\n" : "");
460  } else {
461  char buf[128];
462  av_channel_layout_describe(&link->ch_layout, buf, sizeof(buf));
463 
464  ff_tlog(ctx,
465  "link[%p r:%d cl:%s fmt:%s %s->%s]%s",
466  link, (int)link->sample_rate, buf,
468  link->src ? link->src->filter->name : "",
469  link->dst ? link->dst->filter->name : "",
470  end ? "\n" : "");
471  }
472 }
473 #endif
474 
476 {
478 
480 
481  av_assert1(!link->dst->filter->activate);
482  if (li->status_out)
483  return li->status_out;
484  if (li->status_in) {
485  if (ff_framequeue_queued_frames(&li->fifo)) {
487  av_assert1(fffilterctx(link->dst)->ready >= 300);
488  return 0;
489  } else {
490  /* Acknowledge status change. Filters using ff_request_frame() will
491  handle the change automatically. Filters can also check the
492  status directly but none do yet. */
494  return li->status_out;
495  }
496  }
497  li->frame_wanted_out = 1;
498  ff_filter_set_ready(link->src, 100);
499  return 0;
500 }
501 
503 {
504  unsigned i;
505  int64_t r = INT64_MAX;
506 
507  for (i = 0; i < ctx->nb_inputs; i++) {
508  FilterLinkInternal * const li = ff_link_internal(ctx->inputs[i]);
509  if (li->status_out == status)
510  r = FFMIN(r, av_rescale_q(li->l.current_pts, ctx->inputs[i]->time_base, link_time_base));
511  }
512  if (r < INT64_MAX)
513  return r;
514  av_log(ctx, AV_LOG_WARNING, "EOF timestamp not reliable\n");
515  for (i = 0; i < ctx->nb_inputs; i++) {
516  FilterLinkInternal * const li = ff_link_internal(ctx->inputs[i]);
517  r = FFMIN(r, av_rescale_q(li->status_in_pts, ctx->inputs[i]->time_base, link_time_base));
518  }
519  if (r < INT64_MAX)
520  return r;
521  return AV_NOPTS_VALUE;
522 }
523 
525 {
527  int ret = -1;
528 
530  /* Assume the filter is blocked, let the method clear it if not */
531  li->frame_blocked_in = 1;
532  if (link->srcpad->request_frame)
533  ret = link->srcpad->request_frame(link);
534  else if (link->src->inputs[0])
535  ret = ff_request_frame(link->src->inputs[0]);
536  if (ret < 0) {
537  if (ret != AVERROR(EAGAIN) && ret != li->status_in)
539  if (ret == AVERROR_EOF)
540  ret = 0;
541  }
542  return ret;
543 }
544 
545 static const char *const var_names[] = {
546  "t",
547  "n",
548 #if FF_API_FRAME_PKT
549  "pos",
550 #endif
551  "w",
552  "h",
553  NULL
554 };
555 
556 enum {
559 #if FF_API_FRAME_PKT
560  VAR_POS,
561 #endif
565 };
566 
567 static int set_enable_expr(FFFilterContext *ctxi, const char *expr)
568 {
569  AVFilterContext *ctx = &ctxi->p;
570  int ret;
571  char *expr_dup;
572  AVExpr *old = ctxi->enable;
573 
574  if (!(ctx->filter->flags & AVFILTER_FLAG_SUPPORT_TIMELINE)) {
575  av_log(ctx, AV_LOG_ERROR, "Timeline ('enable' option) not supported "
576  "with filter '%s'\n", ctx->filter->name);
577  return AVERROR_PATCHWELCOME;
578  }
579 
580  expr_dup = av_strdup(expr);
581  if (!expr_dup)
582  return AVERROR(ENOMEM);
583 
584  if (!ctxi->var_values) {
585  ctxi->var_values = av_calloc(VAR_VARS_NB, sizeof(*ctxi->var_values));
586  if (!ctxi->var_values) {
587  av_free(expr_dup);
588  return AVERROR(ENOMEM);
589  }
590  }
591 
592  ret = av_expr_parse(&ctxi->enable, expr_dup, var_names,
593  NULL, NULL, NULL, NULL, 0, ctx->priv);
594  if (ret < 0) {
595  av_log(ctx->priv, AV_LOG_ERROR,
596  "Error when evaluating the expression '%s' for enable\n",
597  expr_dup);
598  av_free(expr_dup);
599  return ret;
600  }
601 
602  av_expr_free(old);
603  av_free(ctx->enable_str);
604  ctx->enable_str = expr_dup;
605  return 0;
606 }
607 
608 int avfilter_process_command(AVFilterContext *filter, const char *cmd, const char *arg, char *res, int res_len, int flags)
609 {
610  if(!strcmp(cmd, "ping")){
611  char local_res[256] = {0};
612 
613  if (!res) {
614  res = local_res;
615  res_len = sizeof(local_res);
616  }
617  av_strlcatf(res, res_len, "pong from:%s %s\n", filter->filter->name, filter->name);
618  if (res == local_res)
619  av_log(filter, AV_LOG_INFO, "%s", res);
620  return 0;
621  }else if(!strcmp(cmd, "enable")) {
623  }else if(filter->filter->process_command) {
624  return filter->filter->process_command(filter, cmd, arg, res, res_len, flags);
625  }
626  return AVERROR(ENOSYS);
627 }
628 
629 unsigned avfilter_filter_pad_count(const AVFilter *filter, int is_output)
630 {
631  return is_output ? filter->nb_outputs : filter->nb_inputs;
632 }
633 
634 static const char *default_filter_name(void *filter_ctx)
635 {
637  return ctx->name ? ctx->name : ctx->filter->name;
638 }
639 
640 static void *filter_child_next(void *obj, void *prev)
641 {
642  AVFilterContext *ctx = obj;
643  if (!prev && ctx->filter && ctx->filter->priv_class && ctx->priv)
644  return ctx->priv;
645  return NULL;
646 }
647 
648 static const AVClass *filter_child_class_iterate(void **iter)
649 {
650  const AVFilter *f;
651 
652  while ((f = av_filter_iterate(iter)))
653  if (f->priv_class)
654  return f->priv_class;
655 
656  return NULL;
657 }
658 
659 #define OFFSET(x) offsetof(AVFilterContext, x)
660 #define FLAGS AV_OPT_FLAG_FILTERING_PARAM
661 #define TFLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_RUNTIME_PARAM
662 static const AVOption avfilter_options[] = {
663  { "thread_type", "Allowed thread types", OFFSET(thread_type), AV_OPT_TYPE_FLAGS,
664  { .i64 = AVFILTER_THREAD_SLICE }, 0, INT_MAX, FLAGS, .unit = "thread_type" },
665  { "slice", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AVFILTER_THREAD_SLICE }, .flags = FLAGS, .unit = "thread_type" },
666  { "enable", "set enable expression", OFFSET(enable_str), AV_OPT_TYPE_STRING, {.str=NULL}, .flags = TFLAGS },
667  { "threads", "Allowed number of threads", OFFSET(nb_threads), AV_OPT_TYPE_INT,
668  { .i64 = 0 }, 0, INT_MAX, FLAGS, .unit = "threads" },
669  {"auto", "autodetect a suitable number of threads to use", 0, AV_OPT_TYPE_CONST, {.i64 = 0 }, .flags = FLAGS, .unit = "threads"},
670  { "extra_hw_frames", "Number of extra hardware frames to allocate for the user",
671  OFFSET(extra_hw_frames), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, FLAGS },
672  { NULL },
673 };
674 
675 static const AVClass avfilter_class = {
676  .class_name = "AVFilter",
677  .item_name = default_filter_name,
678  .version = LIBAVUTIL_VERSION_INT,
679  .category = AV_CLASS_CATEGORY_FILTER,
680  .child_next = filter_child_next,
681  .child_class_iterate = filter_child_class_iterate,
683  .state_flags_offset = offsetof(FFFilterContext, state_flags),
684 };
685 
687  int *ret, int nb_jobs)
688 {
689  int i;
690 
691  for (i = 0; i < nb_jobs; i++) {
692  int r = func(ctx, arg, i, nb_jobs);
693  if (ret)
694  ret[i] = r;
695  }
696  return 0;
697 }
698 
699 AVFilterContext *ff_filter_alloc(const AVFilter *filter, const char *inst_name)
700 {
703  int preinited = 0;
704 
705  if (!filter)
706  return NULL;
707 
708  ctx = av_mallocz(sizeof(*ctx));
709  if (!ctx)
710  return NULL;
711  ret = &ctx->p;
712 
713  ret->av_class = &avfilter_class;
714  ret->filter = filter;
715  ret->name = inst_name ? av_strdup(inst_name) : NULL;
716  if (filter->priv_size) {
717  ret->priv = av_mallocz(filter->priv_size);
718  if (!ret->priv)
719  goto err;
720  }
721  if (filter->preinit) {
722  if (filter->preinit(ret) < 0)
723  goto err;
724  preinited = 1;
725  }
726 
728  if (filter->priv_class) {
729  *(const AVClass**)ret->priv = filter->priv_class;
730  av_opt_set_defaults(ret->priv);
731  }
732 
733  ctx->execute = default_execute;
734 
735  ret->nb_inputs = filter->nb_inputs;
736  if (ret->nb_inputs ) {
737  ret->input_pads = av_memdup(filter->inputs, ret->nb_inputs * sizeof(*filter->inputs));
738  if (!ret->input_pads)
739  goto err;
740  ret->inputs = av_calloc(ret->nb_inputs, sizeof(*ret->inputs));
741  if (!ret->inputs)
742  goto err;
743  }
744 
745  ret->nb_outputs = filter->nb_outputs;
746  if (ret->nb_outputs) {
747  ret->output_pads = av_memdup(filter->outputs, ret->nb_outputs * sizeof(*filter->outputs));
748  if (!ret->output_pads)
749  goto err;
750  ret->outputs = av_calloc(ret->nb_outputs, sizeof(*ret->outputs));
751  if (!ret->outputs)
752  goto err;
753  }
754 
755  return ret;
756 
757 err:
758  if (preinited)
759  filter->uninit(ret);
760  av_freep(&ret->inputs);
761  av_freep(&ret->input_pads);
762  ret->nb_inputs = 0;
763  av_freep(&ret->outputs);
764  av_freep(&ret->output_pads);
765  ret->nb_outputs = 0;
766  av_freep(&ret->priv);
767  av_free(ret);
768  return NULL;
769 }
770 
772 {
773  if (!link)
774  return;
775 
776  if (link->src)
777  link->src->outputs[link->srcpad - link->src->output_pads] = NULL;
778  if (link->dst)
779  link->dst->inputs[link->dstpad - link->dst->input_pads] = NULL;
780 
781  ff_formats_unref(&link->incfg.formats);
782  ff_formats_unref(&link->outcfg.formats);
783  ff_formats_unref(&link->incfg.color_spaces);
784  ff_formats_unref(&link->outcfg.color_spaces);
785  ff_formats_unref(&link->incfg.color_ranges);
786  ff_formats_unref(&link->outcfg.color_ranges);
787  ff_formats_unref(&link->incfg.samplerates);
788  ff_formats_unref(&link->outcfg.samplerates);
789  ff_channel_layouts_unref(&link->incfg.channel_layouts);
790  ff_channel_layouts_unref(&link->outcfg.channel_layouts);
791  link_free(&link);
792 }
793 
795 {
796  FFFilterContext *ctxi;
797  int i;
798 
799  if (!filter)
800  return;
801  ctxi = fffilterctx(filter);
802 
803  if (filter->graph)
805 
806  if (filter->filter->uninit)
807  filter->filter->uninit(filter);
808 
809  for (i = 0; i < filter->nb_inputs; i++) {
810  free_link(filter->inputs[i]);
811  if (filter->input_pads[i].flags & AVFILTERPAD_FLAG_FREE_NAME)
812  av_freep(&filter->input_pads[i].name);
813  }
814  for (i = 0; i < filter->nb_outputs; i++) {
815  free_link(filter->outputs[i]);
816  if (filter->output_pads[i].flags & AVFILTERPAD_FLAG_FREE_NAME)
817  av_freep(&filter->output_pads[i].name);
818  }
819 
820  if (filter->filter->priv_class)
821  av_opt_free(filter->priv);
822 
823  av_buffer_unref(&filter->hw_device_ctx);
824 
825  av_freep(&filter->name);
826  av_freep(&filter->input_pads);
827  av_freep(&filter->output_pads);
828  av_freep(&filter->inputs);
829  av_freep(&filter->outputs);
830  av_freep(&filter->priv);
831  while (ctxi->command_queue)
834  av_expr_free(ctxi->enable);
835  ctxi->enable = NULL;
836  av_freep(&ctxi->var_values);
837  av_free(filter);
838 }
839 
841 {
842  if (ctx->nb_threads > 0)
843  return FFMIN(ctx->nb_threads, ctx->graph->nb_threads);
844  return ctx->graph->nb_threads;
845 }
846 
847 int ff_filter_opt_parse(void *logctx, const AVClass *priv_class,
848  AVDictionary **options, const char *args)
849 {
850  const AVOption *o = NULL;
851  int ret;
852  int offset= -1;
853 
854  if (!args)
855  return 0;
856 
857  while (*args) {
858  char *parsed_key, *value;
859  const char *key;
860  const char *shorthand = NULL;
861  int additional_flags = 0;
862 
863  if (priv_class && (o = av_opt_next(&priv_class, o))) {
864  if (o->type == AV_OPT_TYPE_CONST || o->offset == offset)
865  continue;
866  offset = o->offset;
867  shorthand = o->name;
868  }
869 
870  ret = av_opt_get_key_value(&args, "=", ":",
871  shorthand ? AV_OPT_FLAG_IMPLICIT_KEY : 0,
872  &parsed_key, &value);
873  if (ret < 0) {
874  if (ret == AVERROR(EINVAL))
875  av_log(logctx, AV_LOG_ERROR, "No option name near '%s'\n", args);
876  else
877  av_log(logctx, AV_LOG_ERROR, "Unable to parse '%s': %s\n", args,
878  av_err2str(ret));
879  return ret;
880  }
881  if (*args)
882  args++;
883  if (parsed_key) {
884  key = parsed_key;
885  additional_flags = AV_DICT_DONT_STRDUP_KEY;
886  priv_class = NULL; /* reject all remaining shorthand */
887  } else {
888  key = shorthand;
889  }
890 
891  av_log(logctx, AV_LOG_DEBUG, "Setting '%s' to value '%s'\n", key, value);
892 
894  additional_flags | AV_DICT_DONT_STRDUP_VAL | AV_DICT_MULTIKEY);
895  }
896 
897  return 0;
898 }
899 
901  const char *arg, char *res, int res_len, int flags)
902 {
903  const AVOption *o;
904 
905  if (!ctx->filter->priv_class)
906  return 0;
908  if (!o)
909  return AVERROR(ENOSYS);
910  return av_opt_set(ctx->priv, cmd, arg, 0);
911 }
912 
914 {
916  int ret = 0;
917 
919  av_log(ctx, AV_LOG_ERROR, "Filter already initialized\n");
920  return AVERROR(EINVAL);
921  }
922 
924  if (ret < 0) {
925  av_log(ctx, AV_LOG_ERROR, "Error applying generic filter options.\n");
926  return ret;
927  }
928 
929  if (ctx->filter->flags & AVFILTER_FLAG_SLICE_THREADS &&
930  ctx->thread_type & ctx->graph->thread_type & AVFILTER_THREAD_SLICE &&
931  fffiltergraph(ctx->graph)->thread_execute) {
932  ctx->thread_type = AVFILTER_THREAD_SLICE;
933  ctxi->execute = fffiltergraph(ctx->graph)->thread_execute;
934  } else {
935  ctx->thread_type = 0;
936  }
937 
938  if (ctx->filter->init)
939  ret = ctx->filter->init(ctx);
940  if (ret < 0)
941  return ret;
942 
943  if (ctx->enable_str) {
944  ret = set_enable_expr(ctxi, ctx->enable_str);
945  if (ret < 0)
946  return ret;
947  }
948 
950 
951  return 0;
952 }
953 
954 int avfilter_init_str(AVFilterContext *filter, const char *args)
955 {
957  const AVDictionaryEntry *e;
958  int ret = 0;
959 
960  if (args && *args) {
961  ret = ff_filter_opt_parse(filter, filter->filter->priv_class, &options, args);
962  if (ret < 0)
963  goto fail;
964  }
965 
967  if (ret < 0)
968  goto fail;
969 
970  if ((e = av_dict_iterate(options, NULL))) {
971  av_log(filter, AV_LOG_ERROR, "No such option: %s.\n", e->key);
973  goto fail;
974  }
975 
976 fail:
978 
979  return ret;
980 }
981 
982 const char *avfilter_pad_get_name(const AVFilterPad *pads, int pad_idx)
983 {
984  return pads[pad_idx].name;
985 }
986 
987 enum AVMediaType avfilter_pad_get_type(const AVFilterPad *pads, int pad_idx)
988 {
989  return pads[pad_idx].type;
990 }
991 
993 {
994  return ff_filter_frame(link->dst->outputs[0], frame);
995 }
996 
997 /**
998  * Evaluate the timeline expression of the link for the time and properties
999  * of the frame.
1000  * @return >0 if enabled, 0 if disabled
1001  * @note It does not update link->dst->is_disabled.
1002  */
1004 {
1006  AVFilterContext *dstctx = link->dst;
1007  FFFilterContext *dsti = fffilterctx(dstctx);
1008  int64_t pts = frame->pts;
1009 #if FF_API_FRAME_PKT
1011  int64_t pos = frame->pkt_pos;
1013 #endif
1014 
1015  if (!dstctx->enable_str)
1016  return 1;
1017 
1018  dsti->var_values[VAR_N] = l->frame_count_out;
1020  dsti->var_values[VAR_W] = link->w;
1021  dsti->var_values[VAR_H] = link->h;
1022 #if FF_API_FRAME_PKT
1023  dsti->var_values[VAR_POS] = pos == -1 ? NAN : pos;
1024 #endif
1025 
1026  return fabs(av_expr_eval(dsti->enable, dsti->var_values, NULL)) >= 0.5;
1027 }
1028 
1030 {
1032  int (*filter_frame)(AVFilterLink *, AVFrame *);
1033  AVFilterContext *dstctx = link->dst;
1034  AVFilterPad *dst = link->dstpad;
1035  int ret;
1036 
1037  if (!(filter_frame = dst->filter_frame))
1039 
1040  if (dst->flags & AVFILTERPAD_FLAG_NEEDS_WRITABLE) {
1042  if (ret < 0)
1043  goto fail;
1044  }
1045 
1048 
1049  if (dstctx->is_disabled &&
1052  ret = filter_frame(link, frame);
1053  l->frame_count_out++;
1054  return ret;
1055 
1056 fail:
1057  av_frame_free(&frame);
1058  return ret;
1059 }
1060 
1062 {
1064  int ret;
1066 
1067  /* Consistency checks */
1068  if (link->type == AVMEDIA_TYPE_VIDEO) {
1069  if (strcmp(link->dst->filter->name, "buffersink") &&
1070  strcmp(link->dst->filter->name, "format") &&
1071  strcmp(link->dst->filter->name, "idet") &&
1072  strcmp(link->dst->filter->name, "null") &&
1073  strcmp(link->dst->filter->name, "scale")) {
1074  av_assert1(frame->format == link->format);
1075  av_assert1(frame->width == link->w);
1076  av_assert1(frame->height == link->h);
1077  }
1078 
1079  frame->sample_aspect_ratio = link->sample_aspect_ratio;
1080  } else {
1081  if (frame->format != link->format) {
1082  av_log(link->dst, AV_LOG_ERROR, "Format change is not supported\n");
1083  goto error;
1084  }
1085  if (av_channel_layout_compare(&frame->ch_layout, &link->ch_layout)) {
1086  av_log(link->dst, AV_LOG_ERROR, "Channel layout change is not supported\n");
1087  goto error;
1088  }
1089  if (frame->sample_rate != link->sample_rate) {
1090  av_log(link->dst, AV_LOG_ERROR, "Sample rate change is not supported\n");
1091  goto error;
1092  }
1093 
1094  frame->duration = av_rescale_q(frame->nb_samples, (AVRational){ 1, frame->sample_rate },
1095  link->time_base);
1096  }
1097 
1098  li->frame_blocked_in = li->frame_wanted_out = 0;
1099  li->l.frame_count_in++;
1100  li->l.sample_count_in += frame->nb_samples;
1101  filter_unblock(link->dst);
1102  ret = ff_framequeue_add(&li->fifo, frame);
1103  if (ret < 0) {
1104  av_frame_free(&frame);
1105  return ret;
1106  }
1107  ff_filter_set_ready(link->dst, 300);
1108  return 0;
1109 
1110 error:
1111  av_frame_free(&frame);
1112  return AVERROR_PATCHWELCOME;
1113 }
1114 
1116 {
1117  return ff_framequeue_queued_frames(&link->fifo) &&
1118  (ff_framequeue_queued_samples(&link->fifo) >= min ||
1119  link->status_in);
1120 }
1121 
1122 static int take_samples(FilterLinkInternal *li, unsigned min, unsigned max,
1123  AVFrame **rframe)
1124 {
1125  FilterLink *l = &li->l;
1126  AVFilterLink *link = &l->pub;
1127  AVFrame *frame0, *frame, *buf;
1128  unsigned nb_samples, nb_frames, i, p;
1129  int ret;
1130 
1131  /* Note: this function relies on no format changes and must only be
1132  called with enough samples. */
1134  frame0 = frame = ff_framequeue_peek(&li->fifo, 0);
1135  if (!li->fifo.samples_skipped && frame->nb_samples >= min && frame->nb_samples <= max) {
1136  *rframe = ff_framequeue_take(&li->fifo);
1137  return 0;
1138  }
1139  nb_frames = 0;
1140  nb_samples = 0;
1141  while (1) {
1142  if (nb_samples + frame->nb_samples > max) {
1143  if (nb_samples < min)
1144  nb_samples = max;
1145  break;
1146  }
1147  nb_samples += frame->nb_samples;
1148  nb_frames++;
1149  if (nb_frames == ff_framequeue_queued_frames(&li->fifo))
1150  break;
1151  frame = ff_framequeue_peek(&li->fifo, nb_frames);
1152  }
1153 
1154  buf = ff_get_audio_buffer(link, nb_samples);
1155  if (!buf)
1156  return AVERROR(ENOMEM);
1157  ret = av_frame_copy_props(buf, frame0);
1158  if (ret < 0) {
1159  av_frame_free(&buf);
1160  return ret;
1161  }
1162 
1163  p = 0;
1164  for (i = 0; i < nb_frames; i++) {
1165  frame = ff_framequeue_take(&li->fifo);
1166  av_samples_copy(buf->extended_data, frame->extended_data, p, 0,
1167  frame->nb_samples, link->ch_layout.nb_channels, link->format);
1168  p += frame->nb_samples;
1169  av_frame_free(&frame);
1170  }
1171  if (p < nb_samples) {
1172  unsigned n = nb_samples - p;
1173  frame = ff_framequeue_peek(&li->fifo, 0);
1174  av_samples_copy(buf->extended_data, frame->extended_data, p, 0, n,
1177  }
1178 
1179  *rframe = buf;
1180  return 0;
1181 }
1182 
1184 {
1186  AVFrame *frame = NULL;
1187  AVFilterContext *dst = link->dst;
1188  int ret;
1189 
1191  ret = li->l.min_samples ?
1194  av_assert1(ret);
1195  if (ret < 0) {
1196  av_assert1(!frame);
1197  return ret;
1198  }
1199  /* The filter will soon have received a new frame, that may allow it to
1200  produce one or more: unblock its outputs. */
1202  /* AVFilterPad.filter_frame() expect frame_count_out to have the value
1203  before the frame; filter_frame_framed() will re-increment it. */
1204  li->l.frame_count_out--;
1206  if (ret < 0 && ret != li->status_out) {
1208  } else {
1209  /* Run once again, to see if several frames were available, or if
1210  the input status has also changed, or any other reason. */
1211  ff_filter_set_ready(dst, 300);
1212  }
1213  return ret;
1214 }
1215 
1217 {
1218  AVFilterLink *in = &li_in->l.pub;
1219  unsigned out = 0, progress = 0;
1220  int ret;
1221 
1222  av_assert0(!li_in->status_out);
1223  if (!filter->nb_outputs) {
1224  /* not necessary with the current API and sinks */
1225  return 0;
1226  }
1227  while (!li_in->status_out) {
1228  FilterLinkInternal *li_out = ff_link_internal(filter->outputs[out]);
1229 
1230  if (!li_out->status_in) {
1231  progress++;
1232  ret = request_frame_to_filter(filter->outputs[out]);
1233  if (ret < 0)
1234  return ret;
1235  }
1236  if (++out == filter->nb_outputs) {
1237  if (!progress) {
1238  /* Every output already closed: input no longer interesting
1239  (example: overlay in shortest mode, other input closed). */
1240  link_set_out_status(in, li_in->status_in, li_in->status_in_pts);
1241  return 0;
1242  }
1243  progress = 0;
1244  out = 0;
1245  }
1246  }
1248  return 0;
1249 }
1250 
1252 {
1253  unsigned i;
1254 
1255  for (i = 0; i < filter->nb_outputs; i++) {
1256  FilterLinkInternal *li = ff_link_internal(filter->outputs[i]);
1257  int ret = li->status_in;
1258 
1259  if (ret) {
1260  for (int j = 0; j < filter->nb_inputs; j++)
1261  ff_inlink_set_status(filter->inputs[j], ret);
1262  return 0;
1263  }
1264  }
1265 
1266  for (i = 0; i < filter->nb_inputs; i++) {
1267  FilterLinkInternal *li = ff_link_internal(filter->inputs[i]);
1268  if (samples_ready(li, li->l.min_samples)) {
1269  return filter_frame_to_filter(filter->inputs[i]);
1270  }
1271  }
1272  for (i = 0; i < filter->nb_inputs; i++) {
1273  FilterLinkInternal * const li = ff_link_internal(filter->inputs[i]);
1274  if (li->status_in && !li->status_out) {
1276  return forward_status_change(filter, li);
1277  }
1278  }
1279  for (i = 0; i < filter->nb_outputs; i++) {
1280  FilterLinkInternal * const li = ff_link_internal(filter->outputs[i]);
1281  if (li->frame_wanted_out &&
1282  !li->frame_blocked_in) {
1283  return request_frame_to_filter(filter->outputs[i]);
1284  }
1285  }
1286  return FFERROR_NOT_READY;
1287 }
1288 
1289 /*
1290  Filter scheduling and activation
1291 
1292  When a filter is activated, it must:
1293  - if possible, output a frame;
1294  - else, if relevant, forward the input status change;
1295  - else, check outputs for wanted frames and forward the requests.
1296 
1297  The following AVFilterLink fields are used for activation:
1298 
1299  - frame_wanted_out:
1300 
1301  This field indicates if a frame is needed on this input of the
1302  destination filter. A positive value indicates that a frame is needed
1303  to process queued frames or internal data or to satisfy the
1304  application; a zero value indicates that a frame is not especially
1305  needed but could be processed anyway; a negative value indicates that a
1306  frame would just be queued.
1307 
1308  It is set by filters using ff_request_frame() or ff_request_no_frame(),
1309  when requested by the application through a specific API or when it is
1310  set on one of the outputs.
1311 
1312  It is cleared when a frame is sent from the source using
1313  ff_filter_frame().
1314 
1315  It is also cleared when a status change is sent from the source using
1316  ff_avfilter_link_set_in_status().
1317 
1318  - frame_blocked_in:
1319 
1320  This field means that the source filter can not generate a frame as is.
1321  Its goal is to avoid repeatedly calling the request_frame() method on
1322  the same link.
1323 
1324  It is set by the framework on all outputs of a filter before activating it.
1325 
1326  It is automatically cleared by ff_filter_frame().
1327 
1328  It is also automatically cleared by ff_avfilter_link_set_in_status().
1329 
1330  It is also cleared on all outputs (using filter_unblock()) when
1331  something happens on an input: processing a frame or changing the
1332  status.
1333 
1334  - fifo:
1335 
1336  Contains the frames queued on a filter input. If it contains frames and
1337  frame_wanted_out is not set, then the filter can be activated. If that
1338  result in the filter not able to use these frames, the filter must set
1339  frame_wanted_out to ask for more frames.
1340 
1341  - status_in and status_in_pts:
1342 
1343  Status (EOF or error code) of the link and timestamp of the status
1344  change (in link time base, same as frames) as seen from the input of
1345  the link. The status change is considered happening after the frames
1346  queued in fifo.
1347 
1348  It is set by the source filter using ff_avfilter_link_set_in_status().
1349 
1350  - status_out:
1351 
1352  Status of the link as seen from the output of the link. The status
1353  change is considered having already happened.
1354 
1355  It is set by the destination filter using
1356  link_set_out_status().
1357 
1358  Filters are activated according to the ready field, set using the
1359  ff_filter_set_ready(). Eventually, a priority queue will be used.
1360  ff_filter_set_ready() is called whenever anything could cause progress to
1361  be possible. Marking a filter ready when it is not is not a problem,
1362  except for the small overhead it causes.
1363 
1364  Conditions that cause a filter to be marked ready are:
1365 
1366  - frames added on an input link;
1367 
1368  - changes in the input or output status of an input link;
1369 
1370  - requests for a frame on an output link;
1371 
1372  - after any actual processing using the legacy methods (filter_frame(),
1373  and request_frame() to acknowledge status changes), to run once more
1374  and check if enough input was present for several frames.
1375 
1376  Examples of scenarios to consider:
1377 
1378  - buffersrc: activate if frame_wanted_out to notify the application;
1379  activate when the application adds a frame to push it immediately.
1380 
1381  - testsrc: activate only if frame_wanted_out to produce and push a frame.
1382 
1383  - concat (not at stitch points): can process a frame on any output.
1384  Activate if frame_wanted_out on output to forward on the corresponding
1385  input. Activate when a frame is present on input to process it
1386  immediately.
1387 
1388  - framesync: needs at least one frame on each input; extra frames on the
1389  wrong input will accumulate. When a frame is first added on one input,
1390  set frame_wanted_out<0 on it to avoid getting more (would trigger
1391  testsrc) and frame_wanted_out>0 on the other to allow processing it.
1392 
1393  Activation of old filters:
1394 
1395  In order to activate a filter implementing the legacy filter_frame() and
1396  request_frame() methods, perform the first possible of the following
1397  actions:
1398 
1399  - If an input has frames in fifo and frame_wanted_out == 0, dequeue a
1400  frame and call filter_frame().
1401 
1402  Rationale: filter frames as soon as possible instead of leaving them
1403  queued; frame_wanted_out < 0 is not possible since the old API does not
1404  set it nor provides any similar feedback; frame_wanted_out > 0 happens
1405  when min_samples > 0 and there are not enough samples queued.
1406 
1407  - If an input has status_in set but not status_out, try to call
1408  request_frame() on one of the outputs in the hope that it will trigger
1409  request_frame() on the input with status_in and acknowledge it. This is
1410  awkward and fragile, filters with several inputs or outputs should be
1411  updated to direct activation as soon as possible.
1412 
1413  - If an output has frame_wanted_out > 0 and not frame_blocked_in, call
1414  request_frame().
1415 
1416  Rationale: checking frame_blocked_in is necessary to avoid requesting
1417  repeatedly on a blocked input if another is not blocked (example:
1418  [buffersrc1][testsrc1][buffersrc2][testsrc2]concat=v=2).
1419  */
1420 
1422 {
1424  int ret;
1425 
1426  /* Generic timeline support is not yet implemented but should be easy */
1428  filter->filter->activate));
1429  ctxi->ready = 0;
1430  ret = filter->filter->activate ? filter->filter->activate(filter) :
1432  if (ret == FFERROR_NOT_READY)
1433  ret = 0;
1434  return ret;
1435 }
1436 
1438 {
1440  *rpts = li->l.current_pts;
1442  return *rstatus = 0;
1443  if (li->status_out)
1444  return *rstatus = li->status_out;
1445  if (!li->status_in)
1446  return *rstatus = 0;
1447  *rstatus = li->status_out = li->status_in;
1449  *rpts = li->l.current_pts;
1450  return 1;
1451 }
1452 
1454 {
1456  return ff_framequeue_queued_frames(&li->fifo);
1457 }
1458 
1460 {
1462  return ff_framequeue_queued_frames(&li->fifo) > 0;
1463 }
1464 
1466 {
1468  return ff_framequeue_queued_samples(&li->fifo);
1469 }
1470 
1472 {
1474  uint64_t samples = ff_framequeue_queued_samples(&li->fifo);
1475  av_assert1(min);
1476  return samples >= min || (li->status_in && samples);
1477 }
1478 
1480 {
1481  AVFilterLink *const link = &li->l.pub;
1482  update_link_current_pts(li, frame->pts);
1484  if (link == link->dst->inputs[0])
1485  link->dst->is_disabled = !evaluate_timeline_at_frame(link, frame);
1486  li->l.frame_count_out++;
1487  li->l.sample_count_out += frame->nb_samples;
1488 }
1489 
1491 {
1493  AVFrame *frame;
1494 
1495  *rframe = NULL;
1497  return 0;
1498 
1499  if (li->fifo.samples_skipped) {
1500  frame = ff_framequeue_peek(&li->fifo, 0);
1501  return ff_inlink_consume_samples(link, frame->nb_samples, frame->nb_samples, rframe);
1502  }
1503 
1504  frame = ff_framequeue_take(&li->fifo);
1505  consume_update(li, frame);
1506  *rframe = frame;
1507  return 1;
1508 }
1509 
1511  AVFrame **rframe)
1512 {
1514  AVFrame *frame;
1515  int ret;
1516 
1517  av_assert1(min);
1518  *rframe = NULL;
1520  return 0;
1521  if (li->status_in)
1523  ret = take_samples(li, min, max, &frame);
1524  if (ret < 0)
1525  return ret;
1526  consume_update(li, frame);
1527  *rframe = frame;
1528  return 1;
1529 }
1530 
1532 {
1534  return ff_framequeue_peek(&li->fifo, idx);
1535 }
1536 
1538 {
1539  AVFrame *frame = *rframe;
1540  AVFrame *out;
1541  int ret;
1542 
1544  return 0;
1545  av_log(link->dst, AV_LOG_DEBUG, "Copying data in avfilter.\n");
1546 
1547  switch (link->type) {
1548  case AVMEDIA_TYPE_VIDEO:
1549  out = ff_get_video_buffer(link, link->w, link->h);
1550  break;
1551  case AVMEDIA_TYPE_AUDIO:
1552  out = ff_get_audio_buffer(link, frame->nb_samples);
1553  break;
1554  default:
1555  return AVERROR(EINVAL);
1556  }
1557  if (!out)
1558  return AVERROR(ENOMEM);
1559 
1561  if (ret < 0) {
1562  av_frame_free(&out);
1563  return ret;
1564  }
1565 
1566  ret = av_frame_copy(out, frame);
1567  if (ret < 0) {
1568  av_frame_free(&out);
1569  return ret;
1570  }
1571 
1572  av_frame_free(&frame);
1573  *rframe = out;
1574  return 0;
1575 }
1576 
1578 {
1579  FFFilterContext *ctxi = fffilterctx(link->dst);
1580  AVFilterCommand *cmd = ctxi->command_queue;
1581 
1582  while(cmd && cmd->time <= frame->pts * av_q2d(link->time_base)){
1583  av_log(link->dst, AV_LOG_DEBUG,
1584  "Processing command time:%f command:%s arg:%s\n",
1585  cmd->time, cmd->command, cmd->arg);
1586  avfilter_process_command(link->dst, cmd->command, cmd->arg, 0, 0, cmd->flags);
1587  command_queue_pop(link->dst);
1588  cmd = ctxi->command_queue;
1589  }
1590  return 0;
1591 }
1592 
1594 {
1596  av_assert1(!li->status_in);
1597  av_assert1(!li->status_out);
1598  li->frame_wanted_out = 1;
1599  ff_filter_set_ready(link->src, 100);
1600 }
1601 
1603 {
1605  if (li->status_out)
1606  return;
1607  li->frame_wanted_out = 0;
1608  li->frame_blocked_in = 0;
1610  while (ff_framequeue_queued_frames(&li->fifo)) {
1612  av_frame_free(&frame);
1613  }
1614  if (!li->status_in)
1615  li->status_in = status;
1616 }
1617 
1619 {
1621  return li->status_in;
1622 }
1623 
1625 {
1626  FilterLinkInternal * const li_in = ff_link_internal(inlink);
1627  return ff_outlink_frame_wanted(outlink) ||
1629  li_in->status_out;
1630 }
1631 
1632 
1634 {
1635  return &avfilter_class;
1636 }
1637 
1639  int default_pool_size)
1640 {
1643 
1644  // Must already be set by caller.
1646 
1648 
1649  if (frames->initial_pool_size == 0) {
1650  // Dynamic allocation is necessarily supported.
1651  } else if (avctx->extra_hw_frames >= 0) {
1652  frames->initial_pool_size += avctx->extra_hw_frames;
1653  } else {
1654  frames->initial_pool_size = default_pool_size;
1655  }
1656 
1657  return 0;
1658 }
1659 
1661 {
1663  return li->frame_wanted_out;
1664 }
1665 
1667  void *arg, int *ret, int nb_jobs)
1668 {
1669  return fffilterctx(ctx)->execute(ctx, func, arg, ret, nb_jobs);
1670 }
error
static void error(const char *err)
Definition: target_bsf_fuzzer.c:32
AV_OPT_SEARCH_CHILDREN
#define AV_OPT_SEARCH_CHILDREN
Search in possible children of the given object first.
Definition: opt.h:605
ff_get_video_buffer
AVFrame * ff_get_video_buffer(AVFilterLink *link, int w, int h)
Request a picture buffer with a specific set of permissions.
Definition: video.c:116
func
int(* func)(AVBPrint *dst, const char *in, const char *arg)
Definition: jacosubdec.c:68
av_samples_copy
int av_samples_copy(uint8_t *const *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:222
ff_get_audio_buffer
AVFrame * ff_get_audio_buffer(AVFilterLink *link, int nb_samples)
Request an audio samples buffer with a specific set of permissions.
Definition: audio.c:98
FF_ENABLE_DEPRECATION_WARNINGS
#define FF_ENABLE_DEPRECATION_WARNINGS
Definition: internal.h:73
AV_LOG_WARNING
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition: log.h:215
AV_BPRINT_SIZE_UNLIMITED
#define AV_BPRINT_SIZE_UNLIMITED
avfilter_filter_pad_count
unsigned avfilter_filter_pad_count(const AVFilter *filter, int is_output)
Get the number of elements in an AVFilter's inputs or outputs array.
Definition: avfilter.c:629
av_opt_set_defaults
void av_opt_set_defaults(void *s)
Set the values of all AVOption fields to their default values.
Definition: opt.c:1678
ff_link_internal
static FilterLinkInternal * ff_link_internal(AVFilterLink *link)
Definition: avfilter_internal.h:90
r
const char * r
Definition: vf_curves.c:127
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
filter_child_class_iterate
static const AVClass * filter_child_class_iterate(void **iter)
Definition: avfilter.c:648
avfilter_pad_get_name
const char * avfilter_pad_get_name(const AVFilterPad *pads, int pad_idx)
Get the name of an AVFilterPad.
Definition: avfilter.c:982
FFFilterContext::enable
struct AVExpr * enable
variable values for the enable expression
Definition: avfilter_internal.h:114
out
FILE * out
Definition: movenc.c:55
evaluate_timeline_at_frame
static int evaluate_timeline_at_frame(AVFilterLink *link, const AVFrame *frame)
Evaluate the timeline expression of the link for the time and properties of the frame.
Definition: avfilter.c:1003
av_bprint_init
void av_bprint_init(AVBPrint *buf, unsigned size_init, unsigned size_max)
Definition: bprint.c:69
update_link_current_pts
static void update_link_current_pts(FilterLinkInternal *li, int64_t pts)
Definition: avfilter.c:226
ff_filter_frame
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
Definition: avfilter.c:1061
ff_filter_opt_parse
int ff_filter_opt_parse(void *logctx, const AVClass *priv_class, AVDictionary **options, const char *args)
Parse filter options into a dictionary.
Definition: avfilter.c:847
avfilter_action_func
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:764
AVERROR_EOF
#define AVERROR_EOF
End of file.
Definition: error.h:57
AVBufferRef::data
uint8_t * data
The data buffer.
Definition: buffer.h:90
FFERROR_NOT_READY
return FFERROR_NOT_READY
Definition: filter_design.txt:204
rational.h
AV_TIME_BASE_Q
#define AV_TIME_BASE_Q
Internal time base represented as fractional value.
Definition: avutil.h:264
int64_t
long long int64_t
Definition: coverity.c:34
inlink
The exact code depends on how similar the blocks are and how related they are to the and needs to apply these operations to the correct inlink or outlink if there are several Macros are available to factor that when no extra processing is inlink
Definition: filter_design.txt:212
av_unused
#define av_unused
Definition: attributes.h:131
av_frame_free
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
Definition: frame.c:162
AVFilterContext::is_disabled
int is_disabled
MUST NOT be accessed from outside avfilter.
Definition: avfilter.h:526
ff_filter_activate
int ff_filter_activate(AVFilterContext *filter)
Definition: avfilter.c:1421
AVFrame::colorspace
enum AVColorSpace colorspace
YUV colorspace type.
Definition: frame.h:679
AVFrame
This structure describes decoded (raw) audio or video data.
Definition: frame.h:389
pixdesc.h
free_link
static void free_link(AVFilterLink *link)
Definition: avfilter.c:771
link_free
static void link_free(AVFilterLink **link)
Definition: avfilter.c:198
command_queue_pop
static void command_queue_pop(AVFilterContext *filter)
Definition: avfilter.c:81
AVOption
AVOption.
Definition: opt.h:429
VAR_VARS_NB
@ VAR_VARS_NB
Definition: avfilter.c:564
av_opt_find2
const AVOption * av_opt_find2(void *obj, const char *name, const char *unit, int opt_flags, int search_flags, void **target_obj)
Look for an option in an object.
Definition: opt.c:1997
ff_request_frame
int ff_request_frame(AVFilterLink *link)
Request an input frame from the filter at the other end of the link.
Definition: avfilter.c:475
FilterLinkInternal::l
FilterLink l
Definition: avfilter_internal.h:35
AV_LOG_VERBOSE
#define AV_LOG_VERBOSE
Detailed information.
Definition: log.h:225
filter
void(* filter)(uint8_t *src, int stride, int qscale)
Definition: h263dsp.c:29
max
#define max(a, b)
Definition: cuda_runtime.h:33
AVDictionary
Definition: dict.c:34
ff_framequeue_init
void ff_framequeue_init(FFFrameQueue *fq, FFFrameQueueGlobal *fqg)
Init a frame queue and attach it to a global structure.
Definition: framequeue.c:48
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
default_filter_name
static const char * default_filter_name(void *filter_ctx)
Definition: avfilter.c:634
AVChannelLayout::nb_channels
int nb_channels
Number of channels in this layout.
Definition: channel_layout.h:327
video.h
av_strlcatf
size_t av_strlcatf(char *dst, size_t size, const char *fmt,...)
Definition: avstring.c:103
ff_filter_alloc
AVFilterContext * ff_filter_alloc(const AVFilter *filter, const char *inst_name)
Allocate a new filter context and return it.
Definition: avfilter.c:699
av_channel_layout_describe_bprint
int av_channel_layout_describe_bprint(const AVChannelLayout *channel_layout, AVBPrint *bp)
bprint variant of av_channel_layout_describe().
Definition: channel_layout.c:597
ff_inoutlink_check_flow
int ff_inoutlink_check_flow(AVFilterLink *inlink, AVFilterLink *outlink)
Check for flow control between input and output.
Definition: avfilter.c:1624
AVFILTERPAD_FLAG_FREE_NAME
#define AVFILTERPAD_FLAG_FREE_NAME
The pad's name is allocated and should be freed generically.
Definition: filters.h:62
FilterLinkInternal
Definition: avfilter_internal.h:34
AV_FRAME_FLAG_TOP_FIELD_FIRST
#define AV_FRAME_FLAG_TOP_FIELD_FIRST
A flag to mark frames where the top field is displayed first if the content is interlaced.
Definition: frame.h:653
formats.h
av_expr_parse
int av_expr_parse(AVExpr **expr, const char *s, const char *const *const_names, const char *const *func1_names, double(*const *funcs1)(void *, double), const char *const *func2_names, double(*const *funcs2)(void *, double, double), int log_offset, void *log_ctx)
Parse an expression.
Definition: eval.c:710
av_memdup
void * av_memdup(const void *p, size_t size)
Duplicate a buffer with av_malloc().
Definition: mem.c:304
ff_inlink_consume_frame
int ff_inlink_consume_frame(AVFilterLink *link, AVFrame **rframe)
Take a frame from the link's FIFO and update the link's stats.
Definition: avfilter.c:1490
ff_framequeue_skip_samples
void ff_framequeue_skip_samples(FFFrameQueue *fq, size_t samples, AVRational time_base)
Skip samples from the first frame in the queue.
Definition: framequeue.c:126
ff_append_inpad
int ff_append_inpad(AVFilterContext *f, AVFilterPad *p)
Append a new input/output pad to the filter's list of such pads.
Definition: avfilter.c:127
set_enable_expr
static int set_enable_expr(FFFilterContext *ctxi, const char *expr)
Definition: avfilter.c:567
fail
#define fail()
Definition: checkasm.h:193
AVOption::offset
int offset
Native access only.
Definition: opt.h:444
av_opt_get_key_value
int av_opt_get_key_value(const char **ropts, const char *key_val_sep, const char *pairs_sep, unsigned flags, char **rkey, char **rval)
Extract a key-value pair from the beginning of a string.
Definition: opt.c:1875
AVFilterContext::enable_str
char * enable_str
enable expression string
Definition: avfilter.h:509
AVFilterCommand::flags
int flags
Definition: avfilter_internal.h:130
frames
if it could not because there are no more frames
Definition: filter_design.txt:266
avfilter_insert_filter
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:292
av_filter_iterate
const AVFilter * av_filter_iterate(void **opaque)
Iterate over all registered filters.
Definition: allfilters.c:623
samplefmt.h
take_samples
static int take_samples(FilterLinkInternal *li, unsigned min, unsigned max, AVFrame **rframe)
Definition: avfilter.c:1122
AVFilterContext::extra_hw_frames
int extra_hw_frames
Sets the number of extra hardware frames which the filter will allocate on its output links for use i...
Definition: avfilter.h:563
av_opt_free
void av_opt_free(void *obj)
Free all allocated objects in obj.
Definition: opt.c:1949
AVERROR_OPTION_NOT_FOUND
#define AVERROR_OPTION_NOT_FOUND
Option not found.
Definition: error.h:63
filter_ctx
static FilteringContext * filter_ctx
Definition: transcode.c:52
request_frame_to_filter
static int request_frame_to_filter(AVFilterLink *link)
Definition: avfilter.c:524
AVFrame::ch_layout
AVChannelLayout ch_layout
Channel layout of the audio data.
Definition: frame.h:790
FFFilterContext::p
AVFilterContext p
The public AVFilterContext.
Definition: avfilter_internal.h:99
pts
static int64_t pts
Definition: transcode_aac.c:644
AVFILTER_THREAD_SLICE
#define AVFILTER_THREAD_SLICE
Process multiple parts of the frame concurrently.
Definition: avfilter.h:454
av_opt_set
int av_opt_set(void *obj, const char *name, const char *val, int search_flags)
Definition: opt.c:835
av_expr_free
void av_expr_free(AVExpr *e)
Free a parsed expression previously created with av_expr_parse().
Definition: eval.c:358
AVRational::num
int num
Numerator.
Definition: rational.h:59
AVFilterPad
A filter pad used for either input or output.
Definition: filters.h:38
AV_DICT_DONT_STRDUP_VAL
#define AV_DICT_DONT_STRDUP_VAL
Take ownership of a value that's been allocated with av_malloc() or another memory allocation functio...
Definition: dict.h:79
ff_filter_config_links
int ff_filter_config_links(AVFilterContext *filter)
Negotiate the media format, dimensions, etc of all inputs to a filter.
Definition: avfilter.c:335
FFFrameQueue::samples_skipped
int samples_skipped
Indicate that samples are skipped.
Definition: framequeue.h:106
avassert.h
ff_outlink_frame_wanted
int ff_outlink_frame_wanted(AVFilterLink *link)
Test if a frame is wanted on an output link.
Definition: avfilter.c:1660
FFFilterGraph::thread_execute
avfilter_execute_func * thread_execute
Definition: avfilter_internal.h:146
filter_activate_default
static int filter_activate_default(AVFilterContext *filter)
Definition: avfilter.c:1251
AV_LOG_ERROR
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:209
ff_inlink_check_available_samples
int ff_inlink_check_available_samples(AVFilterLink *link, unsigned min)
Test if enough samples are available on the link.
Definition: avfilter.c:1471
AV_FRAME_FLAG_KEY
#define AV_FRAME_FLAG_KEY
A flag to mark frames that are keyframes.
Definition: frame.h:640
av_channel_layout_describe
int av_channel_layout_describe(const AVChannelLayout *channel_layout, char *buf, size_t buf_size)
Get a human-readable string describing the channel layout properties.
Definition: channel_layout.c:651
ff_inlink_request_frame
void ff_inlink_request_frame(AVFilterLink *link)
Mark that a frame is wanted on the link.
Definition: avfilter.c:1593
av_realloc_array
void * av_realloc_array(void *ptr, size_t nmemb, size_t size)
Definition: mem.c:217
AVFormatContext::flags
int flags
Flags modifying the (de)muxer behaviour.
Definition: avformat.h:1451
avfilter_process_command
int avfilter_process_command(AVFilterContext *filter, const char *cmd, const char *arg, char *res, int res_len, int flags)
Make the filter instance process a command.
Definition: avfilter.c:608
AVDictionaryEntry::key
char * key
Definition: dict.h:90
AVMEDIA_TYPE_AUDIO
@ AVMEDIA_TYPE_AUDIO
Definition: avutil.h:202
av_q2d
static double av_q2d(AVRational a)
Convert an AVRational to a double.
Definition: rational.h:104
VAR_T
@ VAR_T
Definition: avfilter.c:557
av_assert0
#define av_assert0(cond)
assert() equivalent, that is always enabled.
Definition: avassert.h:40
filters.h
AVFilter::flags
int flags
A combination of AVFILTER_FLAG_*.
Definition: avfilter.h:245
AV_LOG_DEBUG
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
Definition: log.h:230
ctx
AVFormatContext * ctx
Definition: movenc.c:49
av_expr_eval
double av_expr_eval(AVExpr *e, const double *const_values, void *opaque)
Evaluate a previously parsed expression.
Definition: eval.c:792
av_rescale_q
int64_t av_rescale_q(int64_t a, AVRational bq, AVRational cq)
Rescale a 64-bit integer by 2 rational numbers.
Definition: mathematics.c:142
AVExpr
Definition: eval.c:158
av_get_sample_fmt_name
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:51
key
const char * key
Definition: hwcontext_opencl.c:189
AV_OPT_FLAG_IMPLICIT_KEY
@ AV_OPT_FLAG_IMPLICIT_KEY
Accept to parse a value without a key; the key will then be returned as NULL.
Definition: opt.h:724
NAN
#define NAN
Definition: mathematics.h:115
link
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 link
Definition: filter_design.txt:23
ff_framequeue_take
AVFrame * ff_framequeue_take(FFFrameQueue *fq)
Take the first frame in the queue.
Definition: framequeue.c:98
ff_inlink_make_frame_writable
int ff_inlink_make_frame_writable(AVFilterLink *link, AVFrame **rframe)
Make sure a frame is writable.
Definition: avfilter.c:1537
arg
const char * arg
Definition: jacosubdec.c:67
if
if(ret)
Definition: filter_design.txt:179
ff_formats_changeref
void ff_formats_changeref(AVFilterFormats **oldref, AVFilterFormats **newref)
Definition: formats.c:753
ff_inlink_peek_frame
AVFrame * ff_inlink_peek_frame(AVFilterLink *link, size_t idx)
Access a frame in the link fifo without consuming it.
Definition: avfilter.c:1531
ff_avfilter_graph_update_heap
void ff_avfilter_graph_update_heap(AVFilterGraph *graph, struct FilterLinkInternal *li)
Update the position of a link in the age heap.
Definition: avfiltergraph.c:1417
LIBAVUTIL_VERSION_INT
#define LIBAVUTIL_VERSION_INT
Definition: version.h:85
filter_unblock
static void filter_unblock(AVFilterContext *filter)
Clear frame_blocked_in on all outputs.
Definition: avfilter.c:249
AVClass
Describe the class of an AVClass context structure.
Definition: log.h:75
fabs
static __device__ float fabs(float a)
Definition: cuda_runtime.h:182
ff_inlink_consume_samples
int ff_inlink_consume_samples(AVFilterLink *link, unsigned min, unsigned max, AVFrame **rframe)
Take samples from the link's FIFO and update the link's stats.
Definition: avfilter.c:1510
NULL
#define NULL
Definition: coverity.c:32
AVERROR_PATCHWELCOME
#define AVERROR_PATCHWELCOME
Not yet implemented in FFmpeg, patches welcome.
Definition: error.h:64
av_frame_copy_props
int av_frame_copy_props(AVFrame *dst, const AVFrame *src)
Copy only "metadata" fields from src to dst.
Definition: frame.c:725
VAR_POS
@ VAR_POS
Definition: noise.c:56
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_DICT_MULTIKEY
#define AV_DICT_MULTIKEY
Allow to store several equal keys in the dictionary.
Definition: dict.h:84
consume_update
static void consume_update(FilterLinkInternal *li, const AVFrame *frame)
Definition: avfilter.c:1479
ff_framequeue_add
int ff_framequeue_add(FFFrameQueue *fq, AVFrame *frame)
Add a frame.
Definition: framequeue.c:64
ff_framequeue_free
void ff_framequeue_free(FFFrameQueue *fq)
Free the queue and all queued frames.
Definition: framequeue.c:54
VAR_H
@ VAR_H
Definition: avfilter.c:563
framequeue.h
AVRational
Rational number (pair of numerator and denominator).
Definition: rational.h:58
ff_append_inpad_free_name
int ff_append_inpad_free_name(AVFilterContext *f, AVFilterPad *p)
Definition: avfilter.c:132
fffiltergraph
static FFFilterGraph * fffiltergraph(AVFilterGraph *graph)
Definition: avfilter_internal.h:150
options
Definition: swscale.c:42
AV_CLASS_STATE_INITIALIZED
@ AV_CLASS_STATE_INITIALIZED
Object initialization has finished and it is now in the 'runtime' stage.
Definition: log.h:55
avfilter_internal.h
filter_frame
static int filter_frame(DBEDecodeContext *s, AVFrame *frame)
Definition: dolby_e.c:1059
avfilter_class
static const AVClass avfilter_class
Definition: avfilter.c:675
ff_channel_layouts_unref
void ff_channel_layouts_unref(AVFilterChannelLayouts **ref)
Remove a reference to a channel layouts list.
Definition: formats.c:729
ff_inlink_acknowledge_status
int ff_inlink_acknowledge_status(AVFilterLink *link, int *rstatus, int64_t *rpts)
Test and acknowledge the change of status on the link.
Definition: avfilter.c:1437
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
ff_inlink_queued_frames
size_t ff_inlink_queued_frames(AVFilterLink *link)
Get the number of frames available on the link.
Definition: avfilter.c:1453
tlog_ref
static void tlog_ref(void *ctx, AVFrame *ref, int end)
Definition: avfilter.c:47
ff_filter_link
static FilterLink * ff_filter_link(AVFilterLink *link)
Definition: filters.h:197
AV_CLASS_CATEGORY_FILTER
@ AV_CLASS_CATEGORY_FILTER
Definition: log.h:36
FilterLinkInternal::status_out
int status_out
Link output status.
Definition: avfilter_internal.h:68
FF_FILTER_FLAG_HWFRAME_AWARE
#define FF_FILTER_FLAG_HWFRAME_AWARE
The filter is aware of hardware frames, and any hardware frame context should not be automatically pr...
Definition: filters.h:206
FFFilterContext::command_queue
struct AVFilterCommand * command_queue
Definition: avfilter_internal.h:118
ff_frame_pool_uninit
void ff_frame_pool_uninit(FFFramePool **pool)
Deallocate the frame pool.
Definition: framepool.c:283
eval.h
AVFILTERPAD_FLAG_NEEDS_WRITABLE
#define AVFILTERPAD_FLAG_NEEDS_WRITABLE
The filter expects writable frames from its input link, duplicating data buffers if needed.
Definition: filters.h:57
AV_OPT_FLAG_FILTERING_PARAM
#define AV_OPT_FLAG_FILTERING_PARAM
A generic parameter which can be set by the user for filtering.
Definition: opt.h:381
f
f
Definition: af_crystalizer.c:122
default_execute
static int default_execute(AVFilterContext *ctx, avfilter_action_func *func, void *arg, int *ret, int nb_jobs)
Definition: avfilter.c:686
AVMediaType
AVMediaType
Definition: avutil.h:199
guess_status_pts
static int64_t guess_status_pts(AVFilterContext *ctx, int status, AVRational link_time_base)
Definition: avfilter.c:502
ff_inlink_set_status
void ff_inlink_set_status(AVFilterLink *link, int status)
Set the status on an input link.
Definition: avfilter.c:1602
ff_inlink_check_available_frame
int ff_inlink_check_available_frame(AVFilterLink *link)
Test if a frame is available on the link.
Definition: avfilter.c:1459
av_bprint_finalize
int av_bprint_finalize(AVBPrint *buf, char **ret_str)
Finalize a print buffer.
Definition: bprint.c:240
FilterLinkInternal::age_index
int age_index
Index in the age array.
Definition: avfilter_internal.h:80
dst
uint8_t ptrdiff_t const uint8_t ptrdiff_t int intptr_t intptr_t int int16_t * dst
Definition: dsp.h:83
av_frame_copy
int av_frame_copy(AVFrame *dst, const AVFrame *src)
Copy the frame data from src to dst.
Definition: frame.c:1015
av_err2str
#define av_err2str(errnum)
Convenience macro, the return value should be used only directly in function arguments but never stan...
Definition: error.h:122
AVFrame::sample_rate
int sample_rate
Sample rate of the audio data.
Definition: frame.h:588
avfilter_link
int avfilter_link(AVFilterContext *src, unsigned srcpad, AVFilterContext *dst, unsigned dstpad)
Link two filters together.
Definition: avfilter.c:149
AV_SAMPLE_FMT_NONE
@ AV_SAMPLE_FMT_NONE
Definition: samplefmt.h:56
AV_NOPTS_VALUE
#define AV_NOPTS_VALUE
Undefined timestamp value.
Definition: avutil.h:248
FFFilterGraph::frame_queues
FFFrameQueueGlobal frame_queues
Definition: avfilter_internal.h:147
AVFrame::time_base
AVRational time_base
Time base for the timestamps in this frame.
Definition: frame.h:516
OFFSET
#define OFFSET(x)
Definition: avfilter.c:659
av_frame_is_writable
int av_frame_is_writable(AVFrame *frame)
Check if the frame data is writable.
Definition: frame.c:661
AVFrame::format
int format
format of the frame, -1 if unknown or unset Values correspond to enum AVPixelFormat for video frames,...
Definition: frame.h:476
AVOption::name
const char * name
Definition: opt.h:430
frame.h
ff_filter_process_command
int ff_filter_process_command(AVFilterContext *ctx, const char *cmd, const char *arg, char *res, int res_len, int flags)
Generic processing of user supplied commands that are set in the same way as the filter options.
Definition: avfilter.c:900
buffer.h
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_dict_free
void av_dict_free(AVDictionary **pm)
Free all the memory allocated for an AVDictionary struct and all keys and values.
Definition: dict.c:223
av_channel_layout_compare
int av_channel_layout_compare(const AVChannelLayout *chl, const AVChannelLayout *chl1)
Check whether two channel layouts are semantically the same, i.e.
Definition: channel_layout.c:807
AV_LOG_INFO
#define AV_LOG_INFO
Standard information.
Definition: log.h:220
avfilter_init_str
int avfilter_init_str(AVFilterContext *filter, const char *args)
Initialize a filter with the supplied parameters.
Definition: avfilter.c:954
AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC
#define AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC
Some filters support a generic "enable" expression option that can be used to enable or disable a fil...
Definition: avfilter.h:182
ff_framequeue_peek
AVFrame * ff_framequeue_peek(FFFrameQueue *fq, size_t idx)
Access a frame in the queue, without removing it.
Definition: framequeue.c:115
FilterLinkInternal::frame_blocked_in
int frame_blocked_in
If set, the source filter can not generate a frame as is.
Definition: avfilter_internal.h:49
av_get_picture_type_char
char av_get_picture_type_char(enum AVPictureType pict_type)
Return a single letter to describe the given picture type pict_type.
Definition: utils.c:40
ff_tlog_link
#define ff_tlog_link(ctx, link, end)
Definition: avfilter_internal.h:210
FFFilterContext::state_flags
unsigned state_flags
Definition: avfilter_internal.h:104
av_opt_next
const AVOption * av_opt_next(const void *obj, const AVOption *last)
Iterate over all AVOptions belonging to obj.
Definition: opt.c:48
ff_formats_unref
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:717
avfilter_options
static const AVOption avfilter_options[]
Definition: avfilter.c:662
bprint.h
append_pad
static int append_pad(unsigned *count, AVFilterPad **pads, AVFilterLink ***links, AVFilterPad *newpad)
Append a new pad.
Definition: avfilter.c:100
i
#define i(width, name, range_min, range_max)
Definition: cbs_h2645.c:256
link_set_out_status
static void link_set_out_status(AVFilterLink *link, int status, int64_t pts)
Set the status field of a link from the destination filter.
Definition: avfilter.c:279
filter_child_next
static void * filter_child_next(void *obj, void *prev)
Definition: avfilter.c:640
ff_avfilter_link_set_in_status
void ff_avfilter_link_set_in_status(AVFilterLink *link, int status, int64_t pts)
Set the status field of a link from the source filter.
Definition: avfilter.c:260
av_opt_set_dict2
int av_opt_set_dict2(void *obj, AVDictionary **options, int search_flags)
Set all the options from a given dictionary on an object.
Definition: opt.c:1962
internal.h
fffilterctx
static FFFilterContext * fffilterctx(AVFilterContext *ctx)
Definition: avfilter_internal.h:121
AVFrame::extended_data
uint8_t ** extended_data
pointers to the data planes/channels.
Definition: frame.h:450
AVFilterCommand
Definition: avfilter_internal.h:126
FilterLinkInternal::status_in
int status_in
Link input status.
Definition: avfilter_internal.h:56
common.h
ff_filter_get_nb_threads
int ff_filter_get_nb_threads(AVFilterContext *ctx)
Get number of threads for current filter instance.
Definition: avfilter.c:840
av_assert1
#define av_assert1(cond)
assert() equivalent, that does not lie in speed critical code.
Definition: avassert.h:56
ff_framequeue_queued_samples
static uint64_t ff_framequeue_queued_samples(const FFFrameQueue *fq)
Get the number of queued samples.
Definition: framequeue.h:154
value
it s the only field you need to keep assuming you have a context There is some magic you don t need to care about around this just let it vf default value
Definition: writing_filters.txt:86
FilterLinkInternal::frame_wanted_out
int frame_wanted_out
True if a frame is currently wanted on the output of this filter.
Definition: avfilter_internal.h:75
FFMIN
#define FFMIN(a, b)
Definition: macros.h:49
FF_TPRINTF_START
#define FF_TPRINTF_START(ctx, func)
Definition: avfilter_internal.h:205
av_mallocz
void * av_mallocz(size_t size)
Allocate a memory block with alignment suitable for all memory accesses (including vectors if availab...
Definition: mem.c:256
AVFilterPad::flags
int flags
A combination of AVFILTERPAD_FLAG_* flags.
Definition: filters.h:67
filt
static const int8_t filt[NUMTAPS *2]
Definition: af_earwax.c:40
AVFilterPad::name
const char * name
Pad name.
Definition: filters.h:44
AVCOL_SPC_UNSPECIFIED
@ AVCOL_SPC_UNSPECIFIED
Definition: pixfmt.h:643
ff_inlink_queued_samples
int ff_inlink_queued_samples(AVFilterLink *link)
Definition: avfilter.c:1465
VAR_W
@ VAR_W
Definition: avfilter.c:562
forward_status_change
static int forward_status_change(AVFilterContext *filter, FilterLinkInternal *li_in)
Definition: avfilter.c:1216
AV_FRAME_FLAG_INTERLACED
#define AV_FRAME_FLAG_INTERLACED
A flag to mark frames whose content is interlaced.
Definition: frame.h:648
av_calloc
void * av_calloc(size_t nmemb, size_t size)
Definition: mem.c:264
AVFilter
Filter definition.
Definition: avfilter.h:201
AVHWFramesContext
This struct describes a set or pool of "hardware" frames (i.e.
Definition: hwcontext.h:115
FFFilterContext::ready
unsigned ready
Ready status of the filter.
Definition: avfilter_internal.h:111
ret
ret
Definition: filter_design.txt:187
AVFilterPad::type
enum AVMediaType type
AVFilterPad type.
Definition: filters.h:49
links
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 links
Definition: filter_design.txt:14
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:80
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:264
framepool.h
pos
unsigned int pos
Definition: spdifenc.c:414
AVOption::type
enum AVOptionType type
Definition: opt.h:445
AVFrame::sample_aspect_ratio
AVRational sample_aspect_ratio
Sample aspect ratio for the video frame, 0/1 if unknown/unspecified.
Definition: frame.h:496
request_frame
static int request_frame(AVFilterLink *outlink)
Definition: af_aecho.c:272
ff_framequeue_queued_frames
static size_t ff_framequeue_queued_frames(const FFFrameQueue *fq)
Get the number of queued frames.
Definition: framequeue.h:146
avfilter_pad_get_type
enum AVMediaType avfilter_pad_get_type(const AVFilterPad *pads, int pad_idx)
Get the type of an AVFilterPad.
Definition: avfilter.c:987
av_get_media_type_string
const char * av_get_media_type_string(enum AVMediaType media_type)
Return a string describing the media_type enum, NULL if media_type is unknown.
Definition: utils.c:28
ff_filter_graph_remove_filter
void ff_filter_graph_remove_filter(AVFilterGraph *graph, AVFilterContext *filter)
Remove a filter from a graph;.
Definition: avfiltergraph.c:99
status
ov_status_e status
Definition: dnn_backend_openvino.c:100
channel_layout.h
FFFilterContext::execute
avfilter_execute_func * execute
Definition: avfilter_internal.h:101
ff_filter_execute
int ff_filter_execute(AVFilterContext *ctx, avfilter_action_func *func, void *arg, int *ret, int nb_jobs)
Definition: avfilter.c:1666
AVClass::option
const struct AVOption * option
An array of options for the structure or NULL.
Definition: log.h:95
avfilter_init_dict
int avfilter_init_dict(AVFilterContext *ctx, AVDictionary **options)
Initialize a filter with the supplied dictionary of options.
Definition: avfilter.c:913
AVRational::den
int den
Denominator.
Definition: rational.h:60
AV_PIX_FMT_NONE
@ AV_PIX_FMT_NONE
Definition: pixfmt.h:72
AV_OPT_FLAG_RUNTIME_PARAM
#define AV_OPT_FLAG_RUNTIME_PARAM
A generic parameter which can be set by the user at runtime.
Definition: opt.h:377
AV_OPT_TYPE_INT
@ AV_OPT_TYPE_INT
Underlying C type is int.
Definition: opt.h:259
avfilter.h
av_channel_layout_uninit
void av_channel_layout_uninit(AVChannelLayout *channel_layout)
Free any allocated data in the channel layout and reset the channel count to 0.
Definition: channel_layout.c:440
AVFilterCommand::command
char * command
command
Definition: avfilter_internal.h:128
FFFilterContext
Definition: avfilter_internal.h:95
ref
static int ref[MAX_W *MAX_W]
Definition: jpeg2000dwt.c:117
samples
Filter the word “frame” indicates either a video frame or a group of audio samples
Definition: filter_design.txt:8
FilterLinkInternal::init_state
enum FilterLinkInternal::@309 init_state
stage of the initialization of the link properties (dimensions, etc)
AVFilterCommand::arg
char * arg
optional argument for the command
Definition: avfilter_internal.h:129
FFFilterContext::var_values
double * var_values
Definition: avfilter_internal.h:116
filter_frame_framed
static int filter_frame_framed(AVFilterLink *link, AVFrame *frame)
Definition: avfilter.c:1029
ff_outlink_get_status
int ff_outlink_get_status(AVFilterLink *link)
Get the status on an output link.
Definition: avfilter.c:1618
AVFilterContext
An instance of a filter.
Definition: avfilter.h:457
FF_DISABLE_DEPRECATION_WARNINGS
#define FF_DISABLE_DEPRECATION_WARNINGS
Definition: internal.h:72
AVFILTER_FLAG_SLICE_THREADS
#define AVFILTER_FLAG_SLICE_THREADS
The filter supports multithreading by splitting frames into multiple parts and processing them concur...
Definition: avfilter.h:152
av_strdup
char * av_strdup(const char *s)
Duplicate a string.
Definition: mem.c:272
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:201
mem.h
audio.h
TFLAGS
#define TFLAGS
Definition: avfilter.c:661
avfilter_free
void avfilter_free(AVFilterContext *filter)
Free a filter context.
Definition: avfilter.c:794
ff_append_outpad
int ff_append_outpad(AVFilterContext *f, AVFilterPad *p)
Definition: avfilter.c:138
FLAGS
#define FLAGS
Definition: avfilter.c:660
av_free
#define av_free(p)
Definition: tableprint_vlc.h:33
AVDictionaryEntry
Definition: dict.h:89
ff_tlog
#define ff_tlog(ctx,...)
Definition: internal.h:141
default_filter_frame
static int default_filter_frame(AVFilterLink *link, AVFrame *frame)
Definition: avfilter.c:992
ff_inlink_process_commands
int ff_inlink_process_commands(AVFilterLink *link, const AVFrame *frame)
Process the commands queued in the link up to the time of the frame.
Definition: avfilter.c:1577
VAR_N
@ VAR_N
Definition: avfilter.c:558
AVFILTER_FLAG_SUPPORT_TIMELINE
#define AVFILTER_FLAG_SUPPORT_TIMELINE
Handy mask to test whether the filter supports or no the timeline feature (internally or generically)...
Definition: avfilter.h:195
ff_append_outpad_free_name
int ff_append_outpad_free_name(AVFilterContext *f, AVFilterPad *p)
Definition: avfilter.c:143
av_freep
#define av_freep(p)
Definition: tableprint_vlc.h:34
av_dict_set
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:88
var_names
static const char *const var_names[]
Definition: avfilter.c:545
samples_ready
static int samples_ready(FilterLinkInternal *link, unsigned min)
Definition: avfilter.c:1115
FilterLinkInternal::frame_pool
struct FFFramePool * frame_pool
Definition: avfilter_internal.h:37
AV_OPT_TYPE_FLAGS
@ AV_OPT_TYPE_FLAGS
Underlying C type is unsigned int.
Definition: opt.h:255
flags
#define flags(name, subs,...)
Definition: cbs_av1.c:482
hwcontext.h
av_log
#define av_log(a,...)
Definition: tableprint_vlc.h:27
FilterLinkInternal::fifo
FFFrameQueue fifo
Queue of frames waiting to be filtered.
Definition: avfilter_internal.h:42
ff_channel_layouts_changeref
void ff_channel_layouts_changeref(AVFilterChannelLayouts **oldref, AVFilterChannelLayouts **newref)
Definition: formats.c:747
avstring.h
AVFilterContext::filter
const AVFilter * filter
the AVFilter of which this is an instance
Definition: avfilter.h:460
AV_OPT_TYPE_STRING
@ AV_OPT_TYPE_STRING
Underlying C type is a uint8_t* that is either NULL or points to a C string allocated with the av_mal...
Definition: opt.h:276
avfilter_get_class
const AVClass * avfilter_get_class(void)
Definition: avfilter.c:1633
AV_OPT_TYPE_CONST
@ AV_OPT_TYPE_CONST
Special option type for declaring named constants.
Definition: opt.h:299
FilterLinkInternal::status_in_pts
int64_t status_in_pts
Timestamp of the input status change.
Definition: avfilter_internal.h:61
av_dict_iterate
const AVDictionaryEntry * av_dict_iterate(const AVDictionary *m, const AVDictionaryEntry *prev)
Iterate over a dictionary.
Definition: dict.c:44
src
#define src
Definition: vp8dsp.c:248
AV_DICT_DONT_STRDUP_KEY
#define AV_DICT_DONT_STRDUP_KEY
Take ownership of a key that's been allocated with av_malloc() or another memory allocation function.
Definition: dict.h:77
av_x_if_null
static void * av_x_if_null(const void *p, const void *x)
Return x default pointer in case p is NULL.
Definition: avutil.h:312
filter_frame_to_filter
static int filter_frame_to_filter(AVFilterLink *link)
Definition: avfilter.c:1183
av_get_pix_fmt_name
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:3090
ff_filter_set_ready
void ff_filter_set_ready(AVFilterContext *filter, unsigned priority)
Mark a filter ready and schedule it for activation.
Definition: avfilter.c:239
ff_filter_init_hw_frames
int ff_filter_init_hw_frames(AVFilterContext *avctx, AVFilterLink *link, int default_pool_size)
Perform any additional setup required for hardware frames.
Definition: avfilter.c:1638
AVFilterCommand::time
double time
time expressed in seconds
Definition: avfilter_internal.h:127
min
float min
Definition: vorbis_enc_data.h:429