summaryrefslogtreecommitdiff
path: root/plugins/ao/main.c
diff options
context:
space:
mode:
authorGravatar Alexey Yakovenko <wakeroid@gmail.com>2010-07-04 13:00:04 +0200
committerGravatar Alexey Yakovenko <wakeroid@gmail.com>2010-07-04 13:00:04 +0200
commit050417b22e9bd0e9f73b6444727bd725c738157a (patch)
treec6fa92603e69a47d45b1baea31db8340e0e23c6c /plugins/ao/main.c
parente6013001a3e730497e4606add4aff3ac743aedc4 (diff)
ao plugin: psf/psf2/spu seeking
Diffstat (limited to 'plugins/ao/main.c')
-rw-r--r--plugins/ao/main.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/plugins/ao/main.c b/plugins/ao/main.c
index 1f24628e..073347d8 100644
--- a/plugins/ao/main.c
+++ b/plugins/ao/main.c
@@ -254,3 +254,8 @@ ao_decode (uint32 type, void *handle, int16 *buffer, uint32 size) {
(*types[type].gen)(handle, buffer, size);
return size;
}
+
+int
+ao_command (uint32 type, void *handle, int32 command, int32 param) {
+ return (*types[type].command)(handle, command, param);
+}