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.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/video/filter/vf.c b/video/filter/vf.c
index 0d3f5094e5..f187f7f2bd 100644
--- a/video/filter/vf.c
+++ b/video/filter/vf.c
@@ -387,7 +387,7 @@ static int vf_do_filter(struct vf_instance *vf, struct mp_image *img)
{
assert(vf->fmt_in.imgfmt);
if (img)
- assert(mp_image_params_equals(&img->params, &vf->fmt_in));
+ assert(mp_image_params_equal(&img->params, &vf->fmt_in));
if (vf->filter_ext) {
int r = vf->filter_ext(vf, img);
@@ -413,7 +413,7 @@ int vf_filter_frame(struct vf_chain *c, struct mp_image *img)
talloc_free(img);
return -1;
}
- assert(mp_image_params_equals(&img->params, &c->input_params));
+ assert(mp_image_params_equal(&img->params, &c->input_params));
vf_fix_img_params(img, &c->override_params);
return vf_do_filter(c->first, img);
}
@@ -580,7 +580,7 @@ static int vf_reconfig_wrapper(struct vf_instance *vf,
r = 0;
}
- if (!mp_image_params_equals(&vf->fmt_in, p))
+ if (!mp_image_params_equal(&vf->fmt_in, p))
r = -2;
if (!mp_image_params_valid(&vf->fmt_out))