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/libv4l1 | |
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/libv4l1')
-rw-r--r-- | v4l2-apps/lib/libv4l/libv4l1/libv4l1.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/v4l2-apps/lib/libv4l/libv4l1/libv4l1.c b/v4l2-apps/lib/libv4l/libv4l1/libv4l1.c index b80fcb56d..80d2fa09b 100644 --- a/v4l2-apps/lib/libv4l/libv4l1/libv4l1.c +++ b/v4l2-apps/lib/libv4l/libv4l1/libv4l1.c @@ -28,12 +28,12 @@ capture only devices, or non v4l2 devices. 2) libv4l1 is the base of the v4l1compat.so wrapper lib, which is a .so which can be LD_PRELOAD-ed and the overrules the libc's open/close/etc, - and when opening /dev/videoX calls v4l1_open. Because we behave as the - regular counterpart when the fd is not known (instead of say throwing - an error), v4l1compat.so can simply call the v4l1_ prefixed function - for all wrapped functions. This way the wrapper does not have to keep - track of which fd's are being handled by libv4l1, as libv4l1 already - keeps track of this itself. + and when opening /dev/videoX or /dev/v4l/ calls v4l1_open. Because we + behave as the regular counterpart when the fd is not known (instead of + say throwing an error), v4l1compat.so can simply call the v4l1_ prefixed + function for all wrapped functions. This way the wrapper does not have + to keep track of which fd's are being handled by libv4l1, as libv4l1 + already keeps track of this itself. This also means that libv4l1 may not use any of the regular functions it mimics, as for example open could be a symbol in v4l1compat.so, which @@ -279,7 +279,7 @@ int v4l1_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, no need to emulate v4l1 on |