summaryrefslogtreecommitdiffstats
path: root/src/object.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/object.c')
-rw-r--r--src/object.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/object.c b/src/object.c
index f97deca..26bb1b3 100644
--- a/src/object.c
+++ b/src/object.c
@@ -11,3 +11,7 @@ int xas_object_stop(xas_object *object) {
int xas_object_set_gain(xas_object *object, float gain) {
return object->set_gain(object, gain);
}
+
+xas_audio_stream *xas_object_stream_new(xas_object *object) {
+ return object->stream_new(object);
+}