Skip to content

kangear/v4l-utils

Repository files navigation

v4l-utils
---------

Linux utilities and libraries to handle media devices (TV devices,
capture devices, radio devices, remote controllers).

You can always find the latest development v4l-utils in the git repo:
	http://git.linuxtv.org/v4l-utils.git

Those utilities follow the latest Linux Kernel media API, as documented
at:
	http://linuxtv.org/downloads/v4l-dvb-apis/

----------
versioning
----------

The v4l-utils doesn't quite follow the release versioning defined
at semver.org.

Instead, since version 1.0, it uses:

	MAJOR.MINOR.PATCH

Where:

	MINOR - an odd number means a development version. When
		the development is closed, we release an even
		numbered version and start a newer odd version;

	MAJOR - It is incremented when MINOR number starts to be
		too big. The last change occurred from 0.9.x to 1.0.

	All numbers start with 0.

All versions have their own tags, except for the current
deveopment version (with uses the master branch at the git tree).

The PATCH meaning actually depends if the version is stable
or developent.

For even MAJOR.MINOR versions (1.0, 1.2, 1.4, 1.6, ...)

	PATCH is incremented when just bug fixes are added;

For odd MAJOR.MINOR versions (1.1, 1.3, 1.5, 1.7, ...)
	PATCH is incremented for release candidate versions.

API/ABI stability:
-----------------

There should not have any API/ABI changes when PATCH is incremented.

When MAJOR and/or MINOR are incremented, the API/ABI for the
libraries might change, although we do all the efforts for not
doing it, except when inevitable.

The TODO files should specify the events that will generate
API/ABI breaks.

---------------
media libraries
---------------

There are currently three media libraries defined at /lib directory,
meant to be used internally and by other applications.

libv4l
------

This library is meant to be used by applications that need to
talk with V4L2 devices (webcams, analog TV, stream grabbers).

It can be found on the following directories:
	lib/libv4l1
	lib/libv4l2
	lib/libv4l-mplane
	lib/libv4lconvert

See README.libv4l for more information on libv4l.

The libv4l is released under the GNU Lesser General Public License.

libdvbv5
--------

This library is meant to be used by digital TV applications that
need to talk with media hardware.

Full documentation is provided via Doxygen. It can be built,
after configuring the package, with:
	$ make doxygen-run

It is possible to generate documentation in html, man pages and pdf
formats.

The documentation is also available via web, at:
	http://linuxtv.org/docs/libdvbv5/

It can be found on the following directory:
	lib/libdvbv5

The libdvbv5 is released under GPL version 2.


libv4l2rds
----------

This library provides support for RDS radio applications.

It can be found on the following directory:
	lib/libv4l2rds

The libv4l is released under the GNU Lesser General Public License.

---------
Utilities
---------

The utilities are stored under /util directory.

The (for now for v4l-utils private use only) libv4l2util library is
released under the GNU Lesser General Public License, all other code is
released under the GNU General Public License.

v4l-utils includes the following utilities:

decode_tm6000:
Decodes tm6000 proprietary format streams.
Installed by make install under <prefix>/bin.

v4l-keytable:
Dump, Load or Modify ir receiver input tables.
The ir tables for remotes which are known by the kernel
(and loaded by default depending on dvb card type) can be found
under utils/keytable/keycodes.
v4l-keytable does not get installed by make install.

qv4l2:
QT v4l2 control panel application.
Installed by make install under <prefix>/bin.

rds-saa6588:
Poll i2c RDS receiver [Philips saa6588].
rds-saa6588 does not get installed by make install.

v4l2-compliance:
Tool to test v4l2 API compliance of drivers.
Installed by make install under <prefix>/bin.

v4l2-ctl:
Tool to control v4l2 controls from the cmdline.
Installed by make install under <prefix>/bin.

v4l2-dbg:
Tool to directly get and set registers of v4l2 devices,
this requires a kernel >= 2.6.29 with the ADV_DEBUG option
enabled. This tool can only be used by root and is meant
for development purposes only!
Installed by make install under <prefix>/sbin.

v4l2-sysfs-path:
FIXME add description.
Installed by make install under <prefix>/bin.

xc3028-firmware:
Xceive XC2028/3028 tuner module firmware manipulation tool.
xc3028-firmware does not get installed by make install.

-------------------
Syncing with Kernel
-------------------

There are a number of files on this package that depends on the Linux Kernel.

In order to make easier to keep it in sync, there's a target on this
package to do the synchronism.

There are some steps required:

step 1) at the Kernel git tree:

We need to sanitize the headers to be installed. To do that, you should
run

	$ make headers_install INSTALL_HDR_PATH=usr/

This will create the dir "usr/" inside the Kernel tree.

step 2)

Be sure that you have installed both glibc development packages for
32 and 64 bits, as otherwise the next step will fail.

step 3) at v4l-utils tree:

	$ KERNEL_DIR=location/of/the/kernel/tree make sync-with-kernel

step 4)

Remove the usr/ from the Kernel tree.