summaryrefslogtreecommitdiffstats
path: root/audio/filter/af.h
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-10-23 19:05:47 +0200
committerwm4 <wm4@nowhere>2013-10-23 19:30:01 +0200
commitb08617ff710db2446e59692a7e11336f33a1595b (patch)
tree468362314f5e2d0ce313a6ac9ff784e72094e75f /audio/filter/af.h
parenta46453347f40a3e5be72bf8c3a8461a32bd7733f (diff)
downloadmpv-b08617ff710db2446e59692a7e11336f33a1595b.tar.bz2
mpv-b08617ff710db2446e59692a7e11336f33a1595b.tar.xz
audio/filter: remove useless af_info fields
Drop the author and comment fields. They were completely unused - not even printed in verbose mode, just dead weight. Also use designated initializers and drop redundant flags.
Diffstat (limited to 'audio/filter/af.h')
-rw-r--r--audio/filter/af.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/audio/filter/af.h b/audio/filter/af.h
index 23dfa9d4fb..088e02dc6a 100644
--- a/audio/filter/af.h
+++ b/audio/filter/af.h
@@ -45,8 +45,6 @@ struct af_instance;
struct af_info {
const char *info;
const char *name;
- const char *author;
- const char *comment;
const int flags;
int (*open)(struct af_instance *vf);
bool (*test_conversion)(int src_format, int dst_format);