summaryrefslogtreecommitdiffstats
path: root/video/filter/vf.h
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-12-07 19:33:38 +0100
committerwm4 <wm4@nowhere>2013-12-07 19:33:38 +0100
commit37fbef2ccb3c828dd41f6e15ccf635e697e4011f (patch)
treecb3ff81605d7aa6ea147ba7b24fc2e310b83d04f /video/filter/vf.h
parent0af9ede5466fa5b02348d5cfb3182f80771a5f38 (diff)
downloadmpv-37fbef2ccb3c828dd41f6e15ccf635e697e4011f.tar.bz2
mpv-37fbef2ccb3c828dd41f6e15ccf635e697e4011f.tar.xz
video/filter: make vf->control non-recursive
Reason: I never liked it being recursive. Generally, this seems to cause more problems than trouble, and is less flexible for access outside of the chain.
Diffstat (limited to 'video/filter/vf.h')
-rw-r--r--video/filter/vf.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/video/filter/vf.h b/video/filter/vf.h
index c241f1c329..ebe7637c0e 100644
--- a/video/filter/vf.h
+++ b/video/filter/vf.h
@@ -136,7 +136,6 @@ void vf_add_output_frame(struct vf_instance *vf, struct mp_image *img);
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_control(struct vf_instance *vf, int request, void *data);
int vf_next_query_format(struct vf_instance *vf, unsigned int fmt);
int vf_next_reconfig(struct vf_instance *vf, struct mp_image_params *params,