diff options
author | Sascha Volkenandt <sascha@akv-soft.de> | 2004-01-03 23:31:00 +0100 |
---|---|---|
committer | Sascha Volkenandt <sascha@akv-soft.de> | 2004-01-03 23:31:00 +0100 |
commit | 310f5b2a62343d0c9b7624c09efe35828785ef26 (patch) | |
tree | 0cba0f93b262331e30cd5371ec61e414050f32c4 /osdpip.c | |
parent | 4a775c82c82597c65345b3b1fdad71792ef2e486 (diff) | |
download | vdr-plugin-osdpip-310f5b2a62343d0c9b7624c09efe35828785ef26.tar.gz vdr-plugin-osdpip-310f5b2a62343d0c9b7624c09efe35828785ef26.tar.bz2 |
Release version 0.0.2v0.0.2
- Added setup menu
- OSD depth, size and position configurable (see README)
- OSD crop dimensions configurable
- OSD window size is calculated dynamically depending on stream dimensions
- Added translations
Diffstat (limited to 'osdpip.c')
-rw-r--r-- | osdpip.c | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -7,11 +7,12 @@ */ #include "osd.h" +#include "config.h" #include "i18n.h" #include <vdr/plugin.h> -static const char *VERSION = "0.0.1"; +static const char *VERSION = "0.0.2"; static const char *DESCRIPTION = "OSD Picture-in-Picture"; static const char *MAINMENUENTRY = "Picture-in-Picture"; @@ -75,11 +76,11 @@ cOsdObject *cPluginOsdpip::MainMenuAction(void) { } cMenuSetupPage *cPluginOsdpip::SetupMenu(void) { - return NULL; + return new cOsdPipSetupPage; } bool cPluginOsdpip::SetupParse(const char *Name, const char *Value) { - return false; + return OsdPipSetup.SetupParse(Name, Value); } VDRPLUGINCREATOR(cPluginOsdpip); // Don't touch this! |