xenocara/driver/xf86-video-v4l
2006-11-28 12:15:32 +00:00
..
man Remove RCS Ids 2006-11-28 12:15:32 +00:00
src Importing xf86-video-v4l 0.1.1 2006-11-26 20:18:56 +00:00
aclocal.m4 Importing xf86-video-v4l 0.1.1 2006-11-26 20:18:56 +00:00
ChangeLog Importing xf86-video-v4l 0.1.1 2006-11-26 20:18:56 +00:00
config.guess Importing xf86-video-v4l 0.1.1 2006-11-26 20:18:56 +00:00
config.h.in Importing xf86-video-v4l 0.1.1 2006-11-26 20:18:56 +00:00
config.sub Importing xf86-video-v4l 0.1.1 2006-11-26 20:18:56 +00:00
configure Importing xf86-video-v4l 0.1.1 2006-11-26 20:18:56 +00:00
configure.ac Importing xf86-video-v4l 0.1.1 2006-11-26 20:18:56 +00:00
COPYING Importing xf86-video-v4l 0.1.1 2006-11-26 20:18:56 +00:00
depcomp Importing xf86-video-v4l 0.1.1 2006-11-26 20:18:56 +00:00
install-sh Importing xf86-video-v4l 0.1.1 2006-11-26 20:18:56 +00:00
ltmain.sh Importing xf86-video-v4l 0.1.1 2006-11-26 20:18:56 +00:00
Makefile.am Importing xf86-video-v4l 0.1.1 2006-11-26 20:18:56 +00:00
Makefile.in Importing xf86-video-v4l 0.1.1 2006-11-26 20:18:56 +00:00
missing Importing xf86-video-v4l 0.1.1 2006-11-26 20:18:56 +00:00
README Importing xf86-video-v4l 0.1.1 2006-11-26 20:18:56 +00:00

 Video 4 Linux adaptor driver for XFree86 v4.0

 Developed by Gerd Knorr <kraxel@goldbach.in-berlin.de> and
	David Woodhouse <David.Woodhouse@mvhi.com>

----------------------------------------------------------------------------

 This chipset driver does not provide a graphics adaptor driver, but instead
 registers a number of generic Xv adaptors which can be used with any graphics
 chipset driver.

 In order to use v4l adaptors with your favourite graphics driver, the
 graphics driver must do two things:

 1. Correctly set pScrn->memPhysBase and pScrn->fbOffset for the screens that
	it provides, to the physical address of the frame buffer memory, and
	the offset within that memory that the current mode starts,
	respectively.

 2. Use the xf86XVListGenericAdaptors() routine to list all available Xv
	adaptors which are usable with any target device, and initialise
	them on its screens with xf86XVScreenInit() as follows...

	    {
	       XF86VideoAdaptorPtr *ptr;

	       int xvexts = xf86XVListGenericAdaptors(&ptr);

	       if (xvexts) {
	           xf86XVScreenInit(pScreen, ptr, xvexts);
	       }
	    }
 


$XFree86: xc/programs/Xserver/hw/xfree86/drivers/v4l/README,v 1.1 1999/03/28 15:32:50 dawes Exp $