diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2001-11-04 11:38:23 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2001-11-04 11:38:23 +0100 |
commit | 9bba1ce73e5d82d505e20b1ddb1012021b72f35c (patch) | |
tree | 5e2e5b93001f45514f40a9a51c1ed41063dd9246 /dvbapi.h | |
parent | 6deb1cea38e67c7319fcad01c401e29ee8f24480 (diff) | |
download | vdr-9bba1ce73e5d82d505e20b1ddb1012021b72f35c.tar.gz vdr-9bba1ce73e5d82d505e20b1ddb1012021b72f35c.tar.bz2 |
Removed all video overlay stuff from cDvbApi and SVDRP
Diffstat (limited to 'dvbapi.h')
-rw-r--r-- | dvbapi.h | 23 |
1 files changed, 1 insertions, 22 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: dvbapi.h 1.56 2001/10/28 15:47:10 kls Exp $ + * $Id: dvbapi.h 1.57 2001/11/04 11:27:18 kls Exp $ */ #ifndef __DVBAPI_H @@ -34,12 +34,6 @@ #include "eit.h" #include "thread.h" -// Overlay facilities -#define MAXCLIPRECTS 100 -typedef struct CRect { - signed short x, y, width, height; - }; - #define FRAMESPERSEC 25 // The maximum file size is limited by the range that can be covered @@ -155,21 +149,6 @@ public: bool GrabImage(const char *FileName, bool Jpeg = true, int Quality = -1, int SizeX = -1, int SizeY = -1); - // Overlay facilities - -private: - bool ovlStat, ovlGeoSet, ovlFbSet; - int ovlSizeX, ovlSizeY, ovlPosX, ovlPosY, ovlBpp, ovlPalette, ovlClips, ovlClipCount; - int ovlFbSizeX, ovlFbSizeY; - __u16 ovlBrightness, ovlColour, ovlHue, ovlContrast; - struct video_clip ovlClipRects[MAXCLIPRECTS]; -public: - bool OvlF(int SizeX, int SizeY, int FbAddr, int Bpp, int Palette); - bool OvlG(int SizeX, int SizeY, int PosX, int PosY); - bool OvlC(int ClipCount, CRect *Cr); - bool OvlP(__u16 Brightness, __u16 Color, __u16 Hue, __u16 Contrast); - bool OvlO(bool Value); - // On Screen Display facilities private: |