movieplayer: Use Lua scripts for selecting live stream urls

This commit is contained in:
M. Liebmann
2016-03-03 09:03:46 +01:00
parent f4e8728285
commit b4a2856e1c
15 changed files with 351 additions and 13 deletions

View File

@@ -40,4 +40,16 @@ class CWebTVSetup : public CMenuTarget
int exec(CMenuTarget* parent, const std::string & actionKey);
int Show();
};
class CWebTVResolution : public CMenuTarget
{
private:
int width;
CMenuWidget *m;
public:
CWebTVResolution();
int exec(CMenuTarget* parent, const std::string & actionKey);
int Show();
};
#endif