summaryrefslogtreecommitdiffstats
path: root/video/filter/vf_lavfi.h
blob: d28d7e55d671707fa8f9de6eab8953d2fa5fe5e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#ifndef MP_VF_LAVFI_H_
#define MP_VF_LAVFI_H_

#include "config.h"

#include "common/common.h"
#include "vf.h"

struct vf_lw_opts;

#if HAVE_LIBAVFILTER

extern const struct m_sub_options vf_lw_conf;

int vf_lw_set_graph(struct vf_instance *vf, struct vf_lw_opts *lavfi_opts,
                    char *filter, char *opts, ...) PRINTF_ATTRIBUTE(4,5);
void *vf_lw_old_priv(struct vf_instance *vf);
void vf_lw_update_graph(struct vf_instance *vf, char *filter, char *opts, ...)
                        PRINTF_ATTRIBUTE(3,4);
void vf_lw_set_reconfig_cb(struct vf_instance *vf,
                                int (*reconfig)(struct vf_instance *vf,
                                                struct mp_image_params *in,
                                                struct mp_image_params *out));
#else
static inline
int vf_lw_set_graph(struct vf_instance *vf, struct vf_lw_opts *lavfi_opts,
                    char *filter, char *opts, ...)
{
    return -1;
}
static void *vf_lw_old_priv(struct vf_instance *vf)
{
    return 0;
}
static void vf_lw_update_graph(struct vf_instance *vf, char *filter, char *opts, ...)
{
}
static void vf_lw_set_reconfig_cb(struct vf_instance *vf,
                                int (*reconfig)(struct vf_instance *vf,
                                                struct mp_image_params *in,
                                                struct mp_image_params *out))
{
}
#include "options/m_option.h"
static const struct m_sub_options vf_lw_conf = {0};
#endif

#endif