diff options
author | Robert Nagy <robert@cvs.openbsd.org> | 2008-04-09 19:49:56 +0000 |
---|---|---|
committer | Robert Nagy <robert@cvs.openbsd.org> | 2008-04-09 19:49:56 +0000 |
commit | 5c65555344f5adae4cb96b9157b0f0e218ea3f5f (patch) | |
tree | 3099d6ea933200b086c28e846bb47c362f6d5bef /sys/dev/videovar.h | |
parent | e0f93117a5b4c3f6d40f132c73bc0170b9d6591a (diff) |
Initial import for uvideo(4) and video(4):
uvideo(4) is a driver for USB video device class devices including webcams,
camcorders and other cameras.
video(4) is a device-independent layer that implements the V4L2 (Video for Linux Two)
API.
These drivers are *really* work in progress so don't even try to use them just yet,
because the driver still has some issues, even if it can be used to capture simple
MJPEG videos.
ok mglocker@, deraadt@
Diffstat (limited to 'sys/dev/videovar.h')
-rw-r--r-- | sys/dev/videovar.h | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/sys/dev/videovar.h b/sys/dev/videovar.h new file mode 100644 index 00000000000..3b6319cfd28 --- /dev/null +++ b/sys/dev/videovar.h @@ -0,0 +1,29 @@ +/* $OpenBSD: videovar.h,v 1.1 2008/04/09 19:49:55 robert Exp $ */ +/* + * Copyright (c) 2008 Robert Nagy <robert@openbsd.org> + * + * Permission to use, copy, modify, and distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + */ + +#ifndef _SYS_DEV_VIDEOVAR_H +#define _SYS_DEV_VIDEOVAR_H + +struct video_softc { + struct device dev; + void *hw_hdl; /* hardware driver handle */ + struct device *sc_dev; /* hardware device struct */ + struct video_hw_if *hw_if; /* hardware interface */ + char sc_dying; /* device detached */ +}; + +#endif /* _SYS_DEV_VIDEOVAR_H */ |