summaryrefslogtreecommitdiffstats
path: root/audio/filter/af.h
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-12-04 23:06:26 +0100
committerwm4 <wm4@nowhere>2013-12-04 23:13:46 +0100
commit193930ac3b1cffb65782f7db9b611c09cf48f9f0 (patch)
treefeafb97ff017d0c296eeaa32a11ae58ac4544cd9 /audio/filter/af.h
parent09bd19e59ee1b4cf9b8db16403a0c3f404af833a (diff)
downloadmpv-193930ac3b1cffb65782f7db9b611c09cf48f9f0.tar.bz2
mpv-193930ac3b1cffb65782f7db9b611c09cf48f9f0.tar.xz
af: remove af->setup field
Used to be used by filters that didn't use the option parser.
Diffstat (limited to 'audio/filter/af.h')
-rw-r--r--audio/filter/af.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/audio/filter/af.h b/audio/filter/af.h
index 4e74ffbe4c..2d29d3f3ae 100644
--- a/audio/filter/af.h
+++ b/audio/filter/af.h
@@ -59,7 +59,6 @@ struct af_instance {
int (*control)(struct af_instance *af, int cmd, void *arg);
void (*uninit)(struct af_instance *af);
struct mp_audio * (*play)(struct af_instance *af, struct mp_audio *data);
- void *setup; // old field for priv structs
void *priv;
struct mp_audio *data; // configuration and buffer for outgoing data stream
struct af_instance *next;