summaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
authorAndreas Regel <andreas.regel@powarman.de>2004-02-04 21:11:00 +0100
committerAndreas Regel <andreas.regel@powarman.de>2004-02-04 21:11:00 +0100
commit2e17045cd1b8abe771d136cbc3a815b547d32280 (patch)
tree99d3f176d8b6d32160d7464cdbbcf25a33c47a61 /config.h
parent64fe6b70d0a5b34a80ff458fbf1664018d5c0182 (diff)
downloadvdr-plugin-osdpip-2e17045cd1b8abe771d136cbc3a815b547d32280.tar.gz
vdr-plugin-osdpip-2e17045cd1b8abe771d136cbc3a815b547d32280.tar.bz2
Release version 0.0.4v0.0.4
- a second osd window with some information about the viewed channel and event is now shown on screen
Diffstat (limited to 'config.h')
-rw-r--r--config.h30
1 files changed, 19 insertions, 11 deletions
diff --git a/config.h b/config.h
index d7f645d..2840f9a 100644
--- a/config.h
+++ b/config.h
@@ -18,22 +18,30 @@ const int kFrameModeI = 0;
const int kFrameModeIP = 1;
const int kFrameModeIPB = 2;
+const int kInfoTopLeft = 0;
+const int kInfoTopRight = 1;
+const int kInfoBottomLeft = 2;
+const int kInfoBottomRight = 3;
+
struct cOsdPipSetup {
cOsdPipSetup(void);
bool SetupParse(const char *Name, const char *Value);
- int XPosition;
- int YPosition;
- int CropLeft;
- int CropRight;
- int CropTop;
- int CropBottom;
- int ColorDepth;
- int Size;
- int FrameMode;
- int FrameDrop;
- int SwapFfmpeg;
+ int XPosition;
+ int YPosition;
+ int CropLeft;
+ int CropRight;
+ int CropTop;
+ int CropBottom;
+ int ColorDepth;
+ int Size;
+ int FrameMode;
+ int FrameDrop;
+ int SwapFfmpeg;
+ int ShowInfo;
+ int InfoWidth;
+ int InfoPosition;
};
extern cOsdPipSetup OsdPipSetup;