diff options
-rw-r--r-- | src/til.c | 2 | ||||
-rw-r--r-- | src/til.h | 1 |
2 files changed, 3 insertions, 0 deletions
@@ -297,6 +297,8 @@ static void _til_module_render(til_module_context_t *context, til_stream_t *stre */ if (context->module->render_audio) context->module->render_audio(context, stream, ticks); + else if (context->module->render_proxy) + context->module->render_proxy(context, stream, ticks, fragment_ptr); else module_render_fragment(context, stream, til_threads, n_cpus, ticks, fragment_ptr); @@ -31,6 +31,7 @@ struct til_module_t { til_module_context_t * (*create_context)(const til_module_t *module, til_stream_t *stream, unsigned seed, unsigned ticks, unsigned n_cpus, til_setup_t *setup); void (*destroy_context)(til_module_context_t *context); /* destroy gets stream in context, but the render-related functions should always use the passed-in stream so it can potentially change */ void (*render_audio)(til_module_context_t *context, til_stream_t *stream, unsigned ticks); + void (*render_proxy)(til_module_context_t *context, til_stream_t *stream, unsigned ticks, til_fb_fragment_t **fragment_ptr); void (*prepare_frame)(til_module_context_t *context, til_stream_t *stream, unsigned ticks, til_fb_fragment_t **fragment_ptr, til_frame_plan_t *res_frame_plan); void (*render_fragment)(til_module_context_t *context, til_stream_t *stream, unsigned ticks, unsigned cpu, til_fb_fragment_t **fragment_ptr); int (*finish_frame)(til_module_context_t *context, til_stream_t *stream, unsigned ticks, til_fb_fragment_t **fragment_ptr); |