From 310f5b2a62343d0c9b7624c09efe35828785ef26 Mon Sep 17 00:00:00 2001 From: Sascha Volkenandt Date: Sat, 3 Jan 2004 23:31:00 +0100 Subject: Release version 0.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 --- osdpip.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'osdpip.c') diff --git a/osdpip.c b/osdpip.c index afa76d1..7507777 100644 --- a/osdpip.c +++ b/osdpip.c @@ -7,11 +7,12 @@ */ #include "osd.h" +#include "config.h" #include "i18n.h" #include -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! -- cgit v1.2.3