FFmpeg
vf_frei0r.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2010 Stefano Sabatini
3  * This file is part of FFmpeg.
4  *
5  * FFmpeg is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2.1 of the License, or (at your option) any later version.
9  *
10  * FFmpeg is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with FFmpeg; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18  */
19 
20 /**
21  * @file
22  * frei0r wrapper
23  */
24 
25 #include <frei0r.h>
26 #include <stdio.h>
27 #include <string.h>
28 #include <stdlib.h>
29 #include "config.h"
30 #include "compat/w32dlfcn.h"
31 #include "libavutil/avstring.h"
32 #include "libavutil/common.h"
33 #include "libavutil/eval.h"
34 #include "libavutil/getenv_utf8.h"
35 #include "libavutil/imgutils.h"
36 #include "libavutil/internal.h"
37 #include "libavutil/mathematics.h"
38 #include "libavutil/mem.h"
39 #include "libavutil/opt.h"
40 #include "libavutil/parseutils.h"
41 #include "avfilter.h"
42 #include "filters.h"
43 #include "formats.h"
44 #include "video.h"
45 
46 #ifdef __APPLE__
47 /* frei0r plugins use .so on macOS */
48 #define FREI0R_SLIBSUF ".so"
49 #else
50 #define FREI0R_SLIBSUF SLIBSUF
51 #endif
52 
53 typedef f0r_instance_t (*f0r_construct_f)(unsigned int width, unsigned int height);
54 typedef void (*f0r_destruct_f)(f0r_instance_t instance);
55 typedef void (*f0r_deinit_f)(void);
56 typedef int (*f0r_init_f)(void);
57 typedef void (*f0r_get_plugin_info_f)(f0r_plugin_info_t *info);
58 typedef void (*f0r_get_param_info_f)(f0r_param_info_t *info, int param_index);
59 typedef void (*f0r_update_f)(f0r_instance_t instance, double time, const uint32_t *inframe, uint32_t *outframe);
60 typedef void (*f0r_update2_f)(f0r_instance_t instance, double time, const uint32_t *inframe1, const uint32_t *inframe2, const uint32_t *inframe3, uint32_t *outframe);
61 typedef void (*f0r_set_param_value_f)(f0r_instance_t instance, f0r_param_t param, int param_index);
62 typedef void (*f0r_get_param_value_f)(f0r_instance_t instance, f0r_param_t param, int param_index);
63 
64 typedef struct Frei0rContext {
65  const AVClass *class;
67  void *dl_handle; /* dynamic library handle */
68  f0r_instance_t instance;
69  f0r_plugin_info_t plugin_info;
70 
77 
78  char *dl_name;
79  char *params;
81 
82  /* only used by the source */
83  int w, h;
85  uint64_t pts;
87 
88 static void *load_sym(AVFilterContext *ctx, const char *sym_name)
89 {
90  Frei0rContext *s = ctx->priv;
91  void *sym = dlsym(s->dl_handle, sym_name);
92  if (!sym)
93  av_log(ctx, AV_LOG_ERROR, "Could not find symbol '%s' in loaded module.\n", sym_name);
94  return sym;
95 }
96 
97 static int set_param(AVFilterContext *ctx, f0r_param_info_t info, int index, char *param)
98 {
99  Frei0rContext *s = ctx->priv;
100  union {
101  double d;
102  f0r_param_color_t col;
103  f0r_param_position_t pos;
104  f0r_param_string str;
105  } val;
106  char *tail;
107  uint8_t rgba[4];
108 
109  switch (info.type) {
110  case F0R_PARAM_BOOL:
111  if (!strcmp(param, "y")) val.d = 1.0;
112  else if (!strcmp(param, "n")) val.d = 0.0;
113  else goto fail;
114  break;
115 
116  case F0R_PARAM_DOUBLE:
117  val.d = av_strtod(param, &tail);
118  if (*tail || val.d == HUGE_VAL)
119  goto fail;
120  break;
121 
122  case F0R_PARAM_COLOR:
123  if (sscanf(param, "%f/%f/%f", &val.col.r, &val.col.g, &val.col.b) != 3) {
124  if (av_parse_color(rgba, param, -1, ctx) < 0)
125  goto fail;
126  val.col.r = rgba[0] / 255.0;
127  val.col.g = rgba[1] / 255.0;
128  val.col.b = rgba[2] / 255.0;
129  }
130  break;
131 
132  case F0R_PARAM_POSITION:
133  if (sscanf(param, "%lf/%lf", &val.pos.x, &val.pos.y) != 2)
134  goto fail;
135  break;
136 
137  case F0R_PARAM_STRING:
138  val.str = param;
139  break;
140  }
141 
142  s->set_param_value(s->instance, &val, index);
143  return 0;
144 
145 fail:
146  av_log(ctx, AV_LOG_ERROR, "Invalid value '%s' for parameter '%s'.\n",
147  param, info.name);
148  return AVERROR(EINVAL);
149 }
150 
151 static int set_params(AVFilterContext *ctx, const char *params)
152 {
153  Frei0rContext *s = ctx->priv;
154  int i;
155 
156  if (!params)
157  return 0;
158 
159  for (i = 0; i < s->plugin_info.num_params; i++) {
160  f0r_param_info_t info;
161  char *param;
162  int ret;
163 
164  s->get_param_info(&info, i);
165 
166  if (*params) {
167  if (!(param = av_get_token(&params, "|")))
168  return AVERROR(ENOMEM);
169  if (*params)
170  params++; /* skip ':' */
171  ret = set_param(ctx, info, i, param);
172  av_free(param);
173  if (ret < 0)
174  return ret;
175  }
176  }
177 
178  return 0;
179 }
180 
181 static int load_path(AVFilterContext *ctx, void **handle_ptr, const char *prefix, const char *name)
182 {
183  char *path = av_asprintf("%s%s%s", prefix, name, FREI0R_SLIBSUF);
184  if (!path)
185  return AVERROR(ENOMEM);
186  av_log(ctx, AV_LOG_DEBUG, "Looking for frei0r effect in '%s'.\n", path);
187  *handle_ptr = dlopen(path, RTLD_NOW|RTLD_LOCAL);
188  av_free(path);
189  return 0;
190 }
191 
193  const char *dl_name, int type)
194 {
195  Frei0rContext *s = ctx->priv;
196  f0r_init_f f0r_init;
197  f0r_get_plugin_info_f f0r_get_plugin_info;
198  f0r_plugin_info_t *pi;
199  char *path;
200  int ret = 0;
201  int i;
202  static const char* const frei0r_pathlist[] = {
203  "/usr/local/lib/frei0r-1/",
204  "/usr/lib/frei0r-1/",
205  "/usr/local/lib64/frei0r-1/",
206  "/usr/lib64/frei0r-1/"
207  };
208 
209  if (!dl_name) {
210  av_log(ctx, AV_LOG_ERROR, "No filter name provided.\n");
211  return AVERROR(EINVAL);
212  }
213 
214  /* see: http://frei0r.dyne.org/codedoc/html/group__pluglocations.html */
215  if (path = getenv_dup("FREI0R_PATH")) {
216 #ifdef _WIN32
217  const char *separator = ";";
218 #else
219  const char *separator = ":";
220 #endif
221  char *p, *ptr = NULL;
222  for (p = path; p = av_strtok(p, separator, &ptr); p = NULL) {
223  /* add additional trailing slash in case it is missing */
224  char *p1 = av_asprintf("%s/", p);
225  if (!p1) {
226  ret = AVERROR(ENOMEM);
227  goto check_path_end;
228  }
229  ret = load_path(ctx, &s->dl_handle, p1, dl_name);
230  av_free(p1);
231  if (ret < 0)
232  goto check_path_end;
233  if (s->dl_handle)
234  break;
235  }
236 
237  check_path_end:
238  av_free(path);
239  if (ret < 0)
240  return ret;
241  }
242  if (!s->dl_handle && (path = getenv_utf8("HOME"))) {
243  char *prefix = av_asprintf("%s/.frei0r-1/lib/", path);
244  if (!prefix) {
245  ret = AVERROR(ENOMEM);
246  goto home_path_end;
247  }
248  ret = load_path(ctx, &s->dl_handle, prefix, dl_name);
249  av_free(prefix);
250 
251  home_path_end:
252  freeenv_utf8(path);
253  if (ret < 0)
254  return ret;
255  }
256  for (i = 0; !s->dl_handle && i < FF_ARRAY_ELEMS(frei0r_pathlist); i++) {
257  ret = load_path(ctx, &s->dl_handle, frei0r_pathlist[i], dl_name);
258  if (ret < 0)
259  return ret;
260  }
261  if (!s->dl_handle) {
262  av_log(ctx, AV_LOG_ERROR, "Could not find module '%s'.\n", dl_name);
263  return AVERROR(EINVAL);
264  }
265 
266  if (!(f0r_init = load_sym(ctx, "f0r_init" )) ||
267  !(f0r_get_plugin_info = load_sym(ctx, "f0r_get_plugin_info")) ||
268  !(s->get_param_info = load_sym(ctx, "f0r_get_param_info" )) ||
269  !(s->get_param_value = load_sym(ctx, "f0r_get_param_value")) ||
270  !(s->set_param_value = load_sym(ctx, "f0r_set_param_value")) ||
271  !(s->update = load_sym(ctx, "f0r_update" )) ||
272  !(s->construct = load_sym(ctx, "f0r_construct" )) ||
273  !(s->destruct = load_sym(ctx, "f0r_destruct" )) ||
274  !(s->deinit = load_sym(ctx, "f0r_deinit" )))
275  return AVERROR(EINVAL);
276 
277  if (f0r_init() < 0) {
278  av_log(ctx, AV_LOG_ERROR, "Could not init the frei0r module.\n");
279  return AVERROR(EINVAL);
280  }
281 
282  f0r_get_plugin_info(&s->plugin_info);
283  pi = &s->plugin_info;
284  if (pi->plugin_type != type) {
286  "Invalid type '%s' for this plugin\n",
287  pi->plugin_type == F0R_PLUGIN_TYPE_FILTER ? "filter" :
288  pi->plugin_type == F0R_PLUGIN_TYPE_SOURCE ? "source" :
289  pi->plugin_type == F0R_PLUGIN_TYPE_MIXER2 ? "mixer2" :
290  pi->plugin_type == F0R_PLUGIN_TYPE_MIXER3 ? "mixer3" : "unknown");
291  return AVERROR(EINVAL);
292  }
293 
295  "name:%s author:'%s' explanation:'%s' color_model:%s "
296  "frei0r_version:%d version:%d.%d num_params:%d\n",
297  pi->name, pi->author, pi->explanation,
298  pi->color_model == F0R_COLOR_MODEL_BGRA8888 ? "bgra8888" :
299  pi->color_model == F0R_COLOR_MODEL_RGBA8888 ? "rgba8888" :
300  pi->color_model == F0R_COLOR_MODEL_PACKED32 ? "packed32" : "unknown",
301  pi->frei0r_version, pi->major_version, pi->minor_version, pi->num_params);
302 
303  return 0;
304 }
305 
307 {
308  Frei0rContext *s = ctx->priv;
309 
310  return frei0r_init(ctx, s->dl_name, F0R_PLUGIN_TYPE_FILTER);
311 }
312 
314 {
315  Frei0rContext *s = ctx->priv;
316 
317  if (s->destruct && s->instance)
318  s->destruct(s->instance);
319  if (s->deinit)
320  s->deinit();
321  if (s->dl_handle)
322  dlclose(s->dl_handle);
323 }
324 
326 {
327  AVFilterContext *ctx = inlink->dst;
328  Frei0rContext *s = ctx->priv;
329 
330  if (s->destruct && s->instance)
331  s->destruct(s->instance);
332  if (!(s->instance = s->construct(inlink->w, inlink->h))) {
333  av_log(ctx, AV_LOG_ERROR, "Impossible to load frei0r instance.\n");
334  return AVERROR(EINVAL);
335  }
336 
337  return set_params(ctx, s->params);
338 }
339 
341  AVFilterFormatsConfig **cfg_in,
342  AVFilterFormatsConfig **cfg_out)
343 {
344  const Frei0rContext *s = ctx->priv;
346  int ret;
347 
348  if (s->plugin_info.color_model == F0R_COLOR_MODEL_BGRA8888) {
349  if ((ret = ff_add_format(&formats, AV_PIX_FMT_BGRA)) < 0)
350  return ret;
351  } else if (s->plugin_info.color_model == F0R_COLOR_MODEL_RGBA8888) {
352  if ((ret = ff_add_format(&formats, AV_PIX_FMT_RGBA)) < 0)
353  return ret;
354  } else { /* F0R_COLOR_MODEL_PACKED32 */
355  static const enum AVPixelFormat pix_fmts[] = {
357  };
359  }
360 
361  if (!formats)
362  return AVERROR(ENOMEM);
363 
364  return ff_set_common_formats2(ctx, cfg_in, cfg_out, formats);
365 }
366 
368 {
369  Frei0rContext *s = inlink->dst->priv;
370  AVFilterLink *outlink = inlink->dst->outputs[0];
371  /* align parameter is the line alignment, not the buffer alignment.
372  * frei0r expects line size to be width*4 so we want an align of 1
373  * to ensure lines aren't padded out. */
374  AVFrame *out = ff_default_get_video_buffer2(outlink, outlink->w, outlink->h, 1);
375  if (!out)
376  goto fail;
377 
379 
380  if (in->linesize[0] != out->linesize[0]) {
381  AVFrame *in2 = ff_default_get_video_buffer2(outlink, outlink->w, outlink->h, 1);
382  if (!in2)
383  goto fail;
384  av_frame_copy(in2, in);
385  if (av_frame_copy_props(in2, in) < 0) {
386  av_frame_free(&in2);
387  goto fail;
388  }
389  av_frame_free(&in);
390  in = in2;
391  }
392 
393  s->update(s->instance, in->pts * av_q2d(inlink->time_base),
394  (const uint32_t *)in->data[0],
395  (uint32_t *)out->data[0]);
396 
397  av_frame_free(&in);
398 
399  return ff_filter_frame(outlink, out);
400 fail:
401  av_frame_free(&in);
402  av_frame_free(&out);
403  return AVERROR(ENOMEM);
404 }
405 
406 static int process_command(AVFilterContext *ctx, const char *cmd, const char *args,
407  char *res, int res_len, int flags)
408 {
409  Frei0rContext *s = ctx->priv;
410  int ret;
411 
412  ret = ff_filter_process_command(ctx, cmd, args, res, res_len, flags);
413  if (ret < 0)
414  return ret;
415 
416  return set_params(ctx, s->params);
417 }
418 
419 #define OFFSET(x) offsetof(Frei0rContext, x)
420 #define FLAGS AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_FILTERING_PARAM
421 #define TFLAGS AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_FILTERING_PARAM | AV_OPT_FLAG_RUNTIME_PARAM
422 static const AVOption frei0r_options[] = {
423  { "filter_name", NULL, OFFSET(dl_name), AV_OPT_TYPE_STRING, .flags = FLAGS },
424  { "filter_params", NULL, OFFSET(params), AV_OPT_TYPE_STRING, .flags = TFLAGS },
425  { NULL }
426 };
427 
428 AVFILTER_DEFINE_CLASS(frei0r);
429 
431  {
432  .name = "default",
433  .type = AVMEDIA_TYPE_VIDEO,
434  .config_props = config_input_props,
435  .filter_frame = filter_frame,
436  },
437 };
438 
440  .p.name = "frei0r",
441  .p.description = NULL_IF_CONFIG_SMALL("Apply a frei0r effect."),
442  .p.priv_class = &frei0r_class,
444  .init = filter_init,
445  .uninit = uninit,
446  .priv_size = sizeof(Frei0rContext),
450  .process_command = process_command,
451 };
452 
454 {
455  Frei0rContext *s = ctx->priv;
456 
457  s->time_base.num = s->framerate.den;
458  s->time_base.den = s->framerate.num;
459 
460  return frei0r_init(ctx, s->dl_name, F0R_PLUGIN_TYPE_SOURCE);
461 }
462 
463 static int source_config_props(AVFilterLink *outlink)
464 {
465  AVFilterContext *ctx = outlink->src;
466  FilterLink *l = ff_filter_link(outlink);
467  Frei0rContext *s = ctx->priv;
468 
469  if (av_image_check_size(s->w, s->h, 0, ctx) < 0)
470  return AVERROR(EINVAL);
471  outlink->w = s->w;
472  outlink->h = s->h;
473  outlink->time_base = s->time_base;
474  l->frame_rate = av_inv_q(s->time_base);
475  outlink->sample_aspect_ratio = (AVRational){1,1};
476 
477  if (s->destruct && s->instance)
478  s->destruct(s->instance);
479  if (!(s->instance = s->construct(outlink->w, outlink->h))) {
480  av_log(ctx, AV_LOG_ERROR, "Impossible to load frei0r instance.\n");
481  return AVERROR(EINVAL);
482  }
483  if (!s->params) {
484  av_log(ctx, AV_LOG_ERROR, "frei0r filter parameters not set.\n");
485  return AVERROR(EINVAL);
486  }
487 
488  return set_params(ctx, s->params);
489 }
490 
491 static int source_request_frame(AVFilterLink *outlink)
492 {
493  Frei0rContext *s = outlink->src->priv;
494  AVFrame *frame = ff_default_get_video_buffer2(outlink, outlink->w, outlink->h, 1);
495 
496  if (!frame)
497  return AVERROR(ENOMEM);
498 
499  frame->sample_aspect_ratio = (AVRational) {1, 1};
500  frame->pts = s->pts++;
501  frame->duration = 1;
502 
503  s->update(s->instance, av_rescale_q(frame->pts, s->time_base, (AVRational){1,1000}),
504  NULL, (uint32_t *)frame->data[0]);
505 
506  return ff_filter_frame(outlink, frame);
507 }
508 
509 static const AVOption frei0r_src_options[] = {
510  { "size", "Dimensions of the generated video.", OFFSET(w), AV_OPT_TYPE_IMAGE_SIZE, { .str = "320x240" }, .flags = FLAGS },
511  { "framerate", NULL, OFFSET(framerate), AV_OPT_TYPE_VIDEO_RATE, { .str = "25" }, 0, INT_MAX, .flags = FLAGS },
512  { "filter_name", NULL, OFFSET(dl_name), AV_OPT_TYPE_STRING, .flags = FLAGS },
513  { "filter_params", NULL, OFFSET(params), AV_OPT_TYPE_STRING, .flags = FLAGS },
514  { NULL },
515 };
516 
517 AVFILTER_DEFINE_CLASS(frei0r_src);
518 
520  {
521  .name = "default",
522  .type = AVMEDIA_TYPE_VIDEO,
523  .request_frame = source_request_frame,
524  .config_props = source_config_props
525  },
526 };
527 
529  .p.name = "frei0r_src",
530  .p.description = NULL_IF_CONFIG_SMALL("Generate a frei0r source."),
531  .p.priv_class = &frei0r_src_class,
532  .p.inputs = NULL,
533  .priv_size = sizeof(Frei0rContext),
534  .init = source_init,
535  .uninit = uninit,
538 };
flags
const SwsFlags flags[]
Definition: swscale.c:72
formats
formats
Definition: signature.h:47
ff_default_get_video_buffer2
AVFrame * ff_default_get_video_buffer2(AVFilterLink *link, int w, int h, int align)
Definition: video.c:49
Frei0rContext
Definition: vf_frei0r.c:64
load_sym
static void * load_sym(AVFilterContext *ctx, const char *sym_name)
Definition: vf_frei0r.c:88
AVPixelFormat
AVPixelFormat
Pixel format.
Definition: pixfmt.h:71
name
it s the only field you need to keep assuming you have a context There is some magic you don t need to care about around this just let it vf default minimum maximum flags name is the option name
Definition: writing_filters.txt:88
f0r_set_param_value_f
void(* f0r_set_param_value_f)(f0r_instance_t instance, f0r_param_t param, int param_index)
Definition: vf_frei0r.c:61
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
out
static FILE * out
Definition: movenc.c:55
ff_filter_frame
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
Definition: avfilter.c:1067
av_parse_color
int av_parse_color(uint8_t *rgba_color, const char *color_string, int slen, void *log_ctx)
Put the RGBA values that correspond to color_string in rgba_color.
Definition: parseutils.c:359
AV_OPT_TYPE_VIDEO_RATE
@ AV_OPT_TYPE_VIDEO_RATE
Underlying C type is AVRational.
Definition: opt.h:315
Frei0rContext::deinit
f0r_deinit_f deinit
Definition: vf_frei0r.c:76
ff_set_common_formats2
int ff_set_common_formats2(const AVFilterContext *ctx, AVFilterFormatsConfig **cfg_in, AVFilterFormatsConfig **cfg_out, AVFilterFormats *formats)
Definition: formats.c:1136
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_asprintf
char * av_asprintf(const char *fmt,...)
Definition: avstring.c:115
uninit
static av_cold void uninit(AVFilterContext *ctx)
Definition: vf_frei0r.c:313
set_params
static int set_params(AVFilterContext *ctx, const char *params)
Definition: vf_frei0r.c:151
AVFILTER_DEFINE_CLASS
AVFILTER_DEFINE_CLASS(frei0r)
source_init
static av_cold int source_init(AVFilterContext *ctx)
Definition: vf_frei0r.c:453
av_frame_free
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
Definition: frame.c:64
AVFrame
This structure describes decoded (raw) audio or video data.
Definition: frame.h:427
AVFrame::pts
int64_t pts
Presentation timestamp in time_base units (time when frame should be shown to user).
Definition: frame.h:529
AVOption
AVOption.
Definition: opt.h:429
Frei0rContext::params
char * params
Definition: vf_frei0r.c:79
ff_make_pixel_format_list
av_warn_unused_result AVFilterFormats * ff_make_pixel_format_list(const enum AVPixelFormat *fmts)
Create a list of supported pixel formats.
FREI0R_SLIBSUF
#define FREI0R_SLIBSUF
Definition: vf_frei0r.c:50
f0r_get_param_value_f
void(* f0r_get_param_value_f)(f0r_instance_t instance, f0r_param_t param, int param_index)
Definition: vf_frei0r.c:62
filters.h
AV_LOG_VERBOSE
#define AV_LOG_VERBOSE
Detailed information.
Definition: log.h:226
freeenv_utf8
static void freeenv_utf8(char *var)
Definition: getenv_utf8.h:72
AV_PIX_FMT_BGRA
@ AV_PIX_FMT_BGRA
packed BGRA 8:8:8:8, 32bpp, BGRABGRA...
Definition: pixfmt.h:102
mathematics.h
AVFilter::name
const char * name
Filter name.
Definition: avfilter.h:220
video.h
Frei0rContext::dl_name
char * dl_name
Definition: vf_frei0r.c:78
AVFrame::data
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: frame.h:448
AVFilterFormats
A list of supported formats for one end of a filter link.
Definition: formats.h:64
formats.h
f0r_update2_f
void(* f0r_update2_f)(f0r_instance_t instance, double time, const uint32_t *inframe1, const uint32_t *inframe2, const uint32_t *inframe3, uint32_t *outframe)
Definition: vf_frei0r.c:60
AVFilterContext::priv
void * priv
private data for use by the filter
Definition: avfilter.h:289
fail
#define fail()
Definition: checkasm.h:223
source_request_frame
static int source_request_frame(AVFilterLink *outlink)
Definition: vf_frei0r.c:491
Frei0rContext::plugin_info
f0r_plugin_info_t plugin_info
Definition: vf_frei0r.c:69
val
static double val(void *priv, double ch)
Definition: aeval.c:77
type
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 type
Definition: writing_filters.txt:86
frei0r_init
static av_cold int frei0r_init(AVFilterContext *ctx, const char *dl_name, int type)
Definition: vf_frei0r.c:192
f0r_construct_f
f0r_instance_t(* f0r_construct_f)(unsigned int width, unsigned int height)
Definition: vf_frei0r.c:53
FILTER_QUERY_FUNC2
#define FILTER_QUERY_FUNC2(func)
Definition: filters.h:241
set_param
static int set_param(AVFilterContext *ctx, f0r_param_info_t info, int index, char *param)
Definition: vf_frei0r.c:97
AVFilterPad
A filter pad used for either input or output.
Definition: filters.h:40
OFFSET
#define OFFSET(x)
Definition: vf_frei0r.c:419
TFLAGS
#define TFLAGS
Definition: vf_frei0r.c:421
AV_LOG_ERROR
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:210
FF_ARRAY_ELEMS
#define FF_ARRAY_ELEMS(a)
Definition: sinewin_tablegen.c:29
av_cold
#define av_cold
Definition: attributes.h:111
ff_video_default_filterpad
const AVFilterPad ff_video_default_filterpad[1]
An AVFilterPad array whose only entry has name "default" and is of type AVMEDIA_TYPE_VIDEO.
Definition: video.c:37
FFFilter
Definition: filters.h:267
s
#define s(width, name)
Definition: cbs_vp9.c:198
FILTER_OUTPUTS
#define FILTER_OUTPUTS(array)
Definition: filters.h:265
source_config_props
static int source_config_props(AVFilterLink *outlink)
Definition: vf_frei0r.c:463
Frei0rContext::time_base
AVRational time_base
Definition: vf_frei0r.c:84
Frei0rContext::dl_handle
void * dl_handle
Definition: vf_frei0r.c:67
ff_filter_link
static FilterLink * ff_filter_link(AVFilterLink *link)
Definition: filters.h:199
av_q2d
static double av_q2d(AVRational a)
Convert an AVRational to a double.
Definition: rational.h:104
info
MIPS optimizations info
Definition: mips.txt:2
av_strtok
char * av_strtok(char *s, const char *delim, char **saveptr)
Split the string into several tokens which can be accessed by successive calls to av_strtok().
Definition: avstring.c:179
Frei0rContext::get_param_info
f0r_get_param_info_f get_param_info
Definition: vf_frei0r.c:71
pix_fmts
static enum AVPixelFormat pix_fmts[]
Definition: libkvazaar.c:296
process_command
static int process_command(AVFilterContext *ctx, const char *cmd, const char *args, char *res, int res_len, int flags)
Definition: vf_frei0r.c:406
filter_frame
static int filter_frame(AVFilterLink *inlink, AVFrame *in)
Definition: vf_frei0r.c:367
AV_LOG_DEBUG
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
Definition: log.h:231
ctx
static AVFormatContext * ctx
Definition: movenc.c:49
Frei0rContext::get_param_value
f0r_get_param_value_f get_param_value
Definition: vf_frei0r.c:72
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
Frei0rContext::pts
uint64_t pts
Definition: vf_frei0r.c:85
config_input_props
static int config_input_props(AVFilterLink *inlink)
Definition: vf_frei0r.c:325
AV_PIX_FMT_RGBA
@ AV_PIX_FMT_RGBA
packed RGBA 8:8:8:8, 32bpp, RGBARGBA...
Definition: pixfmt.h:100
framerate
float framerate
Definition: av1_levels.c:29
AVClass
Describe the class of an AVClass context structure.
Definition: log.h:76
NULL
#define NULL
Definition: coverity.c:32
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:599
AVRational
Rational number (pair of numerator and denominator).
Definition: rational.h:58
AV_OPT_TYPE_IMAGE_SIZE
@ AV_OPT_TYPE_IMAGE_SIZE
Underlying C type is two consecutive integers.
Definition: opt.h:303
ff_add_format
int ff_add_format(AVFilterFormats **avff, int64_t fmt)
Add fmt to the list of media formats contained in *avff.
Definition: formats.c:570
parseutils.h
getenv_utf8
static char * getenv_utf8(const char *varname)
Definition: getenv_utf8.h:67
filter_init
static av_cold int filter_init(AVFilterContext *ctx)
Definition: vf_frei0r.c:306
query_formats
static int query_formats(const AVFilterContext *ctx, AVFilterFormatsConfig **cfg_in, AVFilterFormatsConfig **cfg_out)
Definition: vf_frei0r.c:340
AV_PIX_FMT_ABGR
@ AV_PIX_FMT_ABGR
packed ABGR 8:8:8:8, 32bpp, ABGRABGR...
Definition: pixfmt.h:101
index
int index
Definition: gxfenc.c:90
AVFilterFormatsConfig
Lists of formats / etc.
Definition: avfilter.h:121
Frei0rContext::destruct
f0r_destruct_f destruct
Definition: vf_frei0r.c:75
eval.h
init
int(* init)(AVBSFContext *ctx)
Definition: dts2pts.c:550
NULL_IF_CONFIG_SMALL
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition: internal.h:94
height
#define height
Definition: dsp.h:89
av_frame_copy
int av_frame_copy(AVFrame *dst, const AVFrame *src)
Copy the frame data from src to dst.
Definition: frame.c:711
f0r_destruct_f
void(* f0r_destruct_f)(f0r_instance_t instance)
Definition: vf_frei0r.c:54
i
#define i(width, name, range_min, range_max)
Definition: cbs_h264.c:63
frei0r_options
static const AVOption frei0r_options[]
Definition: vf_frei0r.c:422
Frei0rContext::update
f0r_update_f update
Definition: vf_frei0r.c:66
load_path
static int load_path(AVFilterContext *ctx, void **handle_ptr, const char *prefix, const char *name)
Definition: vf_frei0r.c:181
getenv_dup
static char * getenv_dup(const char *varname)
Definition: getenv_utf8.h:76
ff_vf_frei0r
const FFFilter ff_vf_frei0r
Definition: vf_frei0r.c:439
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:905
getenv_utf8.h
FLAGS
#define FLAGS
Definition: vf_frei0r.c:420
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:197
AV_PIX_FMT_ARGB
@ AV_PIX_FMT_ARGB
packed ARGB 8:8:8:8, 32bpp, ARGBARGB...
Definition: pixfmt.h:99
f0r_get_param_info_f
void(* f0r_get_param_info_f)(f0r_param_info_t *info, int param_index)
Definition: vf_frei0r.c:58
internal.h
common.h
av_inv_q
static av_always_inline AVRational av_inv_q(AVRational q)
Invert a rational.
Definition: rational.h:159
AVFilterPad::name
const char * name
Pad name.
Definition: filters.h:46
ff_vsrc_frei0r_src
const FFFilter ff_vsrc_frei0r_src
Definition: vf_frei0r.c:528
ret
ret
Definition: filter_design.txt:187
frame
these buffered frames must be flushed immediately if a new input produces new the filter must not call request_frame to get more It must just process the frame or queue it The task of requesting more frames is left to the filter s request_frame method or the application If a filter has several the filter must be ready for frames arriving randomly on any input any filter with several inputs will most likely require some kind of queuing mechanism It is perfectly acceptable to have a limited queue and to drop frames when the inputs are too unbalanced request_frame For filters that do not use the this method is called when a frame is wanted on an output For a it should directly call filter_frame on the corresponding output For a if there are queued frames already one of these frames should be pushed If the filter should request a frame on one of its repeatedly until at least one frame has been pushed Return or at least make progress towards producing a frame
Definition: filter_design.txt:265
av_strtod
double av_strtod(const char *numstr, char **tail)
Parse the string in numstr and return its value as a double.
Definition: eval.c:110
Frei0rContext::construct
f0r_construct_f construct
Definition: vf_frei0r.c:74
pos
unsigned int pos
Definition: spdifenc.c:414
FILTER_INPUTS
#define FILTER_INPUTS(array)
Definition: filters.h:264
f0r_init_f
int(* f0r_init_f)(void)
Definition: vf_frei0r.c:56
f0r_get_plugin_info_f
void(* f0r_get_plugin_info_f)(f0r_plugin_info_t *info)
Definition: vf_frei0r.c:57
Frei0rContext::instance
f0r_instance_t instance
Definition: vf_frei0r.c:68
AV_PIX_FMT_NONE
@ AV_PIX_FMT_NONE
Definition: pixfmt.h:72
f0r_deinit_f
void(* f0r_deinit_f)(void)
Definition: vf_frei0r.c:55
Frei0rContext::h
int h
Definition: vf_frei0r.c:83
avfilter.h
av_get_token
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:143
Windows::Graphics::DirectX::Direct3D11::p
IDirect3DDxgiInterfaceAccess _COM_Outptr_ void ** p
Definition: vsrc_gfxcapture_winrt.hpp:53
f0r_update_f
void(* f0r_update_f)(f0r_instance_t instance, double time, const uint32_t *inframe, uint32_t *outframe)
Definition: vf_frei0r.c:59
AVFilterContext
An instance of a filter.
Definition: avfilter.h:274
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:200
FFFilter::p
AVFilter p
The public AVFilter.
Definition: filters.h:271
mem.h
avfilter_vsrc_frei0r_src_outputs
static const AVFilterPad avfilter_vsrc_frei0r_src_outputs[]
Definition: vf_frei0r.c:519
w
uint8_t w
Definition: llvidencdsp.c:39
av_free
#define av_free(p)
Definition: tableprint_vlc.h:34
Frei0rContext::w
int w
Definition: vf_frei0r.c:83
Frei0rContext::framerate
AVRational framerate
Definition: vf_frei0r.c:80
imgutils.h
AVFrame::linesize
int linesize[AV_NUM_DATA_POINTERS]
For video, a positive or negative value, which is typically indicating the size in bytes of each pict...
Definition: frame.h:472
av_log
#define av_log(a,...)
Definition: tableprint_vlc.h:27
Frei0rContext::set_param_value
f0r_set_param_value_f set_param_value
Definition: vf_frei0r.c:73
avfilter_vf_frei0r_inputs
static const AVFilterPad avfilter_vf_frei0r_inputs[]
Definition: vf_frei0r.c:430
avstring.h
av_image_check_size
int av_image_check_size(unsigned int w, unsigned int h, int log_offset, void *log_ctx)
Check if the given dimension of an image is valid, meaning that all bytes of the image can be address...
Definition: imgutils.c:318
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
width
#define width
Definition: dsp.h:89
w32dlfcn.h
frei0r_src_options
static const AVOption frei0r_src_options[]
Definition: vf_frei0r.c:509