diff options
Diffstat (limited to '')
-rw-r--r-- | test/run_filter.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/run_filter.c b/test/run_filter.c index dd22312d5..f9d628aeb 100644 --- a/test/run_filter.c +++ b/test/run_filter.c @@ -24,6 +24,7 @@ #include "filter_plugin.h" #include "pcm_volume.h" #include "idle.h" +#include "mixer_control.h" #include <glib.h> @@ -37,6 +38,13 @@ idle_add(G_GNUC_UNUSED unsigned flags) { } +bool +mixer_set_volume(G_GNUC_UNUSED struct mixer *mixer, + G_GNUC_UNUSED unsigned volume, G_GNUC_UNUSED GError **error_r) +{ + return true; +} + static void my_log_func(const gchar *log_domain, G_GNUC_UNUSED GLogLevelFlags log_level, const gchar *message, G_GNUC_UNUSED gpointer user_data) |