summaryrefslogtreecommitdiffstats
path: root/video/filter/vf.h
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-04-20 23:53:59 +0200
committerwm4 <wm4@nowhere>2014-04-21 02:57:16 +0200
commitf69312e329b3c5060f85898f8e88312eb963d91a (patch)
treefaf75b27f53c0ac44138410674881920ef6b77be /video/filter/vf.h
parent7791b5cf7c8ee6300ce1b6994ea6b91c7d3f4577 (diff)
downloadmpv-f69312e329b3c5060f85898f8e88312eb963d91a.tar.bz2
mpv-f69312e329b3c5060f85898f8e88312eb963d91a.tar.xz
vf: add function to remove a filter from the chain
Diffstat (limited to 'video/filter/vf.h')
-rw-r--r--video/filter/vf.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/video/filter/vf.h b/video/filter/vf.h
index 968e6da225..e186add4d0 100644
--- a/video/filter/vf.h
+++ b/video/filter/vf.h
@@ -136,6 +136,7 @@ struct mp_image *vf_output_queued_frame(struct vf_chain *c);
void vf_seek_reset(struct vf_chain *c);
struct vf_instance *vf_append_filter(struct vf_chain *c, const char *name,
char **args);
+void vf_remove_filter(struct vf_chain *c, struct vf_instance *vf);
int vf_append_filter_list(struct vf_chain *c, struct m_obj_settings *list);
struct vf_instance *vf_find_by_label(struct vf_chain *c, const char *label);
void vf_print_filter_chain(struct vf_chain *c, int msglevel);