From 3a01606dc05b2cedb9792a6f8adefeba6e434ab0 Mon Sep 17 00:00:00 2001 From: Uoti Urpala Date: Sat, 7 Apr 2012 16:26:56 +0300 Subject: libao2: change control() types to enum, remove unused ones Change the audio driver control() command argument from "int" to "enum aocontrol". Remove unused control types (SET_DEVICE, GET_DEVICE, QUERY_FORMAT, SET_PLUGIN_DRIVER, SET_PLUGIN_LIST). The QUERY_FORMAT one looks like there's a possibility such functionality could be useful in the future, but as ao_oss was the only driver to have an actual implementation of it, the current code wasn't worth keeping. --- libao2/ao_pulse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libao2/ao_pulse.c') diff --git a/libao2/ao_pulse.c b/libao2/ao_pulse.c index ba95ccf2d2..fb331933d6 100644 --- a/libao2/ao_pulse.c +++ b/libao2/ao_pulse.c @@ -420,7 +420,7 @@ static void info_func(struct pa_context *c, const struct pa_sink_input_info *i, pa_threaded_mainloop_signal(priv->mainloop, 0); } -static int control(struct ao *ao, int cmd, void *arg) +static int control(struct ao *ao, enum aocontrol cmd, void *arg) { struct priv *priv = ao->priv; switch (cmd) { -- cgit v1.2.3