diff options
author | Mauro Carvalho Chehab <mchehab@infradead.org> | 2006-11-15 15:42:04 -0200 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2006-11-15 15:42:04 -0200 |
commit | 06700d6b31366059ca963dd4aba34ea2e57aaa05 (patch) | |
tree | c7119f367f12df373a282ce01305b02feff23e4f /.hgignore | |
parent | e73ea31dcd5884251424ccbf13a0d515f8914c27 (diff) | |
download | mediapointer-dvb-s2-06700d6b31366059ca963dd4aba34ea2e57aaa05.tar.gz mediapointer-dvb-s2-06700d6b31366059ca963dd4aba34ea2e57aaa05.tar.bz2 |
Initiated v4l-apps/lib V4L2 functions
From: Mauro Carvalho Chehab <mchehab@infradead.org>
- Created v4l2_driver.c with some basic functions to:
. Enum STD, INPUT and FORMAT
. GET/SET STD and INPUT
. GET PARAM
- ioctl-test reverted back to a simple "brute-force" all ioctl call;
- driver-test created to:
. test V4L2 kernel drivers;
. implement all functions provided by v4l2 library
- driver-test should grow following the changes at v4l2-apps/lib
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to '.hgignore')
-rw-r--r-- | .hgignore | 32 |
1 files changed, 20 insertions, 12 deletions
@@ -1,11 +1,13 @@ -.*[.]rej -.*[.]orig -.*[~] +.pc +.*[\.]rej +.*[\.]orig +.*[\~] +patches/ v4l/.version v4l/.tmp_versions/.* -v4l/[^/]*[.]c -v4l/.*[.]o -v4l/.*[.]ko +v4l/[^/]*[\.]c +v4l/.*[\.]o +v4l/.*[\.]ko v4l/.kconfig.d v4l/.tmpconfig.h v4l/Kconfig @@ -18,9 +20,15 @@ v4l/scripts/Kconfig v4l/scripts/Kconfig.kern v4l/config-compat.h v4l/.myconfig -test/ioctl-test -test/sliced-vbi-detect -test/sliced-vbi-test -test/vbi-test -.pc -patches/ +v4l2-apps/lib/.*\.d +v4l2-apps/lib/.*\.o +v4l2-apps/lib/.*\.a +v4l2-apps/lib/.*\.so +v4l2-apps/test/.*\.d +v4l2-apps/test/.*\.o +v4l2-apps/test/driver-test +v4l2-apps/test/v4lgrab +v4l2-apps/test/ioctl-test +v4l2-apps/test/sliced-vbi-detect +v4l2-apps/test/sliced-vbi-test +v4l2-apps/test/vbi-test |