diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/spatial.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/spatial.c b/src/spatial.c index ef05e19..b40adc7 100644 --- a/src/spatial.c +++ b/src/spatial.c @@ -616,6 +616,14 @@ void xas_spatial_scene_position_object(xas_spatial_scene *scene, object_update_delays(scene); } +xas_audio_stream *xas_spatial_scene_stream_new(xas_spatial_scene *scene, + size_t buffer_size) { + return xas_audio_stream_new_source((xas_audio_fill)scene_fill, + NULL, + scene->format, + buffer_size, + scene); +} void xas_spatial_object_get_point(xas_spatial_object *object, xas_spatial_coord *point) { point->x = object->point.x; |