diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/object.c | 4 |
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); +} |