Skip to content
Snippets Groups Projects
Commit c19b8b23 authored by Thomas Guillem's avatar Thomas Guillem
Browse files

lua: remove unused code

parent 30fcfbae
No related branches found
No related tags found
No related merge requests found
......@@ -68,14 +68,6 @@ static int vlclua_push_vlc_object(lua_State *L, vlc_object_t *p_obj,
return 1;
}
static int vlclua_input_release(lua_State *L)
{
vlc_object_t **pp = luaL_checkudata( L, 1, "vlc_object" );
lua_pop(L, 1);
input_Release((input_thread_t *)*pp);
return 0;
}
static int vlclua_get_libvlc( lua_State *L )
{
libvlc_int_t *p_libvlc = vlc_object_instance(vlclua_get_this( L ));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment