summaryrefslogtreecommitdiff
path: root/patches
diff options
context:
space:
mode:
authorAndreas Regel <andreas.regel@powarman.de>2008-04-27 18:44:00 +0200
committerAndreas Regel <andreas.regel@powarman.de>2008-04-27 18:44:00 +0200
commitcac6362d2207752926f9339c1c547d60d5c2a6a0 (patch)
treec8c4ae6d3b5e0bca179b3b28468f6aca736d14c7 /patches
parent4df61fcc16983f71ca5ab1d539840f7d04b9d48f (diff)
downloadvdr-plugin-osdpip-cac6362d2207752926f9339c1c547d60d5c2a6a0.tar.gz
vdr-plugin-osdpip-cac6362d2207752926f9339c1c547d60d5c2a6a0.tar.bz2
Release version 0.0.9v0.0.9
- dropped support for VDR version lower than 1.3.47. - Now using palette replacemen introduced in VDR 1.4.27, so palette setting workaround is not needed any longer. This simplifies code a bit. - added support for VDR 1.6. Now 1.4 and 1.6 are supported (tested with 1.4.7 and 1.6.0) - added gettext localization support introduced with VDR 1.5.7. - Do not decode B frames when dropping them. - Use cCondWait::SleepMs instead of usleep. - Fixed automatic closing of OSD after some minutes. - Fixed showing wrong channel information. - Added missing inclusion of <vdr/device.h>. - Added new colour reduction mode using 256 dithered colours (thanks to Martin Wache). - Added french translations (thanks to micky979)
Diffstat (limited to 'patches')
-rw-r--r--patches/vdr-osd.diff51
1 files changed, 0 insertions, 51 deletions
diff --git a/patches/vdr-osd.diff b/patches/vdr-osd.diff
deleted file mode 100644
index 0acc0f2..0000000
--- a/patches/vdr-osd.diff
+++ /dev/null
@@ -1,51 +0,0 @@
-diff -Nu vdr-1.3.24/osd.c vdr/osd.c
---- vdr-1.3.24/osd.c 2004-12-19 13:27:38.000000000 +0100
-+++ vdr/osd.c 2005-05-14 13:59:03.000000000 +0200
-@@ -574,7 +574,7 @@
-
- // --- cOsd ------------------------------------------------------------------
-
--bool cOsd::isOpen = false;
-+int cOsd::isOpen = 0;
-
- cOsd::cOsd(int Left, int Top)
- {
-@@ -585,7 +585,7 @@
- left = Left;
- top = Top;
- width = height = 0;
-- isOpen = true;
-+ isOpen++;
- }
-
- cOsd::~cOsd()
-@@ -593,7 +593,7 @@
- for (int i = 0; i < numBitmaps; i++)
- delete bitmaps[i];
- delete savedRegion;
-- isOpen = false;
-+ isOpen--;
- }
-
- cBitmap *cOsd::GetBitmap(int Area)
-diff -Nu vdr-1.3.24/osd.h vdr/osd.h
---- vdr-1.3.24/osd.h 2004-10-16 12:33:44.000000000 +0200
-+++ vdr/osd.h 2005-05-14 13:58:08.000000000 +0200
-@@ -210,7 +210,7 @@
- class cOsd {
- friend class cOsdProvider;
- private:
-- static bool isOpen;
-+ static int isOpen;
- cBitmap *savedRegion;
- cBitmap *bitmaps[MAXOSDAREAS];
- int numBitmaps;
-@@ -235,7 +235,7 @@
- public:
- virtual ~cOsd();
- ///< Shuts down the OSD.
-- static bool IsOpen(void) { return isOpen; }
-+ static int IsOpen(void) { return isOpen; }
- int Left(void) { return left; }
- int Top(void) { return top; }
- int Width(void) { return width; }