From 9839bb08dffbce34712ed6d6e41d536973fb8c47 Mon Sep 17 00:00:00 2001 From: wm4 Date: Thu, 5 Dec 2013 22:56:51 +0100 Subject: vf: declare config() as legacy --- video/filter/vf.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'video') diff --git a/video/filter/vf.h b/video/filter/vf.h index 9e571570f9..1e6420b33c 100644 --- a/video/filter/vf.h +++ b/video/filter/vf.h @@ -49,15 +49,15 @@ struct vf_format { typedef struct vf_instance { const vf_info_t *info; - int (*config)(struct vf_instance *vf, - int width, int height, int d_width, int d_height, - unsigned int flags, unsigned int outfmt); - - // Alternative to config() (can pass more image parameters) // Note: the callee is allowed to write *params. int (*reconfig)(struct vf_instance *vf, struct mp_image_params *params, int flags); + // 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); -- cgit v1.2.3