From 8293f5811f4fe5d3d955dc78833eab6ab2779b4e Mon Sep 17 00:00:00 2001 From: XANTRONIX Development Date: Mon, 28 Feb 2022 17:16:01 -0500 Subject: Implement xas_object_stream_new() Implement xas_object_stream_new() proxy to allow generic creation of an audio stream from any given audible object --- src/object.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src') 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); +} -- cgit v1.2.3