aboutsummaryrefslogtreecommitdiffstats
path: root/src/mixer/MixerPlugin.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/mixer/MixerPlugin.hxx')
-rw-r--r--src/mixer/MixerPlugin.hxx4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mixer/MixerPlugin.hxx b/src/mixer/MixerPlugin.hxx
index 2df0d809e..79ba378a0 100644
--- a/src/mixer/MixerPlugin.hxx
+++ b/src/mixer/MixerPlugin.hxx
@@ -29,6 +29,7 @@
struct config_param;
class Mixer;
+class EventLoop;
class Error;
struct mixer_plugin {
@@ -41,7 +42,8 @@ struct mixer_plugin {
* nullptr to ignore errors
* @return a mixer object, or nullptr on error
*/
- Mixer *(*init)(void *ao, const config_param &param,
+ Mixer *(*init)(EventLoop &event_loop, void *ao,
+ const config_param &param,
Error &error);
/**