diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2012-02-14 13:41:52 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2012-02-14 13:41:52 +0100 |
commit | 17485ccc96a2c562ba947070acc0a77be2b7db9c (patch) | |
tree | 374ef7bf574c9360aed003fe660d6e2bcb2a3d12 /dvbdevice.h | |
parent | 1857a0ca2018d19804d6b96cdfa7dcb50ab14ed1 (diff) | |
download | vdr-17485ccc96a2c562ba947070acc0a77be2b7db9c.tar.gz vdr-17485ccc96a2c562ba947070acc0a77be2b7db9c.tar.bz2 |
Changed cDvbDevice::GrabImage() to use V4L2 (backport from version 1.7.3)
Diffstat (limited to 'dvbdevice.h')
-rw-r--r-- | dvbdevice.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dvbdevice.h b/dvbdevice.h index 7bd3e545..127e02d7 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.47 2008/02/08 13:48:31 kls Exp $ + * $Id: dvbdevice.h 1.47.1.1 2012/02/14 12:46:35 kls Exp $ */ #ifndef __DVBDEVICE_H @@ -15,8 +15,8 @@ #include "device.h" #include "dvbspu.h" -#if DVB_API_VERSION != 3 -#error VDR requires Linux DVB driver API version 3! +#if (DVB_API_VERSION << 8 | DVB_API_VERSION_MINOR) < 0x0300 +#error VDR requires Linux DVB driver API version 3.0 or higher! #endif #define MAXDVBDEVICES 8 |