summaryrefslogtreecommitdiffstats
path: root/libmpcodecs/vf_gradfun.c
diff options
context:
space:
mode:
Diffstat (limited to 'libmpcodecs/vf_gradfun.c')
-rw-r--r--libmpcodecs/vf_gradfun.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libmpcodecs/vf_gradfun.c b/libmpcodecs/vf_gradfun.c
index 7089af1b57..2d1ee1a8ef 100644
--- a/libmpcodecs/vf_gradfun.c
+++ b/libmpcodecs/vf_gradfun.c
@@ -364,7 +364,7 @@ static void uninit(struct vf_instance_s* vf)
vf->priv = NULL;
}
-static int open(vf_instance_t *vf, char* args)
+static int vf_open(vf_instance_t *vf, char *args)
{
float thresh = 1.2;
int radius = 16;
@@ -402,6 +402,6 @@ const vf_info_t vf_info_gradfun = {
"gradfun",
"Loren Merritt",
"",
- open,
+ vf_open,
NULL
};