From 1f7c099dc0feb9a160d9018ad6ad068e0295341a Mon Sep 17 00:00:00 2001 From: wm4 Date: Sat, 19 Dec 2015 17:55:14 +0100 Subject: vf: remove old config() callback --- video/filter/vf.h | 9 --------- 1 file changed, 9 deletions(-) (limited to 'video/filter/vf.h') diff --git a/video/filter/vf.h b/video/filter/vf.h index 62734c99cf..2bca682fbc 100644 --- a/video/filter/vf.h +++ b/video/filter/vf.h @@ -51,11 +51,6 @@ typedef struct vf_instance { int (*reconfig)(struct vf_instance *vf, struct mp_image_params *in, struct mp_image_params *out); - // Legacy variant, use reconfig instead. - int (*config)(struct vf_instance *vf, - int width, int height, int d_width, int d_height, - unsigned int flags, unsigned int outfmt); - int (*control)(struct vf_instance *vf, int request, void *data); int (*query_format)(struct vf_instance *vf, unsigned int fmt); @@ -177,12 +172,8 @@ bool vf_make_out_image_writeable(struct vf_instance *vf, struct mp_image *img); void vf_add_output_frame(struct vf_instance *vf, struct mp_image *img); // default wrappers: -int vf_next_config(struct vf_instance *vf, - int width, int height, int d_width, int d_height, - unsigned int flags, unsigned int outfmt); int vf_next_query_format(struct vf_instance *vf, unsigned int fmt); - // Helpers void vf_rescale_dsize(int *d_width, int *d_height, int old_w, int old_h, -- cgit v1.2.3