]> git.sesse.net Git - ffmpeg/blob - libavfilter/vf_frei0r.c
avfilter/af_compand: switch defaults to libavfilter/af_compand_fork.c
[ffmpeg] / libavfilter / vf_frei0r.c
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 <dlfcn.h>
26 #include <frei0r.h>
27 #include <stdio.h>
28 #include <string.h>
29 #include <stdlib.h>
30 #include "config.h"
31 #include "libavutil/avstring.h"
32 #include "libavutil/imgutils.h"
33 #include "libavutil/internal.h"
34 #include "libavutil/mathematics.h"
35 #include "libavutil/mem.h"
36 #include "libavutil/opt.h"
37 #include "libavutil/parseutils.h"
38 #include "avfilter.h"
39 #include "formats.h"
40 #include "internal.h"
41 #include "video.h"
42
43 typedef f0r_instance_t (*f0r_construct_f)(unsigned int width, unsigned int height);
44 typedef void (*f0r_destruct_f)(f0r_instance_t instance);
45 typedef void (*f0r_deinit_f)(void);
46 typedef int (*f0r_init_f)(void);
47 typedef void (*f0r_get_plugin_info_f)(f0r_plugin_info_t *info);
48 typedef void (*f0r_get_param_info_f)(f0r_param_info_t *info, int param_index);
49 typedef void (*f0r_update_f)(f0r_instance_t instance, double time, const uint32_t *inframe, uint32_t *outframe);
50 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);
51 typedef void (*f0r_set_param_value_f)(f0r_instance_t instance, f0r_param_t param, int param_index);
52 typedef void (*f0r_get_param_value_f)(f0r_instance_t instance, f0r_param_t param, int param_index);
53
54 typedef struct Frei0rContext {
55     const AVClass *class;
56     f0r_update_f update;
57     void *dl_handle;            /* dynamic library handle   */
58     f0r_instance_t instance;
59     f0r_plugin_info_t plugin_info;
60
61     f0r_get_param_info_f  get_param_info;
62     f0r_get_param_value_f get_param_value;
63     f0r_set_param_value_f set_param_value;
64     f0r_construct_f       construct;
65     f0r_destruct_f        destruct;
66     f0r_deinit_f          deinit;
67
68     char *dl_name;
69     char *params;
70     AVRational framerate;
71
72     /* only used by the source */
73     int w, h;
74     AVRational time_base;
75     uint64_t pts;
76 } Frei0rContext;
77
78 static void *load_sym(AVFilterContext *ctx, const char *sym_name)
79 {
80     Frei0rContext *s = ctx->priv;
81     void *sym = dlsym(s->dl_handle, sym_name);
82     if (!sym)
83         av_log(ctx, AV_LOG_ERROR, "Could not find symbol '%s' in loaded module\n", sym_name);
84     return sym;
85 }
86
87 static int set_param(AVFilterContext *ctx, f0r_param_info_t info, int index, char *param)
88 {
89     Frei0rContext *s = ctx->priv;
90     union {
91         double d;
92         f0r_param_color_t col;
93         f0r_param_position_t pos;
94     } val;
95     char *tail;
96     uint8_t rgba[4];
97
98     switch (info.type) {
99     case F0R_PARAM_BOOL:
100         if      (!strcmp(param, "y")) val.d = 1.0;
101         else if (!strcmp(param, "n")) val.d = 0.0;
102         else goto fail;
103         break;
104
105     case F0R_PARAM_DOUBLE:
106         val.d = strtod(param, &tail);
107         if (*tail || val.d == HUGE_VAL)
108             goto fail;
109         break;
110
111     case F0R_PARAM_COLOR:
112         if (sscanf(param, "%f/%f/%f", &val.col.r, &val.col.g, &val.col.b) != 3) {
113             if (av_parse_color(rgba, param, -1, ctx) < 0)
114                 goto fail;
115             val.col.r = rgba[0] / 255.0;
116             val.col.g = rgba[1] / 255.0;
117             val.col.b = rgba[2] / 255.0;
118         }
119         break;
120
121     case F0R_PARAM_POSITION:
122         if (sscanf(param, "%lf/%lf", &val.pos.x, &val.pos.y) != 2)
123             goto fail;
124         break;
125     }
126
127     s->set_param_value(s->instance, &val, index);
128     return 0;
129
130 fail:
131     av_log(ctx, AV_LOG_ERROR, "Invalid value '%s' for parameter '%s'\n",
132            param, info.name);
133     return AVERROR(EINVAL);
134 }
135
136 static int set_params(AVFilterContext *ctx, const char *params)
137 {
138     Frei0rContext *s = ctx->priv;
139     int i;
140
141     if (!params)
142         return 0;
143
144     for (i = 0; i < s->plugin_info.num_params; i++) {
145         f0r_param_info_t info;
146         char *param;
147         int ret;
148
149         s->get_param_info(&info, i);
150
151         if (*params) {
152             if (!(param = av_get_token(&params, "|")))
153                 return AVERROR(ENOMEM);
154             if (*params)
155                 params++;               /* skip ':' */
156             ret = set_param(ctx, info, i, param);
157             av_free(param);
158             if (ret < 0)
159                 return ret;
160         }
161
162         av_log(ctx, AV_LOG_VERBOSE,
163                "idx:%d name:'%s' type:%s explanation:'%s' ",
164                i, info.name,
165                info.type == F0R_PARAM_BOOL     ? "bool"     :
166                info.type == F0R_PARAM_DOUBLE   ? "double"   :
167                info.type == F0R_PARAM_COLOR    ? "color"    :
168                info.type == F0R_PARAM_POSITION ? "position" :
169                info.type == F0R_PARAM_STRING   ? "string"   : "unknown",
170                info.explanation);
171
172 #ifdef DEBUG
173         av_log(ctx, AV_LOG_DEBUG, "value:");
174         switch (info.type) {
175             void *v;
176             double d;
177             char s[128];
178             f0r_param_color_t col;
179             f0r_param_position_t pos;
180
181         case F0R_PARAM_BOOL:
182             v = &d;
183             s->get_param_value(s->instance, v, i);
184             av_log(ctx, AV_LOG_DEBUG, "%s", d >= 0.5 && d <= 1.0 ? "y" : "n");
185             break;
186         case F0R_PARAM_DOUBLE:
187             v = &d;
188             s->get_param_value(s->instance, v, i);
189             av_log(ctx, AV_LOG_DEBUG, "%f", d);
190             break;
191         case F0R_PARAM_COLOR:
192             v = &col;
193             s->get_param_value(s->instance, v, i);
194             av_log(ctx, AV_LOG_DEBUG, "%f/%f/%f", col.r, col.g, col.b);
195             break;
196         case F0R_PARAM_POSITION:
197             v = &pos;
198             s->get_param_value(s->instance, v, i);
199             av_log(ctx, AV_LOG_DEBUG, "%f/%f", pos.x, pos.y);
200             break;
201         default: /* F0R_PARAM_STRING */
202             v = s;
203             s->get_param_value(s->instance, v, i);
204             av_log(ctx, AV_LOG_DEBUG, "'%s'\n", s);
205             break;
206         }
207 #endif
208         av_log(ctx, AV_LOG_VERBOSE, "\n");
209     }
210
211     return 0;
212 }
213
214 static int load_path(AVFilterContext *ctx, void **handle_ptr, const char *prefix, const char *name)
215 {
216     char *path = av_asprintf("%s%s%s", prefix, name, SLIBSUF);
217     if (!path)
218         return AVERROR(ENOMEM);
219     av_log(ctx, AV_LOG_DEBUG, "Looking for frei0r effect in '%s'\n", path);
220     *handle_ptr = dlopen(path, RTLD_NOW|RTLD_LOCAL);
221     av_free(path);
222     return 0;
223 }
224
225 static av_cold int frei0r_init(AVFilterContext *ctx,
226                                const char *dl_name, int type)
227 {
228     Frei0rContext *s = ctx->priv;
229     f0r_init_f            f0r_init;
230     f0r_get_plugin_info_f f0r_get_plugin_info;
231     f0r_plugin_info_t *pi;
232     char *path;
233     int ret = 0;
234
235     if (!dl_name) {
236         av_log(ctx, AV_LOG_ERROR, "No filter name provided.\n");
237         return AVERROR(EINVAL);
238     }
239
240     /* see: http://frei0r.dyne.org/codedoc/html/group__pluglocations.html */
241     if ((path = av_strdup(getenv("FREI0R_PATH")))) {
242 #ifdef _WIN32
243         const char *separator = ";";
244 #else
245         const char *separator = ":";
246 #endif
247         char *p, *ptr = NULL;
248         for (p = path; p = av_strtok(p, separator, &ptr); p = NULL) {
249             /* add additional trailing slash in case it is missing */
250             char *p1 = av_asprintf("%s/", p);
251             if (!p1) {
252                 ret = AVERROR(ENOMEM);
253                 goto check_path_end;
254             }
255             ret = load_path(ctx, &s->dl_handle, p1, dl_name);
256             av_free(p1);
257             if (ret < 0)
258                 goto check_path_end;
259             if (s->dl_handle)
260                 break;
261         }
262
263     check_path_end:
264         av_free(path);
265         if (ret < 0)
266             return ret;
267     }
268     if (!s->dl_handle && (path = getenv("HOME"))) {
269         char *prefix = av_asprintf("%s/.frei0r-1/lib/", path);
270         if (!prefix)
271             return AVERROR(ENOMEM);
272         ret = load_path(ctx, &s->dl_handle, prefix, dl_name);
273         av_free(prefix);
274         if (ret < 0)
275             return ret;
276     }
277     if (!s->dl_handle) {
278         ret = load_path(ctx, &s->dl_handle, "/usr/local/lib/frei0r-1/", dl_name);
279         if (ret < 0)
280             return ret;
281     }
282     if (!s->dl_handle) {
283         ret = load_path(ctx, &s->dl_handle, "/usr/lib/frei0r-1/", dl_name);
284         if (ret < 0)
285             return ret;
286     }
287 #if ARCH_X86_64
288     if (!s->dl_handle) {
289         ret = load_path(ctx, &s->dl_handle, "/usr/local/lib64/frei0r-1/", dl_name);
290         if (ret < 0)
291             return ret;
292     }
293     if (!s->dl_handle) {
294         ret = load_path(ctx, &s->dl_handle, "/usr/lib64/frei0r-1/", dl_name);
295         if (ret < 0)
296             return ret;
297     }
298 #endif
299     if (!s->dl_handle) {
300         av_log(ctx, AV_LOG_ERROR, "Could not find module '%s'\n", dl_name);
301         return AVERROR(EINVAL);
302     }
303
304     if (!(f0r_init                = load_sym(ctx, "f0r_init"           )) ||
305         !(f0r_get_plugin_info     = load_sym(ctx, "f0r_get_plugin_info")) ||
306         !(s->get_param_info  = load_sym(ctx, "f0r_get_param_info" )) ||
307         !(s->get_param_value = load_sym(ctx, "f0r_get_param_value")) ||
308         !(s->set_param_value = load_sym(ctx, "f0r_set_param_value")) ||
309         !(s->update          = load_sym(ctx, "f0r_update"         )) ||
310         !(s->construct       = load_sym(ctx, "f0r_construct"      )) ||
311         !(s->destruct        = load_sym(ctx, "f0r_destruct"       )) ||
312         !(s->deinit          = load_sym(ctx, "f0r_deinit"         )))
313         return AVERROR(EINVAL);
314
315     if (f0r_init() < 0) {
316         av_log(ctx, AV_LOG_ERROR, "Could not init the frei0r module\n");
317         return AVERROR(EINVAL);
318     }
319
320     f0r_get_plugin_info(&s->plugin_info);
321     pi = &s->plugin_info;
322     if (pi->plugin_type != type) {
323         av_log(ctx, AV_LOG_ERROR,
324                "Invalid type '%s' for the plugin\n",
325                pi->plugin_type == F0R_PLUGIN_TYPE_FILTER ? "filter" :
326                pi->plugin_type == F0R_PLUGIN_TYPE_SOURCE ? "source" :
327                pi->plugin_type == F0R_PLUGIN_TYPE_MIXER2 ? "mixer2" :
328                pi->plugin_type == F0R_PLUGIN_TYPE_MIXER3 ? "mixer3" : "unknown");
329         return AVERROR(EINVAL);
330     }
331
332     av_log(ctx, AV_LOG_VERBOSE,
333            "name:%s author:'%s' explanation:'%s' color_model:%s "
334            "frei0r_version:%d version:%d.%d num_params:%d\n",
335            pi->name, pi->author, pi->explanation,
336            pi->color_model == F0R_COLOR_MODEL_BGRA8888 ? "bgra8888" :
337            pi->color_model == F0R_COLOR_MODEL_RGBA8888 ? "rgba8888" :
338            pi->color_model == F0R_COLOR_MODEL_PACKED32 ? "packed32" : "unknown",
339            pi->frei0r_version, pi->major_version, pi->minor_version, pi->num_params);
340
341     return 0;
342 }
343
344 static av_cold int filter_init(AVFilterContext *ctx)
345 {
346     Frei0rContext *s = ctx->priv;
347
348     return frei0r_init(ctx, s->dl_name, F0R_PLUGIN_TYPE_FILTER);
349 }
350
351 static av_cold void uninit(AVFilterContext *ctx)
352 {
353     Frei0rContext *s = ctx->priv;
354
355     if (s->destruct && s->instance)
356         s->destruct(s->instance);
357     if (s->deinit)
358         s->deinit();
359     if (s->dl_handle)
360         dlclose(s->dl_handle);
361 }
362
363 static int config_input_props(AVFilterLink *inlink)
364 {
365     AVFilterContext *ctx = inlink->dst;
366     Frei0rContext *s = ctx->priv;
367
368     if (s->destruct && s->instance)
369         s->destruct(s->instance);
370     if (!(s->instance = s->construct(inlink->w, inlink->h))) {
371         av_log(ctx, AV_LOG_ERROR, "Impossible to load frei0r instance\n");
372         return AVERROR(EINVAL);
373     }
374
375     return set_params(ctx, s->params);
376 }
377
378 static int query_formats(AVFilterContext *ctx)
379 {
380     Frei0rContext *s = ctx->priv;
381     AVFilterFormats *formats = NULL;
382
383     if        (s->plugin_info.color_model == F0R_COLOR_MODEL_BGRA8888) {
384         ff_add_format(&formats, AV_PIX_FMT_BGRA);
385     } else if (s->plugin_info.color_model == F0R_COLOR_MODEL_RGBA8888) {
386         ff_add_format(&formats, AV_PIX_FMT_RGBA);
387     } else {                                   /* F0R_COLOR_MODEL_PACKED32 */
388         static const enum AVPixelFormat pix_fmts[] = {
389             AV_PIX_FMT_BGRA, AV_PIX_FMT_ARGB, AV_PIX_FMT_ABGR, AV_PIX_FMT_ARGB, AV_PIX_FMT_NONE
390         };
391         formats = ff_make_format_list(pix_fmts);
392     }
393
394     if (!formats)
395         return AVERROR(ENOMEM);
396
397     ff_set_common_formats(ctx, formats);
398     return 0;
399 }
400
401 static int filter_frame(AVFilterLink *inlink, AVFrame *in)
402 {
403     Frei0rContext *s = inlink->dst->priv;
404     AVFilterLink *outlink = inlink->dst->outputs[0];
405     AVFrame *out;
406
407     out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
408     if (!out) {
409         av_frame_free(&in);
410         return AVERROR(ENOMEM);
411     }
412     av_frame_copy_props(out, in);
413
414     s->update(s->instance, in->pts * av_q2d(inlink->time_base) * 1000,
415                    (const uint32_t *)in->data[0],
416                    (uint32_t *)out->data[0]);
417
418     av_frame_free(&in);
419
420     return ff_filter_frame(outlink, out);
421 }
422
423 #define OFFSET(x) offsetof(Frei0rContext, x)
424 #define FLAGS AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_FILTERING_PARAM
425 static const AVOption frei0r_options[] = {
426     { "filter_name",   NULL, OFFSET(dl_name), AV_OPT_TYPE_STRING, .flags = FLAGS },
427     { "filter_params", NULL, OFFSET(params),  AV_OPT_TYPE_STRING, .flags = FLAGS },
428     { NULL }
429 };
430
431 AVFILTER_DEFINE_CLASS(frei0r);
432
433 static const AVFilterPad avfilter_vf_frei0r_inputs[] = {
434     {
435         .name         = "default",
436         .type         = AVMEDIA_TYPE_VIDEO,
437         .config_props = config_input_props,
438         .filter_frame = filter_frame,
439     },
440     { NULL }
441 };
442
443 static const AVFilterPad avfilter_vf_frei0r_outputs[] = {
444     {
445         .name = "default",
446         .type = AVMEDIA_TYPE_VIDEO,
447     },
448     { NULL }
449 };
450
451 AVFilter ff_vf_frei0r = {
452     .name          = "frei0r",
453     .description   = NULL_IF_CONFIG_SMALL("Apply a frei0r effect."),
454     .query_formats = query_formats,
455     .init          = filter_init,
456     .uninit        = uninit,
457     .priv_size     = sizeof(Frei0rContext),
458     .priv_class    = &frei0r_class,
459     .inputs        = avfilter_vf_frei0r_inputs,
460     .outputs       = avfilter_vf_frei0r_outputs,
461 };
462
463 static av_cold int source_init(AVFilterContext *ctx)
464 {
465     Frei0rContext *s = ctx->priv;
466
467     s->time_base.num = s->framerate.den;
468     s->time_base.den = s->framerate.num;
469
470     return frei0r_init(ctx, s->dl_name, F0R_PLUGIN_TYPE_SOURCE);
471 }
472
473 static int source_config_props(AVFilterLink *outlink)
474 {
475     AVFilterContext *ctx = outlink->src;
476     Frei0rContext *s = ctx->priv;
477
478     if (av_image_check_size(s->w, s->h, 0, ctx) < 0)
479         return AVERROR(EINVAL);
480     outlink->w = s->w;
481     outlink->h = s->h;
482     outlink->time_base = s->time_base;
483     outlink->sample_aspect_ratio = (AVRational){1,1};
484
485     if (s->destruct && s->instance)
486         s->destruct(s->instance);
487     if (!(s->instance = s->construct(outlink->w, outlink->h))) {
488         av_log(ctx, AV_LOG_ERROR, "Impossible to load frei0r instance\n");
489         return AVERROR(EINVAL);
490     }
491
492     return set_params(ctx, s->params);
493 }
494
495 static int source_request_frame(AVFilterLink *outlink)
496 {
497     Frei0rContext *s = outlink->src->priv;
498     AVFrame *frame = ff_get_video_buffer(outlink, outlink->w, outlink->h);
499
500     if (!frame)
501         return AVERROR(ENOMEM);
502
503     frame->sample_aspect_ratio = (AVRational) {1, 1};
504     frame->pts = s->pts++;
505
506     s->update(s->instance, av_rescale_q(frame->pts, s->time_base, (AVRational){1,1000}),
507                    NULL, (uint32_t *)frame->data[0]);
508
509     return ff_filter_frame(outlink, frame);
510 }
511
512 static const AVOption frei0r_src_options[] = {
513     { "size",          "Dimensions of the generated video.", OFFSET(w),         AV_OPT_TYPE_IMAGE_SIZE, { .str = "320x240" }, .flags = FLAGS },
514     { "framerate",     NULL,                                 OFFSET(framerate), AV_OPT_TYPE_VIDEO_RATE, { .str = "25" }, .flags = FLAGS },
515     { "filter_name",   NULL,                                 OFFSET(dl_name),   AV_OPT_TYPE_STRING,                  .flags = FLAGS },
516     { "filter_params", NULL,                                 OFFSET(params),    AV_OPT_TYPE_STRING,                  .flags = FLAGS },
517     { NULL },
518 };
519
520 AVFILTER_DEFINE_CLASS(frei0r_src);
521
522 static const AVFilterPad avfilter_vsrc_frei0r_src_outputs[] = {
523     {
524         .name          = "default",
525         .type          = AVMEDIA_TYPE_VIDEO,
526         .request_frame = source_request_frame,
527         .config_props  = source_config_props
528     },
529     { NULL }
530 };
531
532 AVFilter ff_vsrc_frei0r_src = {
533     .name          = "frei0r_src",
534     .description   = NULL_IF_CONFIG_SMALL("Generate a frei0r source."),
535     .priv_size     = sizeof(Frei0rContext),
536     .priv_class    = &frei0r_src_class,
537     .init          = source_init,
538     .uninit        = uninit,
539     .query_formats = query_formats,
540     .inputs        = NULL,
541     .outputs       = avfilter_vsrc_frei0r_src_outputs,
542 };