summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/ao_polyp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ao_polyp.c b/src/ao_polyp.c
index 8214662..ba4fb08 100644
--- a/src/ao_polyp.c
+++ b/src/ao_polyp.c
@@ -28,7 +28,7 @@
#include <signal.h>
#include <limits.h>
-#include <polyp/polyplib-simple.h>
+#include <polyp/simple.h>
#include <ao/ao.h>
#include <ao/plugin.h>
@@ -92,7 +92,7 @@ int ao_plugin_test(void) {
snprintf(t2, sizeof(t2), "libao[%s] test", fn);
}
- if (!(s = pa_simple_new(NULL, fn ? t : "libao", PA_STREAM_PLAYBACK, NULL, fn ? t2 : "libao test", &ss, NULL, PA_VOLUME_NORM, NULL)))
+ if (!(s = pa_simple_new(NULL, fn ? t : "libao", PA_STREAM_PLAYBACK, NULL, fn ? t2 : "libao test", &ss, NULL, NULL)))
return 0;
pa_simple_free(s);
@@ -167,7 +167,7 @@ int ao_plugin_open(ao_device *device, ao_sample_format *format) {
snprintf(t2, sizeof(t2), "libao[%s] playback stream", fn);
}
- if (!(internal->simple = pa_simple_new(internal->server, fn ? t : "libao", PA_STREAM_PLAYBACK, internal->sink, fn ? t2 : "libao playback stream", &ss, NULL, PA_VOLUME_NORM, NULL)))
+ if (!(internal->simple = pa_simple_new(internal->server, fn ? t : "libao", PA_STREAM_PLAYBACK, internal->sink, fn ? t2 : "libao playback stream", &ss, NULL, NULL)))
return 0;
device->driver_byte_format = AO_FMT_NATIVE;