diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-11-09 18:52:08 +0100 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-11-09 18:52:08 +0100 |
commit | 281dbfcc4668928841bf3c2b39dbe295a58c3e5f (patch) | |
tree | e2ef34dfd58e2dc70f778333898fccb5d3ebbf63 /src/input/input_pvr.c | |
parent | ca08e0a8ae822cf1774f25bd84ab1643d6e6e9b7 (diff) | |
download | xine-lib-281dbfcc4668928841bf3c2b39dbe295a58c3e5f.tar.gz xine-lib-281dbfcc4668928841bf3c2b39dbe295a58c3e5f.tar.bz2 |
Use system's linux/videodev2.h header file.
Please note: on 2.4 systems without the extra V4L2 stack, the header will
be missing. As it is, both input_pvr and input_v4l (that still uses the old
interface) will be disabled if either header is not found.
Further optimisation to just disable PVR on non-V4L2-capable systems might
be useful.
Diffstat (limited to 'src/input/input_pvr.c')
-rw-r--r-- | src/input/input_pvr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input/input_pvr.c b/src/input/input_pvr.c index 1cd5a8d9e..74022965f 100644 --- a/src/input/input_pvr.c +++ b/src/input/input_pvr.c @@ -100,7 +100,7 @@ #include <time.h> #include <pthread.h> #include <sys/ioctl.h> -#include "videodev2.h" +#include <linux/videodev2.h> #define XINE_ENABLE_EXPERIMENTAL_FEATURES |