summaryrefslogtreecommitdiffstats
path: root/video/filter/vf.h
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-10-23 19:06:42 +0200
committerwm4 <wm4@nowhere>2013-10-23 19:30:01 +0200
commit6d44a4dfd1487611dd8ff3da4a6566e64c17106a (patch)
tree1ae7c30d50cb64668dacb78f8354185440978a9c /video/filter/vf.h
parentc8930e80a850a9459157023db57ae723f7a82432 (diff)
downloadmpv-6d44a4dfd1487611dd8ff3da4a6566e64c17106a.tar.bz2
mpv-6d44a4dfd1487611dd8ff3da4a6566e64c17106a.tar.xz
video/filter: remove useless vf_info fields
This time I didn't bother to move the contents of the author field to the file headers. "git log" is your friend.
Diffstat (limited to 'video/filter/vf.h')
-rw-r--r--video/filter/vf.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/video/filter/vf.h b/video/filter/vf.h
index 9f041a79b4..c946a31359 100644
--- a/video/filter/vf.h
+++ b/video/filter/vf.h
@@ -31,11 +31,9 @@ struct vf_instance;
struct vf_priv_s;
typedef struct vf_info {
- const char *info;
+ const char *description;
const char *name;
- const char *author;
- const char *comment;
- int (*vf_open)(struct vf_instance *vf, char *args);
+ int (*open)(struct vf_instance *vf, char *args);
void *damn_you;
int priv_size;
const void *priv_defaults;