diff options
author | Brandon Philips <brandon@ifup.org> | 2008-07-30 20:07:58 -0700 |
---|---|---|
committer | Brandon Philips <brandon@ifup.org> | 2008-07-30 20:07:58 -0700 |
commit | a9cbfb5bdc82fdb04c1023f3a4bc1f5bd4a6a4a8 (patch) | |
tree | b4ab458f7b406be056db25856a97995c1b597cbd /v4l2-apps/lib/libv4l/libv4l2/v4l2convert.c | |
parent | feec7dd735a92d1d390cc0669f879e2b6d36389e (diff) | |
download | mediapointer-dvb-s2-a9cbfb5bdc82fdb04c1023f3a4bc1f5bd4a6a4a8.tar.gz mediapointer-dvb-s2-a9cbfb5bdc82fdb04c1023f3a4bc1f5bd4a6a4a8.tar.bz2 |
libv4l: add /dev/v4l/ to the paths supported by open() override
Signed-off-by: Brandon Philips <bphilips@suse.de>
Diffstat (limited to 'v4l2-apps/lib/libv4l/libv4l2/v4l2convert.c')
-rw-r--r-- | v4l2-apps/lib/libv4l/libv4l2/v4l2convert.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/v4l2-apps/lib/libv4l/libv4l2/v4l2convert.c b/v4l2-apps/lib/libv4l/libv4l2/v4l2convert.c index 7db1ca6d6..7b64bc018 100644 --- a/v4l2-apps/lib/libv4l/libv4l2/v4l2convert.c +++ b/v4l2-apps/lib/libv4l/libv4l2/v4l2convert.c @@ -66,7 +66,7 @@ int open (const char *file, int oflag, ...) return fd; /* check if we're opening a video4linux2 device */ - if (strncmp(file, "/dev/video", 10)) + if (strncmp(file, "/dev/video", 10) && strncmp(file, "/dev/v4l/", 9)) return fd; /* check that this is an v4l2 device, libv4l2 only supports v4l2 devices */ |