summaryrefslogtreecommitdiffstats
path: root/libao2/ao_sgi.c
diff options
context:
space:
mode:
authorUoti Urpala <uau@mplayer2.org>2012-04-07 16:26:56 +0300
committerUoti Urpala <uau@mplayer2.org>2012-04-08 16:35:09 +0300
commit3a01606dc05b2cedb9792a6f8adefeba6e434ab0 (patch)
tree4fe7f5735617f05e6726d4b2006676fc774ec64f /libao2/ao_sgi.c
parent485f439cfefd4fa8d35f406fd8694e649bd536c8 (diff)
downloadmpv-3a01606dc05b2cedb9792a6f8adefeba6e434ab0.tar.bz2
mpv-3a01606dc05b2cedb9792a6f8adefeba6e434ab0.tar.xz
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.
Diffstat (limited to 'libao2/ao_sgi.c')
-rw-r--r--libao2/ao_sgi.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/libao2/ao_sgi.c b/libao2/ao_sgi.c
index 40bc6b9177..492c8ff3ba 100644
--- a/libao2/ao_sgi.c
+++ b/libao2/ao_sgi.c
@@ -118,13 +118,6 @@ static int control(int cmd, void *arg){
mp_tmsg(MSGT_AO, MSGL_INFO, "[AO SGI] control.\n");
- switch(cmd) {
- case AOCONTROL_QUERY_FORMAT:
- /* Do not reject any format: return the closest matching
- * format if the request is not supported natively. */
- return CONTROL_TRUE;
- }
-
return CONTROL_UNKNOWN;
}