diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2003-10-04 12:42:58 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2003-10-04 12:42:58 +0200 |
commit | 3f12ebbccb3c23b5722d591fe21d65134ff87f93 (patch) | |
tree | 7e1754dd6b9b3a9af11cd0e0ce4bd48e40a64c85 /dvbdevice.h | |
parent | 944ffee0a18e1a33770ef35f12bbe0e77850476c (diff) | |
download | vdr-3f12ebbccb3c23b5722d591fe21d65134ff87f93.tar.gz vdr-3f12ebbccb3c23b5722d591fe21d65134ff87f93.tar.bz2 |
Fixed detecting the /dev/videoN devices for GRAB in case there are others before the DVB devices
Diffstat (limited to 'dvbdevice.h')
-rw-r--r-- | dvbdevice.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/dvbdevice.h b/dvbdevice.h index aab20fdd..78df221b 100644 --- a/dvbdevice.h +++ b/dvbdevice.h @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: dvbdevice.h 1.22 2003/08/15 12:34:55 kls Exp $ + * $Id: dvbdevice.h 1.23 2003/10/04 11:54:50 kls Exp $ */ #ifndef __DVBDEVICE_H @@ -73,6 +73,9 @@ protected: // Image Grab facilities +private: + static int devVideoOffset; + int devVideoIndex; public: virtual bool GrabImage(const char *FileName, bool Jpeg = true, int Quality = -1, int SizeX = -1, int SizeY = -1); |