mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-28 16:01:20 +02:00
lua: don't play video if movieplayer is in use
This commit is contained in:
@@ -82,6 +82,10 @@ void CLuaInstVideo::LuaVideoRegister(lua_State *L)
|
|||||||
|
|
||||||
int CLuaInstVideo::VideoNew(lua_State *L)
|
int CLuaInstVideo::VideoNew(lua_State *L)
|
||||||
{
|
{
|
||||||
|
if(CMoviePlayerGui::getInstance().Playing()){
|
||||||
|
fprintf(stderr, "[CLuaInstVideo::%s:%d] movieplayer is blocked by other file\n", __func__, __LINE__);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
CLuaVideo **udata = (CLuaVideo **) lua_newuserdata(L, sizeof(CLuaVideo *));
|
CLuaVideo **udata = (CLuaVideo **) lua_newuserdata(L, sizeof(CLuaVideo *));
|
||||||
*udata = new CLuaVideo();
|
*udata = new CLuaVideo();
|
||||||
luaL_getmetatable(L, LUA_VIDEO_CLASSNAME);
|
luaL_getmetatable(L, LUA_VIDEO_CLASSNAME);
|
||||||
|
Reference in New Issue
Block a user