diff options
author | Klaus Schmidinger <kls (at) cadsoft (dot) de> | 2002-08-25 18:00:00 +0200 |
---|---|---|
committer | Klaus Schmidinger <kls (at) cadsoft (dot) de> | 2002-08-25 18:00:00 +0200 |
commit | a2a215d5e12ad35df8d0731dd00b6e41d5dd77fa (patch) | |
tree | cb13aa5088a06e52ca9ef762224ed1708e19465f /dvbdevice.c | |
parent | ed643353b100bee75459c4ef2d0330e7a04e1f2a (diff) | |
download | vdr-patch-lnbsharing-a2a215d5e12ad35df8d0731dd00b6e41d5dd77fa.tar.gz vdr-patch-lnbsharing-a2a215d5e12ad35df8d0731dd00b6e41d5dd77fa.tar.bz2 |
Version 1.1.8vdr-1.1.8
- Fixed replaying the last few seconds of a recording.
- Added some missing #includes to files in libdtv for gcc 3.2 (thanks to Jürgen
Zimmermann).
- Added cDevice::NewOsd() to allow a derived cDevice class to implement its own
OSD capabilities (thanks to Andreas Schultz).
- Added cPalette::AllColors() for plugins that need to get the color entries of
a cPalette (see osdbase.h).
- The new SVDRP command CLRE can be used to clear the entire EPG data (suggested
by Matthias Schniedermeyer).
- Fixed handling one-shot timers that were already recording and had their start
time changed into the future (thanks to Matthias Schniedermeyer for reporting
this one).
Diffstat (limited to 'dvbdevice.c')
-rw-r--r-- | dvbdevice.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/dvbdevice.c b/dvbdevice.c index 6be882f..52c7c3b 100644 --- a/dvbdevice.c +++ b/dvbdevice.c @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: dvbdevice.c 1.7 2002/08/16 09:27:53 kls Exp $ + * $Id: dvbdevice.c 1.8 2002/08/25 09:20:53 kls Exp $ */ #include "dvbdevice.h" @@ -193,6 +193,11 @@ bool cDvbDevice::HasDecoder(void) const return fd_video >= 0 && fd_audio >= 0; } +cOsdBase *cDvbDevice::NewOsd(int x, int y) +{ + return new cDvbOsd(x, y); +} + bool cDvbDevice::GrabImage(const char *FileName, bool Jpeg, int Quality, int SizeX, int SizeY) { int videoDev = DvbOpen(DEV_VIDEO, CardIndex(), O_RDWR, true); |