diff options
author | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2008-01-14 23:24:15 +0000 |
---|---|---|
committer | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2008-01-14 23:24:15 +0000 |
commit | bc09805e004f1a68d7a632a38ed6309f6c9ec356 (patch) | |
tree | 84fb91c41694623f1cb382805e7fe5db9283392b | |
parent | 0c0e9b541318da072be829d920d5ae47676d3dba (diff) | |
download | xine-lib-bc09805e004f1a68d7a632a38ed6309f6c9ec356.tar.gz xine-lib-bc09805e004f1a68d7a632a38ed6309f6c9ec356.tar.bz2 |
Change the default v4l device paths to /dev/{video,radio}0.
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | src/input/input_v4l.c | 4 |
2 files changed, 3 insertions, 2 deletions
@@ -1,5 +1,6 @@ xine-lib (1.1.10) (unreleased) * Update Ogg and Annodex mimetypes and extensions. + * Change the default v4l device paths to /dev/video0 and /dev/radio0. xine-lib (1.1.9.1) * Security fixes: diff --git a/src/input/input_v4l.c b/src/input/input_v4l.c index b43a2684a..34f6a0684 100644 --- a/src/input/input_v4l.c +++ b/src/input/input_v4l.c @@ -91,8 +91,8 @@ static const resolution_t resolutions[] = { }; #define NUM_RESOLUTIONS (sizeof(resolutions)/sizeof(resolutions[0])) -#define RADIO_DEV "/dev/v4l/radio0" -#define VIDEO_DEV "/dev/v4l/video0" +#define RADIO_DEV "/dev/radio0" +#define VIDEO_DEV "/dev/video0" #if !defined(NDELAY) && defined(O_NDELAY) #define FNDELAY O_NDELAY |