4 #include <bmusb/bmusb.h>
8 #include <movit/deinterlace_effect.h>
9 #include <movit/effect.h>
10 #include <movit/effect_chain.h>
11 #include <movit/image_format.h>
12 #include <movit/input.h>
13 #include <movit/mix_effect.h>
14 #include <movit/multiply_effect.h>
15 #include <movit/overlay_effect.h>
16 #include <movit/padding_effect.h>
17 #include <movit/resample_effect.h>
18 #include <movit/resize_effect.h>
19 #include <movit/util.h>
20 #include <movit/white_balance_effect.h>
21 #include <movit/ycbcr.h>
22 #include <movit/ycbcr_input.h>
32 #include "cef_capture.h"
34 #include "ffmpeg_capture.h"
36 #include "image_input.h"
37 #include "input_state.h"
38 #include "pbo_frame_allocator.h"
40 #if !defined LUA_VERSION_NUM || LUA_VERSION_NUM==501
42 // Compatibility shims for LuaJIT 2.0 (LuaJIT 2.1 implements the entire Lua 5.2 API).
43 // Adapted from https://github.com/keplerproject/lua-compat-5.2/blob/master/c-api/compat-5.2.c
44 // and licensed as follows:
46 // The MIT License (MIT)
48 // Copyright (c) 2013 Hisham Muhammad
50 // Permission is hereby granted, free of charge, to any person obtaining a copy of
51 // this software and associated documentation files (the "Software"), to deal in
52 // the Software without restriction, including without limitation the rights to
53 // use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
54 // the Software, and to permit persons to whom the Software is furnished to do so,
55 // subject to the following conditions:
57 // The above copyright notice and this permission notice shall be included in all
58 // copies or substantial portions of the Software.
60 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
61 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
62 // FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
63 // COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
64 // IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
65 // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
68 ** Adapted from Lua 5.2.0
70 void luaL_setfuncs(lua_State *L, const luaL_Reg *l, int nup) {
71 luaL_checkstack(L, nup+1, "too many upvalues");
72 for (; l->name != NULL; l++) { /* fill the table with given functions */
74 lua_pushstring(L, l->name);
75 for (i = 0; i < nup; i++) /* copy upvalues to the top */
76 lua_pushvalue(L, -(nup + 1));
77 lua_pushcclosure(L, l->func, nup); /* closure with those upvalues */
78 lua_settable(L, -(nup + 3)); /* table must be below the upvalues, the name and the closure */
80 lua_pop(L, nup); /* remove upvalues */
83 void *luaL_testudata(lua_State *L, int i, const char *tname) {
84 void *p = lua_touserdata(L, i);
85 luaL_checkstack(L, 2, "not enough stack slots");
86 if (p == NULL || !lua_getmetatable(L, i))
90 luaL_getmetatable(L, tname);
91 res = lua_rawequal(L, -1, -2);
108 using namespace movit;
110 extern Mixer *global_mixer;
112 Theme *get_theme_updata(lua_State* L)
114 luaL_checktype(L, lua_upvalueindex(1), LUA_TLIGHTUSERDATA);
115 return (Theme *)lua_touserdata(L, lua_upvalueindex(1));
118 int ThemeMenu_set(lua_State *L)
120 Theme *theme = get_theme_updata(L);
121 return theme->set_theme_menu(L);
126 // Contains basically the same data as InputState, but does not hold on to
127 // a reference to the frames. This is important so that we can release them
128 // without having to wait for Lua's GC.
129 struct InputStateInfo {
130 InputStateInfo(const InputState& input_state);
132 unsigned last_width[MAX_VIDEO_CARDS], last_height[MAX_VIDEO_CARDS];
133 bool last_interlaced[MAX_VIDEO_CARDS], last_has_signal[MAX_VIDEO_CARDS], last_is_connected[MAX_VIDEO_CARDS];
134 unsigned last_frame_rate_nom[MAX_VIDEO_CARDS], last_frame_rate_den[MAX_VIDEO_CARDS];
137 InputStateInfo::InputStateInfo(const InputState &input_state)
139 for (unsigned signal_num = 0; signal_num < MAX_VIDEO_CARDS; ++signal_num) {
140 BufferedFrame frame = input_state.buffered_frames[signal_num][0];
141 if (frame.frame == nullptr) {
142 last_width[signal_num] = last_height[signal_num] = 0;
143 last_interlaced[signal_num] = false;
144 last_has_signal[signal_num] = false;
145 last_is_connected[signal_num] = false;
148 const PBOFrameAllocator::Userdata *userdata = (const PBOFrameAllocator::Userdata *)frame.frame->userdata;
149 last_width[signal_num] = userdata->last_width[frame.field_number];
150 last_height[signal_num] = userdata->last_height[frame.field_number];
151 last_interlaced[signal_num] = userdata->last_interlaced;
152 last_has_signal[signal_num] = userdata->last_has_signal;
153 last_is_connected[signal_num] = userdata->last_is_connected;
154 last_frame_rate_nom[signal_num] = userdata->last_frame_rate_nom;
155 last_frame_rate_den[signal_num] = userdata->last_frame_rate_den;
159 class LuaRefWithDeleter {
161 LuaRefWithDeleter(mutex *m, lua_State *L, int ref) : m(m), L(L), ref(ref) {}
162 ~LuaRefWithDeleter() {
163 unique_lock<mutex> lock(*m);
164 luaL_unref(L, LUA_REGISTRYINDEX, ref);
166 int get() const { return ref; }
169 LuaRefWithDeleter(const LuaRefWithDeleter &) = delete;
176 template<class T, class... Args>
177 int wrap_lua_object(lua_State* L, const char *class_name, Args&&... args)
179 // Construct the C++ object and put it on the stack.
180 void *mem = lua_newuserdata(L, sizeof(T));
181 new(mem) T(forward<Args>(args)...);
183 // Look up the metatable named <class_name>, and set it on the new object.
184 luaL_getmetatable(L, class_name);
185 lua_setmetatable(L, -2);
190 // Like wrap_lua_object, but the object is not owned by Lua; ie. it's not freed
191 // by Lua GC. This is typically the case for Effects, which are owned by EffectChain
192 // and expected to be destructed by it. The object will be of type T** instead of T*
193 // when exposed to Lua.
195 // Note that we currently leak if you allocate an Effect in this way and never call
196 // add_effect. We should see if there's a way to e.g. set __gc on it at construction time
197 // and then release that once add_effect() takes ownership.
198 template<class T, class... Args>
199 int wrap_lua_object_nonowned(lua_State* L, const char *class_name, Args&&... args)
201 // Construct the pointer ot the C++ object and put it on the stack.
202 T **obj = (T **)lua_newuserdata(L, sizeof(T *));
203 *obj = new T(forward<Args>(args)...);
205 // Look up the metatable named <class_name>, and set it on the new object.
206 luaL_getmetatable(L, class_name);
207 lua_setmetatable(L, -2);
212 Effect *get_effect(lua_State *L, int idx)
214 if (luaL_testudata(L, idx, "WhiteBalanceEffect") ||
215 luaL_testudata(L, idx, "ResampleEffect") ||
216 luaL_testudata(L, idx, "PaddingEffect") ||
217 luaL_testudata(L, idx, "IntegralPaddingEffect") ||
218 luaL_testudata(L, idx, "OverlayEffect") ||
219 luaL_testudata(L, idx, "ResizeEffect") ||
220 luaL_testudata(L, idx, "MultiplyEffect") ||
221 luaL_testudata(L, idx, "MixEffect") ||
222 luaL_testudata(L, idx, "ImageInput")) {
223 return *(Effect **)lua_touserdata(L, idx);
225 luaL_error(L, "Error: Index #%d was not an Effect type\n", idx);
229 InputStateInfo *get_input_state_info(lua_State *L, int idx)
231 if (luaL_testudata(L, idx, "InputStateInfo")) {
232 return (InputStateInfo *)lua_touserdata(L, idx);
234 luaL_error(L, "Error: Index #%d was not InputStateInfo\n", idx);
238 bool checkbool(lua_State* L, int idx)
240 luaL_checktype(L, idx, LUA_TBOOLEAN);
241 return lua_toboolean(L, idx);
244 string checkstdstring(lua_State *L, int index)
247 const char* cstr = lua_tolstring(L, index, &len);
248 return string(cstr, len);
251 int EffectChain_new(lua_State* L)
253 assert(lua_gettop(L) == 2);
254 Theme *theme = get_theme_updata(L);
255 int aspect_w = luaL_checknumber(L, 1);
256 int aspect_h = luaL_checknumber(L, 2);
258 return wrap_lua_object<EffectChain>(L, "EffectChain", aspect_w, aspect_h, theme->get_resource_pool());
261 int EffectChain_gc(lua_State* L)
263 assert(lua_gettop(L) == 1);
264 EffectChain *chain = (EffectChain *)luaL_checkudata(L, 1, "EffectChain");
265 chain->~EffectChain();
269 int EffectChain_add_live_input(lua_State* L)
271 assert(lua_gettop(L) == 3);
272 Theme *theme = get_theme_updata(L);
273 EffectChain *chain = (EffectChain *)luaL_checkudata(L, 1, "EffectChain");
274 bool override_bounce = checkbool(L, 2);
275 bool deinterlace = checkbool(L, 3);
276 bmusb::PixelFormat pixel_format = global_flags.ten_bit_input ? bmusb::PixelFormat_10BitYCbCr : bmusb::PixelFormat_8BitYCbCr;
278 // Needs to be nonowned to match add_video_input (see below).
279 return wrap_lua_object_nonowned<LiveInputWrapper>(L, "LiveInputWrapper", theme, chain, pixel_format, override_bounce, deinterlace);
282 int EffectChain_add_video_input(lua_State* L)
284 assert(lua_gettop(L) == 3);
285 Theme *theme = get_theme_updata(L);
286 EffectChain *chain = (EffectChain *)luaL_checkudata(L, 1, "EffectChain");
287 FFmpegCapture **capture = (FFmpegCapture **)luaL_checkudata(L, 2, "VideoInput");
288 bool deinterlace = checkbool(L, 3);
290 // These need to be nonowned, so that the LiveInputWrapper still exists
291 // and can feed frames to the right EffectChain even if the Lua code
292 // doesn't care about the object anymore. (If we change this, we'd need
293 // to also unregister the signal connection on __gc.)
294 int ret = wrap_lua_object_nonowned<LiveInputWrapper>(
295 L, "LiveInputWrapper", theme, chain, (*capture)->get_current_pixel_format(),
296 /*override_bounce=*/false, deinterlace);
298 Theme *theme = get_theme_updata(L);
299 LiveInputWrapper **live_input = (LiveInputWrapper **)lua_touserdata(L, -1);
300 theme->register_video_signal_connection(*live_input, *capture);
306 int EffectChain_add_html_input(lua_State* L)
308 assert(lua_gettop(L) == 2);
309 Theme *theme = get_theme_updata(L);
310 EffectChain *chain = (EffectChain *)luaL_checkudata(L, 1, "EffectChain");
311 CEFCapture **capture = (CEFCapture **)luaL_checkudata(L, 2, "HTMLInput");
313 // These need to be nonowned, so that the LiveInputWrapper still exists
314 // and can feed frames to the right EffectChain even if the Lua code
315 // doesn't care about the object anymore. (If we change this, we'd need
316 // to also unregister the signal connection on __gc.)
317 int ret = wrap_lua_object_nonowned<LiveInputWrapper>(
318 L, "LiveInputWrapper", theme, chain, (*capture)->get_current_pixel_format(),
319 /*override_bounce=*/false, /*deinterlace=*/false);
321 Theme *theme = get_theme_updata(L);
322 LiveInputWrapper **live_input = (LiveInputWrapper **)lua_touserdata(L, -1);
323 theme->register_html_signal_connection(*live_input, *capture);
329 int EffectChain_add_effect(lua_State* L)
331 assert(lua_gettop(L) >= 2);
332 EffectChain *chain = (EffectChain *)luaL_checkudata(L, 1, "EffectChain");
334 // TODO: Better error reporting.
335 Effect *effect = get_effect(L, 2);
336 if (lua_gettop(L) == 2) {
337 if (effect->num_inputs() == 0) {
338 chain->add_input((Input *)effect);
340 chain->add_effect(effect);
343 vector<Effect *> inputs;
344 for (int idx = 3; idx <= lua_gettop(L); ++idx) {
345 if (luaL_testudata(L, idx, "LiveInputWrapper")) {
346 LiveInputWrapper **input = (LiveInputWrapper **)lua_touserdata(L, idx);
347 inputs.push_back((*input)->get_effect());
349 inputs.push_back(get_effect(L, idx));
352 chain->add_effect(effect, inputs);
355 lua_settop(L, 2); // Return the effect itself.
357 // Make sure Lua doesn't garbage-collect it away.
358 lua_pushvalue(L, -1);
359 luaL_ref(L, LUA_REGISTRYINDEX); // TODO: leak?
364 int EffectChain_finalize(lua_State* L)
366 assert(lua_gettop(L) == 2);
367 EffectChain *chain = (EffectChain *)luaL_checkudata(L, 1, "EffectChain");
368 bool is_main_chain = checkbool(L, 2);
370 // Add outputs as needed.
371 // NOTE: If you change any details about the output format, you will need to
372 // also update what's given to the muxer (HTTPD::Mux constructor) and
373 // what's put in the H.264 stream (sps_rbsp()).
374 ImageFormat inout_format;
375 inout_format.color_space = COLORSPACE_REC_709;
377 // Output gamma is tricky. We should output Rec. 709 for TV, except that
378 // we expect to run with web players and others that don't really care and
379 // just output with no conversion. So that means we'll need to output sRGB,
380 // even though H.264 has no setting for that (we use “unspecified”).
381 inout_format.gamma_curve = GAMMA_sRGB;
384 YCbCrFormat output_ycbcr_format;
385 // We actually output 4:2:0 and/or 4:2:2 in the end, but chroma subsampling
386 // happens in a pass not run by Movit (see ChromaSubsampler::subsample_chroma()).
387 output_ycbcr_format.chroma_subsampling_x = 1;
388 output_ycbcr_format.chroma_subsampling_y = 1;
390 // This will be overridden if HDMI/SDI output is in force.
391 if (global_flags.ycbcr_rec709_coefficients) {
392 output_ycbcr_format.luma_coefficients = YCBCR_REC_709;
394 output_ycbcr_format.luma_coefficients = YCBCR_REC_601;
397 output_ycbcr_format.full_range = false;
398 output_ycbcr_format.num_levels = 1 << global_flags.x264_bit_depth;
400 GLenum type = global_flags.x264_bit_depth > 8 ? GL_UNSIGNED_SHORT : GL_UNSIGNED_BYTE;
402 chain->add_ycbcr_output(inout_format, OUTPUT_ALPHA_FORMAT_POSTMULTIPLIED, output_ycbcr_format, YCBCR_OUTPUT_SPLIT_Y_AND_CBCR, type);
404 // If we're using zerocopy video encoding (so the destination
405 // Y texture is owned by VA-API and will be unavailable for
406 // display), add a copy, where we'll only be using the Y component.
407 if (global_flags.use_zerocopy) {
408 chain->add_ycbcr_output(inout_format, OUTPUT_ALPHA_FORMAT_POSTMULTIPLIED, output_ycbcr_format, YCBCR_OUTPUT_INTERLEAVED, type); // Add a copy where we'll only be using the Y component.
410 chain->set_dither_bits(global_flags.x264_bit_depth > 8 ? 16 : 8);
411 chain->set_output_origin(OUTPUT_ORIGIN_TOP_LEFT);
413 chain->add_output(inout_format, OUTPUT_ALPHA_FORMAT_POSTMULTIPLIED);
420 int LiveInputWrapper_connect_signal(lua_State* L)
422 assert(lua_gettop(L) == 2);
423 LiveInputWrapper **input = (LiveInputWrapper **)luaL_checkudata(L, 1, "LiveInputWrapper");
424 int signal_num = luaL_checknumber(L, 2);
425 (*input)->connect_signal(signal_num);
429 int ImageInput_new(lua_State* L)
431 assert(lua_gettop(L) == 1);
432 string filename = checkstdstring(L, 1);
433 return wrap_lua_object_nonowned<ImageInput>(L, "ImageInput", filename);
436 int VideoInput_new(lua_State* L)
438 assert(lua_gettop(L) == 2);
439 string filename = checkstdstring(L, 1);
440 int pixel_format = luaL_checknumber(L, 2);
441 if (pixel_format != bmusb::PixelFormat_8BitYCbCrPlanar &&
442 pixel_format != bmusb::PixelFormat_8BitBGRA) {
443 fprintf(stderr, "WARNING: Invalid enum %d used for video format, choosing Y'CbCr.\n",
445 pixel_format = bmusb::PixelFormat_8BitYCbCrPlanar;
447 int ret = wrap_lua_object_nonowned<FFmpegCapture>(L, "VideoInput", filename, global_flags.width, global_flags.height);
449 FFmpegCapture **capture = (FFmpegCapture **)lua_touserdata(L, -1);
450 (*capture)->set_pixel_format(bmusb::PixelFormat(pixel_format));
452 Theme *theme = get_theme_updata(L);
453 theme->register_video_input(*capture);
458 int VideoInput_rewind(lua_State* L)
460 assert(lua_gettop(L) == 1);
461 FFmpegCapture **video_input = (FFmpegCapture **)luaL_checkudata(L, 1, "VideoInput");
462 (*video_input)->rewind();
466 int VideoInput_change_rate(lua_State* L)
468 assert(lua_gettop(L) == 2);
469 FFmpegCapture **video_input = (FFmpegCapture **)luaL_checkudata(L, 1, "VideoInput");
470 double new_rate = luaL_checknumber(L, 2);
471 (*video_input)->change_rate(new_rate);
475 int VideoInput_get_signal_num(lua_State* L)
477 assert(lua_gettop(L) == 1);
478 FFmpegCapture **video_input = (FFmpegCapture **)luaL_checkudata(L, 1, "VideoInput");
479 lua_pushnumber(L, -1 - (*video_input)->get_card_index());
483 int HTMLInput_new(lua_State* L)
486 assert(lua_gettop(L) == 1);
487 string url = checkstdstring(L, 1);
488 int ret = wrap_lua_object_nonowned<CEFCapture>(L, "HTMLInput", url, global_flags.width, global_flags.height);
490 CEFCapture **capture = (CEFCapture **)lua_touserdata(L, -1);
491 Theme *theme = get_theme_updata(L);
492 theme->register_html_input(*capture);
496 fprintf(stderr, "This version of Nageru has been compiled without CEF support.\n");
497 fprintf(stderr, "HTMLInput is not available.\n");
503 int HTMLInput_set_url(lua_State* L)
505 assert(lua_gettop(L) == 2);
506 CEFCapture **video_input = (CEFCapture **)luaL_checkudata(L, 1, "HTMLInput");
507 string new_url = checkstdstring(L, 2);
508 (*video_input)->set_url(new_url);
512 int HTMLInput_reload(lua_State* L)
514 assert(lua_gettop(L) == 1);
515 CEFCapture **video_input = (CEFCapture **)luaL_checkudata(L, 1, "HTMLInput");
516 (*video_input)->reload();
520 int HTMLInput_set_max_fps(lua_State* L)
522 assert(lua_gettop(L) == 2);
523 CEFCapture **video_input = (CEFCapture **)luaL_checkudata(L, 1, "HTMLInput");
524 int max_fps = lrint(luaL_checknumber(L, 2));
525 (*video_input)->set_max_fps(max_fps);
529 int HTMLInput_execute_javascript_async(lua_State* L)
531 assert(lua_gettop(L) == 2);
532 CEFCapture **video_input = (CEFCapture **)luaL_checkudata(L, 1, "HTMLInput");
533 string js = checkstdstring(L, 2);
534 (*video_input)->execute_javascript_async(js);
538 int HTMLInput_resize(lua_State* L)
540 assert(lua_gettop(L) == 3);
541 CEFCapture **video_input = (CEFCapture **)luaL_checkudata(L, 1, "HTMLInput");
542 unsigned width = lrint(luaL_checknumber(L, 2));
543 unsigned height = lrint(luaL_checknumber(L, 3));
544 (*video_input)->resize(width, height);
548 int HTMLInput_get_signal_num(lua_State* L)
550 assert(lua_gettop(L) == 1);
551 CEFCapture **video_input = (CEFCapture **)luaL_checkudata(L, 1, "HTMLInput");
552 lua_pushnumber(L, -1 - (*video_input)->get_card_index());
557 int WhiteBalanceEffect_new(lua_State* L)
559 assert(lua_gettop(L) == 0);
560 return wrap_lua_object_nonowned<WhiteBalanceEffect>(L, "WhiteBalanceEffect");
563 int ResampleEffect_new(lua_State* L)
565 assert(lua_gettop(L) == 0);
566 return wrap_lua_object_nonowned<ResampleEffect>(L, "ResampleEffect");
569 int PaddingEffect_new(lua_State* L)
571 assert(lua_gettop(L) == 0);
572 return wrap_lua_object_nonowned<PaddingEffect>(L, "PaddingEffect");
575 int IntegralPaddingEffect_new(lua_State* L)
577 assert(lua_gettop(L) == 0);
578 return wrap_lua_object_nonowned<IntegralPaddingEffect>(L, "IntegralPaddingEffect");
581 int OverlayEffect_new(lua_State* L)
583 assert(lua_gettop(L) == 0);
584 return wrap_lua_object_nonowned<OverlayEffect>(L, "OverlayEffect");
587 int ResizeEffect_new(lua_State* L)
589 assert(lua_gettop(L) == 0);
590 return wrap_lua_object_nonowned<ResizeEffect>(L, "ResizeEffect");
593 int MultiplyEffect_new(lua_State* L)
595 assert(lua_gettop(L) == 0);
596 return wrap_lua_object_nonowned<MultiplyEffect>(L, "MultiplyEffect");
599 int MixEffect_new(lua_State* L)
601 assert(lua_gettop(L) == 0);
602 return wrap_lua_object_nonowned<MixEffect>(L, "MixEffect");
605 int InputStateInfo_get_width(lua_State* L)
607 assert(lua_gettop(L) == 2);
608 InputStateInfo *input_state_info = get_input_state_info(L, 1);
609 Theme *theme = get_theme_updata(L);
610 int signal_num = theme->map_signal(luaL_checknumber(L, 2));
611 lua_pushnumber(L, input_state_info->last_width[signal_num]);
615 int InputStateInfo_get_height(lua_State* L)
617 assert(lua_gettop(L) == 2);
618 InputStateInfo *input_state_info = get_input_state_info(L, 1);
619 Theme *theme = get_theme_updata(L);
620 int signal_num = theme->map_signal(luaL_checknumber(L, 2));
621 lua_pushnumber(L, input_state_info->last_height[signal_num]);
625 int InputStateInfo_get_interlaced(lua_State* L)
627 assert(lua_gettop(L) == 2);
628 InputStateInfo *input_state_info = get_input_state_info(L, 1);
629 Theme *theme = get_theme_updata(L);
630 int signal_num = theme->map_signal(luaL_checknumber(L, 2));
631 lua_pushboolean(L, input_state_info->last_interlaced[signal_num]);
635 int InputStateInfo_get_has_signal(lua_State* L)
637 assert(lua_gettop(L) == 2);
638 InputStateInfo *input_state_info = get_input_state_info(L, 1);
639 Theme *theme = get_theme_updata(L);
640 int signal_num = theme->map_signal(luaL_checknumber(L, 2));
641 lua_pushboolean(L, input_state_info->last_has_signal[signal_num]);
645 int InputStateInfo_get_is_connected(lua_State* L)
647 assert(lua_gettop(L) == 2);
648 InputStateInfo *input_state_info = get_input_state_info(L, 1);
649 Theme *theme = get_theme_updata(L);
650 int signal_num = theme->map_signal(luaL_checknumber(L, 2));
651 lua_pushboolean(L, input_state_info->last_is_connected[signal_num]);
655 int InputStateInfo_get_frame_rate_nom(lua_State* L)
657 assert(lua_gettop(L) == 2);
658 InputStateInfo *input_state_info = get_input_state_info(L, 1);
659 Theme *theme = get_theme_updata(L);
660 int signal_num = theme->map_signal(luaL_checknumber(L, 2));
661 lua_pushnumber(L, input_state_info->last_frame_rate_nom[signal_num]);
665 int InputStateInfo_get_frame_rate_den(lua_State* L)
667 assert(lua_gettop(L) == 2);
668 InputStateInfo *input_state_info = get_input_state_info(L, 1);
669 Theme *theme = get_theme_updata(L);
670 int signal_num = theme->map_signal(luaL_checknumber(L, 2));
671 lua_pushnumber(L, input_state_info->last_frame_rate_den[signal_num]);
675 int Effect_set_float(lua_State *L)
677 assert(lua_gettop(L) == 3);
678 Effect *effect = (Effect *)get_effect(L, 1);
679 string key = checkstdstring(L, 2);
680 float value = luaL_checknumber(L, 3);
681 if (!effect->set_float(key, value)) {
682 luaL_error(L, "Effect refused set_float(\"%s\", %d) (invalid key?)", key.c_str(), int(value));
687 int Effect_set_int(lua_State *L)
689 assert(lua_gettop(L) == 3);
690 Effect *effect = (Effect *)get_effect(L, 1);
691 string key = checkstdstring(L, 2);
692 float value = luaL_checknumber(L, 3);
693 if (!effect->set_int(key, value)) {
694 luaL_error(L, "Effect refused set_int(\"%s\", %d) (invalid key?)", key.c_str(), int(value));
699 int Effect_set_vec3(lua_State *L)
701 assert(lua_gettop(L) == 5);
702 Effect *effect = (Effect *)get_effect(L, 1);
703 string key = checkstdstring(L, 2);
705 v[0] = luaL_checknumber(L, 3);
706 v[1] = luaL_checknumber(L, 4);
707 v[2] = luaL_checknumber(L, 5);
708 if (!effect->set_vec3(key, v)) {
709 luaL_error(L, "Effect refused set_vec3(\"%s\", %f, %f, %f) (invalid key?)", key.c_str(),
715 int Effect_set_vec4(lua_State *L)
717 assert(lua_gettop(L) == 6);
718 Effect *effect = (Effect *)get_effect(L, 1);
719 string key = checkstdstring(L, 2);
721 v[0] = luaL_checknumber(L, 3);
722 v[1] = luaL_checknumber(L, 4);
723 v[2] = luaL_checknumber(L, 5);
724 v[3] = luaL_checknumber(L, 6);
725 if (!effect->set_vec4(key, v)) {
726 luaL_error(L, "Effect refused set_vec4(\"%s\", %f, %f, %f, %f) (invalid key?)", key.c_str(),
727 v[0], v[1], v[2], v[3]);
732 const luaL_Reg EffectChain_funcs[] = {
733 { "new", EffectChain_new },
734 { "__gc", EffectChain_gc },
735 { "add_live_input", EffectChain_add_live_input },
736 { "add_video_input", EffectChain_add_video_input },
738 { "add_html_input", EffectChain_add_html_input },
740 { "add_effect", EffectChain_add_effect },
741 { "finalize", EffectChain_finalize },
745 const luaL_Reg LiveInputWrapper_funcs[] = {
746 { "connect_signal", LiveInputWrapper_connect_signal },
750 const luaL_Reg ImageInput_funcs[] = {
751 { "new", ImageInput_new },
752 { "set_float", Effect_set_float },
753 { "set_int", Effect_set_int },
754 { "set_vec3", Effect_set_vec3 },
755 { "set_vec4", Effect_set_vec4 },
759 const luaL_Reg VideoInput_funcs[] = {
760 { "new", VideoInput_new },
761 { "rewind", VideoInput_rewind },
762 { "change_rate", VideoInput_change_rate },
763 { "get_signal_num", VideoInput_get_signal_num },
767 const luaL_Reg HTMLInput_funcs[] = {
768 { "new", HTMLInput_new },
770 { "set_url", HTMLInput_set_url },
771 { "reload", HTMLInput_reload },
772 { "set_max_fps", HTMLInput_set_max_fps },
773 { "execute_javascript_async", HTMLInput_execute_javascript_async },
774 { "resize", HTMLInput_resize },
775 { "get_signal_num", HTMLInput_get_signal_num },
780 const luaL_Reg WhiteBalanceEffect_funcs[] = {
781 { "new", WhiteBalanceEffect_new },
782 { "set_float", Effect_set_float },
783 { "set_int", Effect_set_int },
784 { "set_vec3", Effect_set_vec3 },
785 { "set_vec4", Effect_set_vec4 },
789 const luaL_Reg ResampleEffect_funcs[] = {
790 { "new", ResampleEffect_new },
791 { "set_float", Effect_set_float },
792 { "set_int", Effect_set_int },
793 { "set_vec3", Effect_set_vec3 },
794 { "set_vec4", Effect_set_vec4 },
798 const luaL_Reg PaddingEffect_funcs[] = {
799 { "new", PaddingEffect_new },
800 { "set_float", Effect_set_float },
801 { "set_int", Effect_set_int },
802 { "set_vec3", Effect_set_vec3 },
803 { "set_vec4", Effect_set_vec4 },
807 const luaL_Reg IntegralPaddingEffect_funcs[] = {
808 { "new", IntegralPaddingEffect_new },
809 { "set_float", Effect_set_float },
810 { "set_int", Effect_set_int },
811 { "set_vec3", Effect_set_vec3 },
812 { "set_vec4", Effect_set_vec4 },
816 const luaL_Reg OverlayEffect_funcs[] = {
817 { "new", OverlayEffect_new },
818 { "set_float", Effect_set_float },
819 { "set_int", Effect_set_int },
820 { "set_vec3", Effect_set_vec3 },
821 { "set_vec4", Effect_set_vec4 },
825 const luaL_Reg ResizeEffect_funcs[] = {
826 { "new", ResizeEffect_new },
827 { "set_float", Effect_set_float },
828 { "set_int", Effect_set_int },
829 { "set_vec3", Effect_set_vec3 },
830 { "set_vec4", Effect_set_vec4 },
834 const luaL_Reg MultiplyEffect_funcs[] = {
835 { "new", MultiplyEffect_new },
836 { "set_float", Effect_set_float },
837 { "set_int", Effect_set_int },
838 { "set_vec3", Effect_set_vec3 },
839 { "set_vec4", Effect_set_vec4 },
843 const luaL_Reg MixEffect_funcs[] = {
844 { "new", MixEffect_new },
845 { "set_float", Effect_set_float },
846 { "set_int", Effect_set_int },
847 { "set_vec3", Effect_set_vec3 },
848 { "set_vec4", Effect_set_vec4 },
852 const luaL_Reg InputStateInfo_funcs[] = {
853 { "get_width", InputStateInfo_get_width },
854 { "get_height", InputStateInfo_get_height },
855 { "get_interlaced", InputStateInfo_get_interlaced },
856 { "get_has_signal", InputStateInfo_get_has_signal },
857 { "get_is_connected", InputStateInfo_get_is_connected },
858 { "get_frame_rate_nom", InputStateInfo_get_frame_rate_nom },
859 { "get_frame_rate_den", InputStateInfo_get_frame_rate_den },
863 const luaL_Reg ThemeMenu_funcs[] = {
864 { "set", ThemeMenu_set },
870 LiveInputWrapper::LiveInputWrapper(Theme *theme, EffectChain *chain, bmusb::PixelFormat pixel_format, bool override_bounce, bool deinterlace)
872 pixel_format(pixel_format),
873 deinterlace(deinterlace)
875 ImageFormat inout_format;
876 inout_format.color_space = COLORSPACE_sRGB;
878 // Gamma curve depends on the input signal, and we don't really get any
879 // indications. A camera would be expected to do Rec. 709, but
880 // I haven't checked if any do in practice. However, computers _do_ output
881 // in sRGB gamma (ie., they don't convert from sRGB to Rec. 709), and
882 // I wouldn't really be surprised if most non-professional cameras do, too.
883 // So we pick sRGB as the least evil here.
884 inout_format.gamma_curve = GAMMA_sRGB;
888 deinterlace_effect = new movit::DeinterlaceEffect();
890 // As per the comments in deinterlace_effect.h, we turn this off.
891 // The most likely interlaced input for us is either a camera
892 // (where it's fine to turn it off) or a laptop (where it _should_
894 CHECK(deinterlace_effect->set_int("enable_spatial_interlacing_check", 0));
896 num_inputs = deinterlace_effect->num_inputs();
897 assert(num_inputs == FRAME_HISTORY_LENGTH);
902 if (pixel_format == bmusb::PixelFormat_8BitBGRA) {
903 for (unsigned i = 0; i < num_inputs; ++i) {
904 // We upload our textures ourselves, and Movit swaps
905 // R and B in the shader if we specify BGRA, so lie and say RGBA.
906 if (global_flags.can_disable_srgb_decoder) {
907 rgba_inputs.push_back(new sRGBSwitchingFlatInput(inout_format, FORMAT_RGBA_POSTMULTIPLIED_ALPHA, GL_UNSIGNED_BYTE, global_flags.width, global_flags.height));
909 rgba_inputs.push_back(new NonsRGBCapableFlatInput(inout_format, FORMAT_RGBA_POSTMULTIPLIED_ALPHA, GL_UNSIGNED_BYTE, global_flags.width, global_flags.height));
911 chain->add_input(rgba_inputs.back());
915 vector<Effect *> reverse_inputs(rgba_inputs.rbegin(), rgba_inputs.rend());
916 chain->add_effect(deinterlace_effect, reverse_inputs);
919 assert(pixel_format == bmusb::PixelFormat_8BitYCbCr ||
920 pixel_format == bmusb::PixelFormat_10BitYCbCr ||
921 pixel_format == bmusb::PixelFormat_8BitYCbCrPlanar);
923 // Most of these settings will be overridden later if using PixelFormat_8BitYCbCrPlanar.
924 input_ycbcr_format.chroma_subsampling_x = (pixel_format == bmusb::PixelFormat_10BitYCbCr) ? 1 : 2;
925 input_ycbcr_format.chroma_subsampling_y = 1;
926 input_ycbcr_format.num_levels = (pixel_format == bmusb::PixelFormat_10BitYCbCr) ? 1024 : 256;
927 input_ycbcr_format.cb_x_position = 0.0;
928 input_ycbcr_format.cr_x_position = 0.0;
929 input_ycbcr_format.cb_y_position = 0.5;
930 input_ycbcr_format.cr_y_position = 0.5;
931 input_ycbcr_format.luma_coefficients = YCBCR_REC_709; // Will be overridden later even if not planar.
932 input_ycbcr_format.full_range = false; // Will be overridden later even if not planar.
934 for (unsigned i = 0; i < num_inputs; ++i) {
935 // When using 10-bit input, we're converting to interleaved through v210Converter.
936 YCbCrInputSplitting splitting;
937 if (pixel_format == bmusb::PixelFormat_10BitYCbCr) {
938 splitting = YCBCR_INPUT_INTERLEAVED;
939 } else if (pixel_format == bmusb::PixelFormat_8BitYCbCr) {
940 splitting = YCBCR_INPUT_SPLIT_Y_AND_CBCR;
942 splitting = YCBCR_INPUT_PLANAR;
944 if (override_bounce) {
945 ycbcr_inputs.push_back(new NonBouncingYCbCrInput(inout_format, input_ycbcr_format, global_flags.width, global_flags.height, splitting));
947 ycbcr_inputs.push_back(new YCbCrInput(inout_format, input_ycbcr_format, global_flags.width, global_flags.height, splitting));
949 chain->add_input(ycbcr_inputs.back());
953 vector<Effect *> reverse_inputs(ycbcr_inputs.rbegin(), ycbcr_inputs.rend());
954 chain->add_effect(deinterlace_effect, reverse_inputs);
959 void LiveInputWrapper::connect_signal(int signal_num)
961 if (global_mixer == nullptr) {
966 signal_num = theme->map_signal(signal_num);
967 connect_signal_raw(signal_num, *theme->input_state);
970 void LiveInputWrapper::connect_signal_raw(int signal_num, const InputState &input_state)
972 BufferedFrame first_frame = input_state.buffered_frames[signal_num][0];
973 if (first_frame.frame == nullptr) {
977 unsigned width, height;
979 const PBOFrameAllocator::Userdata *userdata = (const PBOFrameAllocator::Userdata *)first_frame.frame->userdata;
980 width = userdata->last_width[first_frame.field_number];
981 height = userdata->last_height[first_frame.field_number];
984 movit::YCbCrLumaCoefficients ycbcr_coefficients = input_state.ycbcr_coefficients[signal_num];
985 bool full_range = input_state.full_range[signal_num];
987 if (input_state.ycbcr_coefficients_auto[signal_num]) {
990 // The Blackmagic driver docs claim that the device outputs Y'CbCr
991 // according to Rec. 601, but this seems to indicate the subsampling
992 // positions only, as they publish Y'CbCr → RGB formulas that are
993 // different for HD and SD (corresponding to Rec. 709 and 601, respectively),
994 // and a Lenovo X1 gen 3 I used to test definitely outputs Rec. 709
995 // (at least up to rounding error). Other devices seem to use Rec. 601
996 // even on HD resolutions. Nevertheless, Rec. 709 _is_ the right choice
997 // for HD, so we default to that if the user hasn't set anything.
999 ycbcr_coefficients = YCBCR_REC_709;
1001 ycbcr_coefficients = YCBCR_REC_601;
1005 // This is a global, but it doesn't really matter.
1006 input_ycbcr_format.luma_coefficients = ycbcr_coefficients;
1007 input_ycbcr_format.full_range = full_range;
1009 BufferedFrame last_good_frame = first_frame;
1010 for (unsigned i = 0; i < max(ycbcr_inputs.size(), rgba_inputs.size()); ++i) {
1011 BufferedFrame frame = input_state.buffered_frames[signal_num][i];
1012 if (frame.frame == nullptr) {
1013 // Not enough data; reuse last frame (well, field).
1014 // This is suboptimal, but we have nothing better.
1015 frame = last_good_frame;
1017 const PBOFrameAllocator::Userdata *userdata = (const PBOFrameAllocator::Userdata *)frame.frame->userdata;
1019 unsigned this_width = userdata->last_width[frame.field_number];
1020 unsigned this_height = userdata->last_height[frame.field_number];
1021 if (this_width != width || this_height != height) {
1022 // Resolution changed; reuse last frame/field.
1023 frame = last_good_frame;
1024 userdata = (const PBOFrameAllocator::Userdata *)frame.frame->userdata;
1027 assert(userdata->pixel_format == pixel_format);
1028 switch (pixel_format) {
1029 case bmusb::PixelFormat_8BitYCbCr:
1030 ycbcr_inputs[i]->set_texture_num(0, userdata->tex_y[frame.field_number]);
1031 ycbcr_inputs[i]->set_texture_num(1, userdata->tex_cbcr[frame.field_number]);
1032 ycbcr_inputs[i]->change_ycbcr_format(input_ycbcr_format);
1033 ycbcr_inputs[i]->set_width(width);
1034 ycbcr_inputs[i]->set_height(height);
1036 case bmusb::PixelFormat_8BitYCbCrPlanar:
1037 ycbcr_inputs[i]->set_texture_num(0, userdata->tex_y[frame.field_number]);
1038 ycbcr_inputs[i]->set_texture_num(1, userdata->tex_cb[frame.field_number]);
1039 ycbcr_inputs[i]->set_texture_num(2, userdata->tex_cr[frame.field_number]);
1040 ycbcr_inputs[i]->change_ycbcr_format(userdata->ycbcr_format);
1041 ycbcr_inputs[i]->set_width(width);
1042 ycbcr_inputs[i]->set_height(height);
1044 case bmusb::PixelFormat_10BitYCbCr:
1045 ycbcr_inputs[i]->set_texture_num(0, userdata->tex_444[frame.field_number]);
1046 ycbcr_inputs[i]->change_ycbcr_format(input_ycbcr_format);
1047 ycbcr_inputs[i]->set_width(width);
1048 ycbcr_inputs[i]->set_height(height);
1050 case bmusb::PixelFormat_8BitBGRA:
1051 rgba_inputs[i]->set_texture_num(userdata->tex_rgba[frame.field_number]);
1052 rgba_inputs[i]->set_width(width);
1053 rgba_inputs[i]->set_height(height);
1059 last_good_frame = frame;
1063 BufferedFrame frame = input_state.buffered_frames[signal_num][0];
1064 CHECK(deinterlace_effect->set_int("current_field_position", frame.field_number));
1070 int call_num_channels(lua_State *L)
1072 lua_getglobal(L, "num_channels");
1074 if (lua_pcall(L, 0, 1, 0) != 0) {
1075 fprintf(stderr, "error running function `num_channels': %s\n", lua_tostring(L, -1));
1079 int num_channels = luaL_checknumber(L, 1);
1081 assert(lua_gettop(L) == 0);
1082 return num_channels;
1087 Theme::Theme(const string &filename, const vector<string> &search_dirs, ResourcePool *resource_pool, unsigned num_cards)
1088 : resource_pool(resource_pool), num_cards(num_cards), signal_to_card_mapping(global_flags.default_stream_mapping)
1090 L = luaL_newstate();
1093 // Search through all directories until we find a file that will load
1094 // (as in, does not return LUA_ERRFILE); then run it. We store load errors
1095 // from all the attempts, and show them once we know we can't find any of them.
1097 vector<string> errors;
1098 bool success = false;
1100 vector<string> real_search_dirs;
1101 if (!filename.empty() && filename[0] == '/') {
1102 real_search_dirs.push_back("");
1104 real_search_dirs = search_dirs;
1109 for (const string &dir : real_search_dirs) {
1113 path = dir + "/" + filename;
1115 int err = luaL_loadfile(L, path.c_str());
1117 // Save the theme for when we're actually going to run it
1118 // (we need to set up the right environment below first,
1119 // and we couldn't do that before, because we didn't know the
1120 // path to put in Nageru.THEME_PATH).
1121 theme_code_ref = luaL_ref(L, LUA_REGISTRYINDEX);
1122 assert(lua_gettop(L) == 0);
1127 errors.push_back(lua_tostring(L, -1));
1129 if (err != LUA_ERRFILE) {
1130 // The file actually loaded, but failed to parse somehow. Abort; don't try the next one.
1136 for (const string &error : errors) {
1137 fprintf(stderr, "%s\n", error.c_str());
1141 assert(lua_gettop(L) == 0);
1143 // Make sure the path exposed to the theme (as Nageru.THEME_PATH;
1144 // can be useful for locating files when talking to CEF) is absolute.
1145 // In a sense, it would be nice if realpath() had a mode not to
1146 // resolve symlinks, but it doesn't, so we only call it if we don't
1147 // already have an absolute path (which may leave ../ elements etc.).
1148 if (path[0] == '/') {
1151 char *absolute_theme_path = realpath(path.c_str(), nullptr);
1152 theme_path = absolute_theme_path;
1153 free(absolute_theme_path);
1156 // Set up the API we provide.
1157 register_constants();
1158 register_class("EffectChain", EffectChain_funcs);
1159 register_class("LiveInputWrapper", LiveInputWrapper_funcs);
1160 register_class("ImageInput", ImageInput_funcs);
1161 register_class("VideoInput", VideoInput_funcs);
1162 register_class("HTMLInput", HTMLInput_funcs);
1163 register_class("WhiteBalanceEffect", WhiteBalanceEffect_funcs);
1164 register_class("ResampleEffect", ResampleEffect_funcs);
1165 register_class("PaddingEffect", PaddingEffect_funcs);
1166 register_class("IntegralPaddingEffect", IntegralPaddingEffect_funcs);
1167 register_class("OverlayEffect", OverlayEffect_funcs);
1168 register_class("ResizeEffect", ResizeEffect_funcs);
1169 register_class("MultiplyEffect", MultiplyEffect_funcs);
1170 register_class("MixEffect", MixEffect_funcs);
1171 register_class("InputStateInfo", InputStateInfo_funcs);
1172 register_class("ThemeMenu", ThemeMenu_funcs);
1174 // Now actually run the theme to get everything set up.
1175 lua_rawgeti(L, LUA_REGISTRYINDEX, theme_code_ref);
1176 luaL_unref(L, LUA_REGISTRYINDEX, theme_code_ref);
1177 if (lua_pcall(L, 0, 0, 0)) {
1178 fprintf(stderr, "Error when running %s: %s\n", path.c_str(), lua_tostring(L, -1));
1181 assert(lua_gettop(L) == 0);
1183 // Ask it for the number of channels.
1184 num_channels = call_num_channels(L);
1192 void Theme::register_constants()
1194 // Set Nageru.VIDEO_FORMAT_BGRA = bmusb::PixelFormat_8BitBGRA, etc.
1195 const vector<pair<string, int>> num_constants = {
1196 { "VIDEO_FORMAT_BGRA", bmusb::PixelFormat_8BitBGRA },
1197 { "VIDEO_FORMAT_YCBCR", bmusb::PixelFormat_8BitYCbCrPlanar },
1199 const vector<pair<string, string>> str_constants = {
1200 { "THEME_PATH", theme_path },
1203 lua_newtable(L); // t = {}
1205 for (const pair<string, int> &constant : num_constants) {
1206 lua_pushstring(L, constant.first.c_str());
1207 lua_pushinteger(L, constant.second);
1208 lua_settable(L, 1); // t[key] = value
1210 for (const pair<string, string> &constant : str_constants) {
1211 lua_pushstring(L, constant.first.c_str());
1212 lua_pushstring(L, constant.second.c_str());
1213 lua_settable(L, 1); // t[key] = value
1216 lua_setglobal(L, "Nageru"); // Nageru = t
1217 assert(lua_gettop(L) == 0);
1220 void Theme::register_class(const char *class_name, const luaL_Reg *funcs)
1222 assert(lua_gettop(L) == 0);
1223 luaL_newmetatable(L, class_name); // mt = {}
1224 lua_pushlightuserdata(L, this);
1225 luaL_setfuncs(L, funcs, 1); // for (name,f in funcs) { mt[name] = f, with upvalue {theme} }
1226 lua_pushvalue(L, -1);
1227 lua_setfield(L, -2, "__index"); // mt.__index = mt
1228 lua_setglobal(L, class_name); // ClassName = mt
1229 assert(lua_gettop(L) == 0);
1232 Theme::Chain Theme::get_chain(unsigned num, float t, unsigned width, unsigned height, InputState input_state)
1236 unique_lock<mutex> lock(m);
1237 assert(lua_gettop(L) == 0);
1238 lua_getglobal(L, "get_chain"); /* function to be called */
1239 lua_pushnumber(L, num);
1240 lua_pushnumber(L, t);
1241 lua_pushnumber(L, width);
1242 lua_pushnumber(L, height);
1243 wrap_lua_object<InputStateInfo>(L, "InputStateInfo", input_state);
1245 if (lua_pcall(L, 5, 2, 0) != 0) {
1246 fprintf(stderr, "error running function `get_chain': %s\n", lua_tostring(L, -1));
1250 chain.chain = (EffectChain *)luaL_testudata(L, -2, "EffectChain");
1251 if (chain.chain == nullptr) {
1252 fprintf(stderr, "get_chain() for chain number %d did not return an EffectChain\n",
1256 if (!lua_isfunction(L, -1)) {
1257 fprintf(stderr, "Argument #-1 should be a function\n");
1260 lua_pushvalue(L, -1);
1261 shared_ptr<LuaRefWithDeleter> funcref(new LuaRefWithDeleter(&m, L, luaL_ref(L, LUA_REGISTRYINDEX)));
1263 assert(lua_gettop(L) == 0);
1265 chain.setup_chain = [this, funcref, input_state]{
1266 unique_lock<mutex> lock(m);
1268 assert(this->input_state == nullptr);
1269 this->input_state = &input_state;
1271 // Set up state, including connecting signals.
1272 lua_rawgeti(L, LUA_REGISTRYINDEX, funcref->get());
1273 if (lua_pcall(L, 0, 0, 0) != 0) {
1274 fprintf(stderr, "error running chain setup callback: %s\n", lua_tostring(L, -1));
1277 assert(lua_gettop(L) == 0);
1279 this->input_state = nullptr;
1282 // TODO: Can we do better, e.g. by running setup_chain() and seeing what it references?
1283 // Actually, setup_chain does maybe hold all the references we need now anyway?
1284 chain.input_frames.reserve(num_cards * FRAME_HISTORY_LENGTH);
1285 for (unsigned card_index = 0; card_index < num_cards; ++card_index) {
1286 for (unsigned frame_num = 0; frame_num < FRAME_HISTORY_LENGTH; ++frame_num) {
1287 chain.input_frames.push_back(input_state.buffered_frames[card_index][frame_num].frame);
1294 string Theme::get_channel_name(unsigned channel)
1296 unique_lock<mutex> lock(m);
1297 lua_getglobal(L, "channel_name");
1298 lua_pushnumber(L, channel);
1299 if (lua_pcall(L, 1, 1, 0) != 0) {
1300 fprintf(stderr, "error running function `channel_name': %s\n", lua_tostring(L, -1));
1303 const char *ret = lua_tostring(L, -1);
1304 if (ret == nullptr) {
1305 fprintf(stderr, "function `channel_name' returned nil for channel %d\n", channel);
1309 string retstr = ret;
1311 assert(lua_gettop(L) == 0);
1315 int Theme::get_channel_signal(unsigned channel)
1317 unique_lock<mutex> lock(m);
1318 lua_getglobal(L, "channel_signal");
1319 lua_pushnumber(L, channel);
1320 if (lua_pcall(L, 1, 1, 0) != 0) {
1321 fprintf(stderr, "error running function `channel_signal': %s\n", lua_tostring(L, -1));
1325 int ret = luaL_checknumber(L, 1);
1327 assert(lua_gettop(L) == 0);
1331 std::string Theme::get_channel_color(unsigned channel)
1333 unique_lock<mutex> lock(m);
1334 lua_getglobal(L, "channel_color");
1335 lua_pushnumber(L, channel);
1336 if (lua_pcall(L, 1, 1, 0) != 0) {
1337 fprintf(stderr, "error running function `channel_color': %s\n", lua_tostring(L, -1));
1341 const char *ret = lua_tostring(L, -1);
1342 if (ret == nullptr) {
1343 fprintf(stderr, "function `channel_color' returned nil for channel %d\n", channel);
1347 string retstr = ret;
1349 assert(lua_gettop(L) == 0);
1353 bool Theme::get_supports_set_wb(unsigned channel)
1355 unique_lock<mutex> lock(m);
1356 lua_getglobal(L, "supports_set_wb");
1357 lua_pushnumber(L, channel);
1358 if (lua_pcall(L, 1, 1, 0) != 0) {
1359 fprintf(stderr, "error running function `supports_set_wb': %s\n", lua_tostring(L, -1));
1363 bool ret = checkbool(L, -1);
1365 assert(lua_gettop(L) == 0);
1369 void Theme::set_wb(unsigned channel, double r, double g, double b)
1371 unique_lock<mutex> lock(m);
1372 lua_getglobal(L, "set_wb");
1373 lua_pushnumber(L, channel);
1374 lua_pushnumber(L, r);
1375 lua_pushnumber(L, g);
1376 lua_pushnumber(L, b);
1377 if (lua_pcall(L, 4, 0, 0) != 0) {
1378 fprintf(stderr, "error running function `set_wb': %s\n", lua_tostring(L, -1));
1382 assert(lua_gettop(L) == 0);
1385 vector<string> Theme::get_transition_names(float t)
1387 unique_lock<mutex> lock(m);
1388 lua_getglobal(L, "get_transitions");
1389 lua_pushnumber(L, t);
1390 if (lua_pcall(L, 1, 1, 0) != 0) {
1391 fprintf(stderr, "error running function `get_transitions': %s\n", lua_tostring(L, -1));
1397 while (lua_next(L, -2) != 0) {
1398 ret.push_back(lua_tostring(L, -1));
1402 assert(lua_gettop(L) == 0);
1406 int Theme::map_signal(int signal_num)
1408 // Negative numbers map to raw signals.
1409 if (signal_num < 0) {
1410 return -1 - signal_num;
1413 unique_lock<mutex> lock(map_m);
1414 if (signal_to_card_mapping.count(signal_num)) {
1415 return signal_to_card_mapping[signal_num];
1419 if (global_flags.output_card != -1 && num_cards > 1) {
1420 // Try to exclude the output card from the default card_index.
1421 card_index = signal_num % (num_cards - 1);
1422 if (card_index >= global_flags.output_card) {
1425 if (signal_num >= int(num_cards - 1)) {
1426 fprintf(stderr, "WARNING: Theme asked for input %d, but we only have %u input card(s) (card %d is busy with output).\n",
1427 signal_num, num_cards - 1, global_flags.output_card);
1428 fprintf(stderr, "Mapping to card %d instead.\n", card_index);
1431 card_index = signal_num % num_cards;
1432 if (signal_num >= int(num_cards)) {
1433 fprintf(stderr, "WARNING: Theme asked for input %d, but we only have %u card(s).\n", signal_num, num_cards);
1434 fprintf(stderr, "Mapping to card %d instead.\n", card_index);
1437 signal_to_card_mapping[signal_num] = card_index;
1441 void Theme::set_signal_mapping(int signal_num, int card_num)
1443 unique_lock<mutex> lock(map_m);
1444 assert(card_num < int(num_cards));
1445 signal_to_card_mapping[signal_num] = card_num;
1448 void Theme::transition_clicked(int transition_num, float t)
1450 unique_lock<mutex> lock(m);
1451 lua_getglobal(L, "transition_clicked");
1452 lua_pushnumber(L, transition_num);
1453 lua_pushnumber(L, t);
1455 if (lua_pcall(L, 2, 0, 0) != 0) {
1456 fprintf(stderr, "error running function `transition_clicked': %s\n", lua_tostring(L, -1));
1459 assert(lua_gettop(L) == 0);
1462 void Theme::channel_clicked(int preview_num)
1464 unique_lock<mutex> lock(m);
1465 lua_getglobal(L, "channel_clicked");
1466 lua_pushnumber(L, preview_num);
1468 if (lua_pcall(L, 1, 0, 0) != 0) {
1469 fprintf(stderr, "error running function `channel_clicked': %s\n", lua_tostring(L, -1));
1472 assert(lua_gettop(L) == 0);
1475 int Theme::set_theme_menu(lua_State *L)
1477 for (const Theme::MenuEntry &entry : theme_menu) {
1478 luaL_unref(L, LUA_REGISTRYINDEX, entry.lua_ref);
1482 int num_elements = lua_gettop(L);
1483 for (int i = 1; i <= num_elements; ++i) {
1484 lua_rawgeti(L, i, 1);
1485 const string text = checkstdstring(L, -1);
1488 lua_rawgeti(L, i, 2);
1489 luaL_checktype(L, -1, LUA_TFUNCTION);
1490 int ref = luaL_ref(L, LUA_REGISTRYINDEX);
1492 theme_menu.push_back(MenuEntry{ text, ref });
1494 lua_pop(L, num_elements);
1495 assert(lua_gettop(L) == 0);
1497 if (theme_menu_callback != nullptr) {
1498 theme_menu_callback();
1504 void Theme::theme_menu_entry_clicked(int lua_ref)
1506 unique_lock<mutex> lock(m);
1507 lua_rawgeti(L, LUA_REGISTRYINDEX, lua_ref);
1508 if (lua_pcall(L, 0, 0, 0) != 0) {
1509 fprintf(stderr, "error running menu callback: %s\n", lua_tostring(L, -1));