summaryrefslogtreecommitdiffstats
path: root/audio/out/ao_openal.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-07-22 22:57:51 +0200
committerwm4 <wm4@nowhere>2013-07-22 22:58:09 +0200
commitf32a90a8396136cdded09390b68c9aac3d29ee7e (patch)
treeeeb5879ca68094308e9cfa51ef7e86e729111a2e /audio/out/ao_openal.c
parent1f5ffe7d30a5537cc83fbfb8dad37d01af27427b (diff)
downloadmpv-f32a90a8396136cdded09390b68c9aac3d29ee7e.tar.bz2
mpv-f32a90a8396136cdded09390b68c9aac3d29ee7e.tar.xz
audio/out: remove options argument from init()
Same as with VOs in the previous commit.
Diffstat (limited to 'audio/out/ao_openal.c')
-rw-r--r--audio/out/ao_openal.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/audio/out/ao_openal.c b/audio/out/ao_openal.c
index 27a8093d36..ccc73ba9f5 100644
--- a/audio/out/ao_openal.c
+++ b/audio/out/ao_openal.c
@@ -116,7 +116,7 @@ static const struct speaker speaker_pos[] = {
{-1},
};
-static int init(struct ao *ao, char *params)
+static int init(struct ao *ao)
{
float position[3] = {0, 0, 0};
float direction[6] = {0, 0, 1, 0, -1, 0};