Mauro Carvalho Chehab f4ccca1dec Port xf86-video-v4l driver to V4L2
V4L1 API was dropped on kernel 2.6.38. Even the emulation layer
inside kernel was dropped. While it might still be possible to use
X with libv4l and a LD_PRELOADER setup, the proper way is to port
the driver to use the V4L2 API.

This change brings some improvements to the code, as now all
integer/boolean/menu controls are visible, and all video standards.

Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2011-02-11 07:55:25 -02:00
2011-02-11 07:55:25 -02:00
2005-12-19 16:25:56 +00:00
2004-06-16 09:24:09 +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.2 2001/05/07 21:59:07 tsi Exp $
Description
No description provided
Readme 490 KiB
Languages
C 99.2%
Makefile 0.3%
Shell 0.3%
M4 0.2%