diff options
author | wm4 <wm4@nowhere> | 2013-12-03 22:31:38 +0100 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2013-12-04 00:07:39 +0100 |
commit | 66f74d031d1465b29b73512c36612f13ad1d4e01 (patch) | |
tree | ed2e7ba04873dd9d71d93ff44d5fffcfdc4167f0 /video/filter | |
parent | 5b48204e84ca78f8a8b91a2e4392917668ecb12a (diff) | |
download | mpv-66f74d031d1465b29b73512c36612f13ad1d4e01.tar.bz2 mpv-66f74d031d1465b29b73512c36612f13ad1d4e01.tar.xz |
vf: remove unneeded field
This was once required for padding, because many filters didn't use
designated initializers, and initialized a removed field with NULL.
Diffstat (limited to 'video/filter')
-rw-r--r-- | video/filter/vf.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/video/filter/vf.h b/video/filter/vf.h index f6e4d5a9a8..6c07e6c4d9 100644 --- a/video/filter/vf.h +++ b/video/filter/vf.h @@ -34,7 +34,6 @@ typedef struct vf_info { const char *description; const char *name; int (*open)(struct vf_instance *vf, char *args); - void *damn_you; int priv_size; const void *priv_defaults; const struct m_option *options; |