summaryrefslogtreecommitdiffstats
path: root/video/filter/vf.c
diff options
context:
space:
mode:
Diffstat (limited to 'video/filter/vf.c')
-rw-r--r--video/filter/vf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/video/filter/vf.c b/video/filter/vf.c
index 1e27c043b5..c2e15090b8 100644
--- a/video/filter/vf.c
+++ b/video/filter/vf.c
@@ -126,7 +126,7 @@ static bool get_desc(struct m_obj_desc *dst, int index)
const vf_info_t *vf = filter_list[index];
*dst = (struct m_obj_desc) {
.name = vf->name,
- .description = vf->info,
+ .description = vf->description,
.priv_size = vf->priv_size,
.priv_defaults = vf->priv_defaults,
.options = vf->options,
@@ -254,7 +254,7 @@ static struct vf_instance *vf_open(struct MPOpts *opts, vf_instance_t *next,
if (m_config_initialize_obj(config, &desc, &priv, &args) < 0)
goto error;
vf->priv = priv;
- int retcode = vf->info->vf_open(vf, (char *)args);
+ int retcode = vf->info->open(vf, (char *)args);
if (retcode < 1)
goto error;
return vf;