summaryrefslogtreecommitdiffstats
path: root/player/lua.c
diff options
context:
space:
mode:
Diffstat (limited to 'player/lua.c')
-rw-r--r--player/lua.c34
1 files changed, 0 insertions, 34 deletions
diff --git a/player/lua.c b/player/lua.c
index 3621e7aee5..cf0c5caa41 100644
--- a/player/lua.c
+++ b/player/lua.c
@@ -1024,38 +1024,6 @@ static int script_get_time(lua_State *L)
return 1;
}
-static int script_input_enable_section(lua_State *L)
-{
- struct MPContext *mpctx = get_mpctx(L);
- char *section = (char *)luaL_checkstring(L, 1);
- char *sflags = (char *)luaL_optstring(L, 2, "");
- bstr bflags = bstr0(sflags);
- int flags = 0;
- while (bflags.len) {
- bstr val;
- bstr_split_tok(bflags, "|", &val, &bflags);
- if (bstr_equals0(val, "allow-hide-cursor")) {
- flags |= MP_INPUT_ALLOW_HIDE_CURSOR;
- } else if (bstr_equals0(val, "allow-vo-dragging")) {
- flags |= MP_INPUT_ALLOW_VO_DRAGGING;
- } else if (bstr_equals0(val, "exclusive")) {
- flags |= MP_INPUT_EXCLUSIVE;
- } else {
- luaL_error(L, "invalid flag");
- }
- }
- mp_input_enable_section(mpctx->input, section, flags);
- return 0;
-}
-
-static int script_input_disable_section(lua_State *L)
-{
- struct MPContext *mpctx = get_mpctx(L);
- char *section = (char *)luaL_checkstring(L, 1);
- mp_input_disable_section(mpctx->input, section);
- return 0;
-}
-
static int script_input_set_section_mouse_area(lua_State *L)
{
struct MPContext *mpctx = get_mpctx(L);
@@ -1301,8 +1269,6 @@ static const struct fn_entry main_fns[] = {
FN_ENTRY(get_screen_margins),
FN_ENTRY(get_mouse_pos),
FN_ENTRY(get_time),
- FN_ENTRY(input_enable_section),
- FN_ENTRY(input_disable_section),
FN_ENTRY(input_set_section_mouse_area),
FN_ENTRY(format_time),
FN_ENTRY(enable_messages),