summaryrefslogtreecommitdiffstats
path: root/audio/filter
diff options
context:
space:
mode:
Diffstat (limited to 'audio/filter')
-rw-r--r--audio/filter/af.c1
-rw-r--r--audio/filter/af.h2
2 files changed, 0 insertions, 3 deletions
diff --git a/audio/filter/af.c b/audio/filter/af.c
index dd78bb0cb5..5838c2e70b 100644
--- a/audio/filter/af.c
+++ b/audio/filter/af.c
@@ -167,7 +167,6 @@ static struct af_instance *af_create(struct af_stream *s, char *name,
.log = mp_log_new(af, s->log, name),
.opts = s->opts,
.global = s->global,
- .replaygain_data = s->replaygain_data,
.out_pool = mp_audio_pool_create(af),
};
struct m_config *config =
diff --git a/audio/filter/af.h b/audio/filter/af.h
index 58f67727a2..f27edee71a 100644
--- a/audio/filter/af.h
+++ b/audio/filter/af.h
@@ -61,7 +61,6 @@ struct af_instance {
struct mp_log *log;
struct MPOpts *opts;
struct mpv_global *global;
- struct replaygain_data *replaygain_data;
int (*control)(struct af_instance *af, int cmd, void *arg);
void (*uninit)(struct af_instance *af);
/* Feed a frame. The frame is NULL if EOF was reached, and the filter
@@ -105,7 +104,6 @@ struct af_stream {
struct mp_log *log;
struct MPOpts *opts;
struct mpv_global *global;
- struct replaygain_data *replaygain_data;
};
// Return values