diff options
Diffstat (limited to 'libmpcodecs/vf_cropdetect.c')
-rw-r--r-- | libmpcodecs/vf_cropdetect.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libmpcodecs/vf_cropdetect.c b/libmpcodecs/vf_cropdetect.c index f777107a77..6af2c83692 100644 --- a/libmpcodecs/vf_cropdetect.c +++ b/libmpcodecs/vf_cropdetect.c @@ -174,7 +174,7 @@ static int query_format(struct vf_instance* vf, unsigned int fmt) { } //===========================================================================// -static int open(vf_instance_t *vf, char* args){ +static int vf_open(vf_instance_t *vf, char *args){ vf->config=config; vf->put_image=put_image; vf->query_format=query_format; @@ -194,7 +194,7 @@ const vf_info_t vf_info_cropdetect = { "cropdetect", "A'rpi", "", - open, + vf_open, NULL }; |