aboutsummaryrefslogtreecommitdiff
path: root/src/mixer_api.h
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2009-01-25 17:37:59 +0100
committerMax Kellermann <max@duempel.org>2009-01-25 17:37:59 +0100
commit8695b9423233e9e8ad18ed7b4d56a020254fbdd6 (patch)
treed8053ae96ef50e9ab69499b5e8a2702364974cfa /src/mixer_api.h
parent763dd8c1dd4de451663474bafd13068eb6017bbb (diff)
mixer: removed mixer_configure(), configure mixer in mixer_new()
Allocate the mixer object when it is configured. Merged mixer_configure() into mixer_new(). mixer_new() was quite useless anyway.
Diffstat (limited to 'src/mixer_api.h')
-rw-r--r--src/mixer_api.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mixer_api.h b/src/mixer_api.h
index c563457c..cc0d8327 100644
--- a/src/mixer_api.h
+++ b/src/mixer_api.h
@@ -73,12 +73,11 @@ void mixer_init(struct mixer *mixer, const struct mixer_plugin *plugin);
void mixer_finish(struct mixer *mixer);
struct mixer *
-mixer_new(const struct mixer_plugin *plugin);
+mixer_new(const struct mixer_plugin *plugin, const struct config_param *param);
void
mixer_free(struct mixer *mixer);
-void mixer_configure(struct mixer *mixer, const struct config_param *param);
bool mixer_open(struct mixer *mixer);
bool mixer_control(struct mixer *mixer, int cmd, void *arg);
void mixer_close(struct mixer *mixer);