mirror of
https://github.com/X11Libre/xf86-video-v4l.git
synced 2026-04-14 11:14:32 +00:00
Compare commits
13 Commits
IPv6-REVIE
...
XORG-6_8_9
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1f05cde42c | ||
|
|
1fa8d2f701 | ||
|
|
7123df70e0 | ||
|
|
b299863dd2 | ||
|
|
1f8ceb0991 | ||
|
|
fb4a148b6e | ||
|
|
abaaf69833 | ||
|
|
bd8c0455c2 | ||
|
|
9c34b95344 | ||
|
|
871d6d6aef | ||
|
|
e8bf6a26c8 | ||
|
|
0fc7fdb71a | ||
|
|
1c98a4f36f |
2
README
2
README
@@ -34,4 +34,4 @@
|
||||
|
||||
|
||||
|
||||
$XFree86: xc/programs/Xserver/hw/xfree86/drivers/v4l/README,v 1.1 1999/03/28 15:32:50 dawes Exp $
|
||||
$XFree86: xc/programs/Xserver/hw/xfree86/drivers/v4l/README,v 1.2 2001/05/07 21:59:07 tsi Exp $
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
.\" $XFree86: xc/programs/Xserver/hw/xfree86/drivers/v4l/v4l.man,v 1.2 2001/01/27 18:20:55 dawes Exp $
|
||||
.\" $XFree86: xc/programs/Xserver/hw/xfree86/drivers/v4l/v4l.man,v 1.3 2001/05/29 22:24:06 dawes Exp $
|
||||
.\" shorthand for double quote that works everywhere.
|
||||
.ds q \N'34'
|
||||
.TH V4L __drivermansuffix__ __vendorversion__
|
||||
|
||||
12
src/v4l.c
12
src/v4l.c
@@ -4,6 +4,10 @@
|
||||
*/
|
||||
/* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/v4l/v4l.c,v 1.33 2003/12/05 03:55:32 dawes Exp $ */
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include "videodev.h"
|
||||
#include "xf86.h"
|
||||
#include "xf86_OSproc.h"
|
||||
@@ -12,7 +16,7 @@
|
||||
#include "xf86PciInfo.h"
|
||||
#include "xf86fbman.h"
|
||||
#include "xf86xv.h"
|
||||
#include "Xv.h"
|
||||
#include <X11/extensions/Xv.h>
|
||||
#include "regionstr.h"
|
||||
#include "dgaproc.h"
|
||||
#include "xf86str.h"
|
||||
@@ -29,7 +33,7 @@ static void V4LIdentify(int flags);
|
||||
static Bool V4LProbe(DriverPtr drv, int flags);
|
||||
static const OptionInfoRec * V4LAvailableOptions(int chipid, int busid);
|
||||
|
||||
DriverRec V4L = {
|
||||
_X_EXPORT DriverRec V4L = {
|
||||
40000,
|
||||
"v4l",
|
||||
V4LIdentify, /* Identify*/
|
||||
@@ -50,7 +54,7 @@ static XF86ModuleVersionInfo v4lVersRec =
|
||||
MODULEVENDORSTRING,
|
||||
MODINFOSTRING1,
|
||||
MODINFOSTRING2,
|
||||
XF86_VERSION_CURRENT,
|
||||
XORG_VERSION_CURRENT,
|
||||
0, 0, 1,
|
||||
ABI_CLASS_VIDEODRV,
|
||||
ABI_VIDEODRV_VERSION,
|
||||
@@ -58,7 +62,7 @@ static XF86ModuleVersionInfo v4lVersRec =
|
||||
{0,0,0,0}
|
||||
};
|
||||
|
||||
XF86ModuleData v4lModuleData = { &v4lVersRec, v4lSetup, NULL };
|
||||
_X_EXPORT XF86ModuleData v4lModuleData = { &v4lVersRec, v4lSetup, NULL };
|
||||
|
||||
static pointer
|
||||
v4lSetup(pointer module, pointer opts, int *errmaj, int *errmin)
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
*/
|
||||
/* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/v4l/videodev.h,v 1.7tsi Exp $ */
|
||||
|
||||
#include "Xmd.h"
|
||||
#include <X11/Xmd.h>
|
||||
|
||||
#define VID_TYPE_CAPTURE 1 /* Can capture */
|
||||
#define VID_TYPE_TUNER 2 /* Can tune */
|
||||
|
||||
Reference in New Issue
Block a user