diff options
author | Vito Caputo <vcaputo@pengaru.com> | 2023-08-18 21:28:07 -0700 |
---|---|---|
committer | Vito Caputo <vcaputo@pengaru.com> | 2023-08-18 21:28:07 -0700 |
commit | a0dad867b7647994cafdb31aeea1289407a2363c (patch) | |
tree | 5993a6a9bc05a8bfcfa9e5d80a115d860c93102e | |
parent | c748e9ddc66492d0b01d2a13b5fc46f97c20b73c (diff) |
main: call til_stream_start_frame()
Tell the stream when starting a new frame...
-rw-r--r-- | src/main.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -343,6 +343,7 @@ static void * rototiller_thread(void *_rt) continue; } + til_stream_start_frame(rt->stream); gettimeofday(&now, NULL); ticks = get_ticks(&rt->start_tv, &now, rt->ticks_offset); til_module_render(rt->module_context, rt->stream, ticks, &rt->fragment); |