Announcing v4l-utils-0.8.0

2010-05-07 Thread Hans de Goede
Hi, I'm happy to announce the first stable release of v4l-utils, nothing special this time around just a few small bug fixes and cleanups left and right. New this release: v4l-utils-0.8.0 --- * Utils changes: * Various v4l-keytable improvements (mchehab) * Various v4l2-ctl fixes

Re: gspca-sonixj: ioctl VIDIOC_DQBUF blocks for 3s and retuns EIO

2010-05-14 Thread Hans de Goede
Hi, On 05/14/2010 08:00 AM, Jean-Francois Moine wrote: On Thu, 13 May 2010 17:58:49 +0200 Frank Schaefer wrote: I'm not sure if I'm hitting a bug or this is the expected driver behavior: With a Microsoft LifeCam VX-3000 (045e:00f5) and gspca-sonixj, ioctl VIDIOC_DQBUF intermittently blocks fo

Re: [Patch] Moving v4l1 ioctls from kernel to libv4l1

2010-05-18 Thread Hans de Goede
Hi Huzaifa, First of all many thanks for working on this! Comments inline. On 05/18/2010 01:12 PM, Huzaifa Sidhpurwala wrote: Hi All, I have been working with Hans for moving the v4l1 ioctls from the kernel to libv4l1. It would be best to work on one ioctl at a time. The enclosed patch attempt

Re: [Patch] Moving v4l1 ioctls from kernel to libv4l1

2010-05-19 Thread Hans de Goede
te values */ cap->minwidth = devices[index].min_width; cap->minheight = devices[index].min_height; cap->maxwidth = devices[index].max_width; cap->maxheight = devices[index].max_height; + break; + }

Re: [PATCH] libv4l1: move v4l1 ioctls from kernel to libv4l1:VIDIOCGCHAN

2010-05-25 Thread Hans de Goede
Hi, Thanks, added to my tree and pushed. Regards, Hans On 05/25/2010 12:06 PM, huzai...@redhat.com wrote: From: Huzaifa Sidhpurwala move VIDIOCGCHAN to libv4l1 Signed-off-by: Huzaifa Sidhpurwala --- lib/libv4l1/libv4l1.c | 39 ++- 1 files changed, 38

RFC: a processing plugin API for libv4l

2010-05-26 Thread Hans de Goede
Hi all, See attachment. Regards, Hans RFC: a processing plugin API for libv4l === Since libv4l-0.6.x libv4l has the ability to do various video processing steps in software: - white balance - gamma correction - autogain and exposure (simply called autogain i

Re: Tentative agenda for Helsinki mini-summit

2010-05-26 Thread Hans de Goede
d who will do it. Driver conversion: Hans Verkuil, libv4l1 conversion: Hans de Goede. 3) videobuf/videobuf2: what are the shortcomings, what are the requirements for a 'proper' videobuf implementation, can the existing videobuf be fixed or do we need a videobuf2. If the latter,

Re: [PATCH] libv4l1: Move VIDIOCGFBUF into libv4l1

2010-06-01 Thread Hans de Goede
Hi, Thanks, I've applied your patch with one small fix, The else block at the end of was wrongly indented (one indent level too much) It is the else for the first if, not the second. Note the first if has a { at the end of the line, and the second does not, and the else starts with a }. Regards,

Re: [Bugme-new] [Bug 16050] New: The ibmcam driver is not working

2010-06-01 Thread Hans de Goede
Hi, On 05/29/2010 12:46 AM, Andrew Morton wrote: (switched to email. Please respond via emailed reply-to-all, not via the bugzilla web interface). On Tue, 25 May 2010 23:02:23 GMT bugzilla-dae...@bugzilla.kernel.org wrote: https://bugzilla.kernel.org/show_bug.cgi?id=16050 U

PULL request: http://linuxtv.org/hg/~hgoede/gspca

2010-06-01 Thread Hans de Goede
Hi Mauro, Please pull from: http://linuxtv.org/hg/~hgoede/gspca For the following changes: gspca_ovfx2: drop first frames in stream if not synced gspca_tv8532: remove a whole bunch of unnecessary register writes gspca_tv8532: add gain control gspca_tv8532: rename brightness control to exposure

Re: [Bugme-new] [Bug 16077] New: Drop is video frame rate in kernel .34

2010-06-03 Thread Hans de Goede
Hi, On 06/03/2010 09:03 AM, Bjørn Mork wrote: Mauro Carvalho Chehab writes: Em 02-06-2010 18:09, Andrew Morton escreveu: On Sun, 30 May 2010 14:29:55 GMT bugzilla-dae...@bugzilla.kernel.org wrote: https://bugzilla.kernel.org/show_bug.cgi?id=16077 2.6.33 -> 2.6.34 performance regression i

Re: [Bugme-new] [Bug 16050] New: The ibmcam driver is not working

2010-06-03 Thread Hans de Goede
Hi, On 06/01/2010 07:19 PM, Bill Davidsen wrote: Hans de Goede wrote: > In case you don't have this information, here is a line from lsusb: Bus 003 Device 002: ID 0545:8080 Xirlink, Inc. IBM C-It Webcam Hopefully the items you have ordered are the same model. I have the same usb

Re: [Bugme-new] [Bug 16050] New: The ibmcam driver is not working

2010-06-03 Thread Hans de Goede
Hi, On 06/03/2010 04:58 PM, Bill Davidsen wrote: Hans de Goede wrote: Hi, On 06/01/2010 07:19 PM, Bill Davidsen wrote: Hans de Goede wrote: > In case you don't have this information, here is a line from lsusb: Bus 003 Device 002: ID 0545:8080 Xirlink, Inc. IBM C-It Webcam Hopef

Re: [PATCH] libv4l1: move VIDIOCGFREQ and VIDIOCSFREQ to libv4l1

2010-06-07 Thread Hans de Goede
Hi, Looks good, applied Thanks! Regards, Hans On 06/04/2010 09:23 AM, huzai...@redhat.com wrote: From: Huzaifa Sidhpurwala move VIDIOCGFREQ and VIDIOCSFREQ to libv4l1 Signed-of-by: Huzaifa Sidhpurwala --- lib/libv4l1/libv4l1.c | 28 1 files changed, 28 ins

Re: [PATCH] libv4l1: move VIDIOCCAPTURE to libv4l1

2010-06-07 Thread Hans de Goede
Hi, Looks good, applied Thanks! Regards, Hans On 06/04/2010 09:40 AM, huzai...@redhat.com wrote: From: Huzaifa Sidhpurwala move VIDIOCCAPTURE to libv4l1 Signed-of-by: Huzaifa Sidhpurwala --- lib/libv4l1/libv4l1.c | 16 1 files changed, 16 insertions(+), 0 deletions(

Re: [PATCH] libv4l1: move VIDIOCGAUDIO and VIDIOCSAUDIO to libv4l1

2010-06-07 Thread Hans de Goede
Hi, See comments inline. On 06/07/2010 11:50 AM, huzai...@redhat.com wrote: From: Huzaifa Sidhpurwala move VIDIOCGAUDIO and VIDIOCSAUDIO to libv4l1 Signed-of-by: Huzaifa Sidhpurwala --- lib/libv4l1/libv4l1-priv.h |7 ++ lib/libv4l1/libv4l1.c | 160

Re: [PATCH] libv4l1: support up to 256 different frame sizes

2010-06-09 Thread Hans de Goede
Hi, Thanks for the patch I've applied it to the v4l-utils tree. Regards, Hans On 06/08/2010 07:36 PM, Balint Reczey wrote: Logitech, Inc. Webcam Pro 9000 supports 18 wich is more than the the originally supported 16. 256 should be enough for a while. --- lib/libv4lconvert/libv4lconvert-pri

Re: [Bugme-new] [Bug 16050] New: The ibmcam driver is not working

2010-06-09 Thread Hans de Goede
Hi, On 06/03/2010 06:17 PM, Bill Davidsen wrote: So would you be willing to test the new driver (when it is finished) ? Sure, just let me know what kernel the patch is against. As you say, my cams are Model2 in the old nomenclature. Interesting that the size is set to 352x240 rather than CIF

RFCl libv4l2 plugin API

2010-07-01 Thread Hans de Goede
Hi All, RFC: a plugin API for libv4l2 = During the Plumbers conference in 2009 various parties expresse interest in adding a plugin API to libv4l2. Some hardware can do some processing steps in hardware, but this needs to be setup from userspace and sometimes still ne

ibmcam (xrilink_cit) and konica webcam driver porting to gspca update

2010-07-04 Thread Hans de Goede
Hi all, I've finished porting the usbvideo v4l1 ibmcam and konicawc drivers to gspcav2. The ibmcam driver is replaced by gspca_xirlink_cit, which also adds support for 2 new models (it turned out my testing cams where not supported by the old driver). This one could use more testing. The konica

Re: Bugreport for libv4l: error out on webcam: error parsing JPEG header: Bogus jpeg format

2010-07-19 Thread Hans de Goede
Hi, On 07/15/2010 09:30 PM, Yuri wrote: I use Logitech QuickCam Deluxe on FreeBSD-8.1. It shows the image for a while but after 20sec-5min it errors out with the message from libv4l, see below. Could this be a bug in libv4l or it maybe it should be passed some tolerance to errors option? Th

Re: Bugreport for libv4l: error out on webcam: error parsing JPEG header: Bogus jpeg format

2010-07-19 Thread Hans de Goede
Hi, On 07/19/2010 06:53 PM, Yuri wrote: On 07/19/2010 05:22, Hans de Goede wrote: This is not really a bug in libv4l, but more of a problem with error tolerance in the application you are using. However many apps don't handle any kind of errors all that well. So the latest libv4l will

Re: [PATCH libv4l tree, RFC] libv4l: skip false Pixart markers with buffer copy

2010-02-05 Thread Hans de Goede
Hi, On 02/04/2010 09:22 AM, Németh Márton wrote: Hi, This is a proof-of-concept patch to try to decode the JPEG with PixArt markers. Please check whether it is working at your side. My experience is that the number of frames with glitch are reduced. Hi, Good job! I never noticed the ff ff

Re: pac207: problem with Trust USB webcam

2010-02-16 Thread Hans de Goede
Hi, You need to use libv4l and have your apps patched to use libv4l or use the LD_PRELOAD wrapper. Here is the latest libv4l: http://people.fedoraproject.org/~jwrdegoede/libv4l-0.6.5-test.tar.gz And here are install instructions: http://hansdegoede.livejournal.com/7622.html Regards, Hans On

Re: pac207: problem with Trust USB webcam

2010-02-17 Thread Hans de Goede
Hi, On 02/17/2010 01:04 AM, Adam Baker wrote: On Tuesday 16 Feb 2010, Hans de Goede wrote: Hi, You need to use libv4l and have your apps patched to use libv4l or use the LD_PRELOAD wrapper. Here is the latest libv4l: http://people.fedoraproject.org/~jwrdegoede/libv4l-0.6.5-test.tar.gz And

Re: ibv4l2: error requesting 4 buffers: Device or resource busy

2010-02-20 Thread Hans de Goede
On 02/20/2010 03:50 PM, Guilherme wrote: Guilherme wrote: Hi all! As I tried to migrate an applications that I had it working in another computer, I struggled to have it working here. It is a video capture application. The following error occurred: libv4l2: error requesting 4 buffers: Device or

Re: [PATCH] v4lconvert_rotate90() leaves bytesperline wrong

2010-02-21 Thread Hans de Goede
Hi, Thanks for the patch, but this has been long fixed (in pretty much the same way, the v4lconvert_fixup_fmt() call was put inside the v4lconvert_rotate90 function). Regards, Hans On 02/21/2010 12:51 AM, Richard Hirst wrote: I have a cheap webcam (ID 093a:262a Pixart Imaging, Inc.), and Ub

PULL request [for 2.6.34]: http://linuxtv.org/hg/~hgoede/gspca

2010-02-22 Thread Hans de Goede
Hi Mauro, Please pull from: http://linuxtv.org/hg/~hgoede/gspca For 24 changesets, summary: - Add support for the button (as input device) on camera's using: pac207, pac7311, sonixb. sonixj, zc3xx, ov511, ov518, ov519 and stv06xx bridges - Much improved exposure and gain controls for PAS106B

Re: [ANNOUNCE] git tree repositories & libv4l

2010-02-23 Thread Hans de Goede
Hi, On 02/22/2010 11:54 PM, Brandon Philips wrote: On 18:24 Sat 23 Jan 2010, Hans de Goede wrote: lib/ libv4l1/ libv4l2/ libv4lconvert/ utils/ v4l2-dbg v4l2-ctl cx18-ctl ivtv-ctl contrib/ test/ everything else git

Re: [ANNOUNCE] git tree repositories & libv4l

2010-02-23 Thread Hans de Goede
Hi, On 02/23/2010 10:01 AM, Hans Verkuil wrote: Hi, On 02/22/2010 11:54 PM, Brandon Philips wrote: On 18:24 Sat 23 Jan 2010, Hans de Goede wrote: lib/ libv4l1/ libv4l2/ libv4lconvert/ utils/ v4l2-dbg v4l2-ctl cx18-ctl ivtv-ctl contrib

Re: [ANNOUNCE] git tree repositories & libv4l

2010-02-23 Thread Hans de Goede
Hi, On 02/23/2010 04:37 PM, Mauro Carvalho Chehab wrote: Hans de Goede wrote: Ok, so this will give me a local tree, how do I get this onto linuxtv.org ? I added it. In thesis, it is open for commit to you, me, hverkuil and dougsland. I see good, thanks! Can someone (Douglas ?) with

Re: [ANNOUNCE] git tree repositories & libv4l

2010-02-24 Thread Hans de Goede
Hi, On 02/24/2010 07:05 AM, Brandon Philips wrote: On 16:51 Tue 23 Feb 2010, Hans de Goede wrote: On 02/23/2010 04:37 PM, Mauro Carvalho Chehab wrote: Hans de Goede wrote: Ok, so this will give me a local tree, how do I get this onto linuxtv.org ? I added it. In thesis, it is open for

Re: [ANNOUNCE] git tree repositories & libv4l

2010-02-24 Thread Hans de Goede
Hi, On 02/24/2010 01:58 AM, Mauro Carvalho Chehab wrote: Hans de Goede wrote: Hi, On 02/23/2010 04:37 PM, Mauro Carvalho Chehab wrote: Hans de Goede wrote: Ok, so this will give me a local tree, how do I get this onto linuxtv.org ? I added it. In thesis, it is open for commit to you, me

Re: [ANNOUNCE] git tree repositories & libv4l

2010-02-25 Thread Hans de Goede
Hi, On 02/24/2010 03:32 PM, Brandon Philips wrote: On 13:55 Wed 24 Feb 2010, Hans de Goede wrote: Where necessary libv4l currently has code snippets like: #ifndef V4L2_PIX_FMT_SPCA501 #define V4L2_PIX_FMT_SPCA501 v4l2_fourcc('S','5','0','1') /* YUYV

v4l-utils repo progress report

2010-02-25 Thread Hans de Goede
Hi All, I've been working on and off on the new v4l-utils git repo. I've just pushed my latest work, some restructuring of the files under the utils dir, and I've replaced the old Makefiles which were meant for compilation inside the v4l-dvb hg tree with new ones which work for standalone compil

Announcing v4l-utils-0.7.90 (which includes libv4l-0.7.90)

2010-02-26 Thread Hans de Goede
Hi, I'm happy to announce the first (test / beta) release of v4l-utils, v4l-utils is the combination of various v4l and dvb utilities which used to be part of the v4l-dvb mercurial kernel tree and libv4l. I encourage people to give this version a spin. I esp. would like feedback on which v4l / d

Re: [PATCH 1/2] gspca pac7302: allow controlling LED separately

2010-02-26 Thread Hans de Goede
Hi, On 02/27/2010 01:20 AM, Németh Márton wrote: From: Márton Németh On Labtec Webcam 2200 there is a feedback LED which can be controlled independent from the streaming. This is true for a lot of cameras, so if we are going to add a way to support control of the LED separate of the streaming

Re: [PATCH 1/2] gspca pac7302: allow controlling LED separately

2010-02-27 Thread Hans de Goede
Hi, On 02/27/2010 04:35 PM, Németh Márton wrote: Hi, Jean-Francois Moine wrote: On Sat, 27 Feb 2010 08:53:16 +0100 Hans de Goede wrote: This is true for a lot of cameras, so if we are going to add a way to support control of the LED separate of the streaming state, we should do that at the

Re: Announcing v4l-utils-0.7.90 (which includes libv4l-0.7.90)

2010-03-01 Thread Hans de Goede
On 03/01/2010 08:45 AM, Hans Verkuil wrote: On Friday 26 February 2010 20:43:19 Hans de Goede wrote: Hi, I'm happy to announce the first (test / beta) release of v4l-utils, v4l-utils is the combination of various v4l and dvb utilities which used to be part of the v4l-dvb mercurial kernel

Re: Announcing v4l-utils-0.7.90 (which includes libv4l-0.7.90)

2010-03-01 Thread Hans de Goede
Hi, On 03/01/2010 09:33 AM, Hans de Goede wrote: On 03/01/2010 08:45 AM, Hans Verkuil wrote: On Friday 26 February 2010 20:43:19 Hans de Goede wrote: Hi, I'm happy to announce the first (test / beta) release of v4l-utils, v4l-utils is the combination of various v4l and dvb utilities

Re: Gspca USB driver zc3xx and STV06xx probe the same device ..

2010-03-04 Thread Hans de Goede
Hi, On 03/03/2010 02:17 PM, Erik Andrén wrote: 2010/3/3 Gabriel C: Hello, I own a QuickCam Messanger webcam.. I didn't used it in ages but today I plugged it in.. ( Device 002: ID 046d:08da Logitech, Inc. QuickCam Messanger ) Now zc3xx and stv06xx are starting both to probe the device .. In 2

Re: Gspca USB driver zc3xx and STV06xx probe the same device ..

2010-03-04 Thread Hans de Goede
Hi, On 03/04/2010 12:36 PM, Erik Andrén wrote: 2010/3/4 Hans de Goede: Hi, On 03/03/2010 02:17 PM, Erik Andrén wrote: 2010/3/3 Gabriel C: Hello, I own a QuickCam Messanger webcam.. I didn't used it in ages but today I plugged it in.. ( Device 002: ID 046d:08da Logitech, Inc. Qui

Re: Status of the patches under review (45 patches)

2010-03-12 Thread Hans de Goede
Hi, == Gspca patches - Waiting Hans de Goede submission/review == Jan,29 2010: [gspca_jf,tree] gspca zc3xx: signal when unknown packet received http://patchwork.kernel.org/patch/75837 I nacked this one, as the zc3xx sends many non button press interrupt packets per

Announcing v4l-utils-0.7.91

2010-03-12 Thread Hans de Goede
Hi, I'm happy to announce the second release of v4l-utils, nothing special this time around just a few small bug fixes and cleanups left and right. New this release: v4l-utils-0.7.91 * Utils changes: * Improve v4l-keytable to better support IR (mchehab) * Rename v4l-keytable

Re: v4l-utils: i2c-id.h and alevt

2010-03-12 Thread Hans de Goede
Hi, On 03/12/2010 08:27 AM, Hans Verkuil wrote: On Thursday 11 March 2010 15:31:32 Devin Heitmueller wrote: On Thu, Mar 11, 2010 at 9:14 AM, Douglas Schilling Landgraf wrote: On 03/10/2010 02:04 AM, hermann pitton wrote: Hi Hans, both, Am Dienstag, den 09.03.2010, 08:48 +0100 schrieb Hans

Re: v4l-utils: i2c-id.h and alevt

2010-03-12 Thread Hans de Goede
Hi, On 03/11/2010 03:31 PM, Devin Heitmueller wrote: On Thu, Mar 11, 2010 at 9:14 AM, Douglas Schilling Landgraf wrote: On 03/10/2010 02:04 AM, hermann pitton wrote: Hi Hans, both, Am Dienstag, den 09.03.2010, 08:48 +0100 schrieb Hans Verkuil: It's nice to see this new tree, that should be

Re: pushes at v4l-utils tree

2010-03-12 Thread Hans de Goede
Hi, On 03/12/2010 01:21 AM, Mauro Carvalho Chehab wrote: Hi Hans, As we've agreed that the idea is to allow multiple people to commit at v4l-utils, today, I've added 3 commits at v4l-utils tree (2 keycode-related and 1 is .gitignore stuff). One of the reasons were to test the viability for su

Re: v4l-utils: i2c-id.h and alevt

2010-03-12 Thread Hans de Goede
Hi, On 03/11/2010 03:14 PM, Douglas Schilling Landgraf wrote: On 03/10/2010 02:04 AM, hermann pitton wrote: Hi Hans, both, Am Dienstag, den 09.03.2010, 08:48 +0100 schrieb Hans Verkuil: It's nice to see this new tree, that should be make it easier to develop utilities! After a quick check I

Re: Remaining drivers that aren't V4L2?

2010-03-12 Thread Hans de Goede
Hi, On 03/12/2010 10:42 PM, Hans Verkuil wrote: On Friday 12 March 2010 21:11:49 Devin Heitmueller wrote: Hello, I know some months ago, there was some discussion about a few drivers which were stragglers and had not been converted from V4L to V4L2. Do we have a current list of driver which s

Re: pushes at v4l-utils tree

2010-03-12 Thread Hans de Goede
Hi, On 03/12/2010 08:29 PM, Mauro Carvalho Chehab wrote: Hans de Goede wrote: Hi, On 03/12/2010 01:21 AM, Mauro Carvalho Chehab wrote: Hi Hans, As we've agreed that the idea is to allow multiple people to commit at v4l-utils, today, I've added 3 commits at v4l-utils tree (2 keyco

Re: pushes at v4l-utils tree

2010-03-12 Thread Hans de Goede
Hi, On 03/13/2010 02:24 AM, Mauro Carvalho Chehab wrote: Please, don't upgrade the version yet just due to keytable, as I'm still working on more keytable patches, to handle the new uevent attributes (to match the IR core patches I posted earlier today). Ok, Note the main reason for the 0.

Re: v4l-utils, dvb-utils, xawtv and alevt

2010-03-12 Thread Hans de Goede
Hi, On 03/12/2010 08:10 PM, Chicken Shack wrote: 1. Alevt 1.7.0 is not just another tool, but it is instead a self-contained videotext application consisting of three parts: a. alevt, b. alevt-date c. alevt-cap While the packed size of alevt is 78770 the complete size of the dvb-apps as a whole

Re: v4l-utils, dvb-utils, xawtv and alevt

2010-03-13 Thread Hans de Goede
Hi, On 03/13/2010 11:15 AM, Chicken Shack wrote: Am Samstag, den 13.03.2010, 07:51 +0100 schrieb Hans de Goede: Hi, On 03/12/2010 08:10 PM, Chicken Shack wrote: 1. Alevt 1.7.0 is not just another tool, but it is instead a self-contained videotext application consisting of three parts: a

Re: Remaining drivers that aren't V4L2?

2010-03-13 Thread Hans de Goede
Hi, On 03/13/2010 03:23 PM, Devin Heitmueller wrote: On Sat, Mar 13, 2010 at 1:33 AM, Hans de Goede wrote: usbvideo This actually is a framework for usb video devices a bit like gspca one could say. It supports the following devices: "USB 3com HomeConnect (aka vicam)" "USB

Pull request: http://linuxtv.org/hg/~hgoede/gspca

2010-03-17 Thread Hans de Goede
Hi Mauro, Please pull from: http://linuxtv.org/hg/~hgoede/gspca For the following changes: gspca_spca561: Fix LED on rev12a cameras gspca_spca561: Add support for camera button sn9c102: Make hv7131d sensor code also recognize the HV7131E gspca: make usb id 0461:0815 get handled by the right dri

Re: Pull request: http://linuxtv.org/hg/~hgoede/gspca

2010-03-18 Thread Hans de Goede
Hi, On 03/18/2010 01:25 PM, Mauro Carvalho Chehab wrote: Hans de Goede wrote: Hi Mauro, Please pull from: http://linuxtv.org/hg/~hgoede/gspca For the following changes: gspca_spca561: Fix LED on rev12a cameras gspca_spca561: Add support for camera button sn9c102: Make hv7131d sensor code

Re: RFC: Drop V4L1 support in V4L2 drivers

2010-03-19 Thread Hans de Goede
Hi, On 03/19/2010 09:46 AM, Hans Verkuil wrote: On Friday 19 March 2010 08:59:08 Hans Verkuil wrote: Hi all, V4L1 support has been marked as scheduled for removal for a long time. The deadline for that in the feature-removal-schedule.txt file was July 2009. I think it is time that we remove

Re: RFC: Drop V4L1 support in V4L2 drivers

2010-03-19 Thread Hans de Goede
Hi, On 03/19/2010 04:49 PM, David Ellingsworth wrote: On Fri, Mar 19, 2010 at 9:47 AM, Mauro Carvalho Chehab wrote: The V4L1 drivers that lasts are the ones without maintainers and probably without a large users base. So, basically legacy hardware. So, their removals make sense. In many

Re: RFC: Drop V4L1 support in V4L2 drivers

2010-03-19 Thread Hans de Goede
Hi, On 03/19/2010 02:01 PM, Mauro Carvalho Chehab wrote: Hans Verkuil wrote: Hi all, V4L1 support has been marked as scheduled for removal for a long time. The deadline for that in the feature-removal-schedule.txt file was July 2009. As reference, this is what's written there: What: Video

Re: RFC: Phase 1: Proposal to convert V4L1 drivers

2010-03-20 Thread Hans de Goede
analyse the remaining V4L1 drivers: - usbvideo (really four drivers: vicam, ibmcam, konicawc, quickcam_messenger) Hans de Goede added support for the quickcam_messenger to gspca, so that driver is scheduled for removal. Devin has hardware to test the vicam driver. David Ellingsworth has hardware to

Re: RFC: Phase 1: Proposal to convert V4L1 drivers

2010-03-20 Thread Hans de Goede
Hi, On 03/20/2010 10:53 PM, Hans Verkuil wrote: On Saturday 20 March 2010 09:58:49 Hans Verkuil wrote: Kconfig mistakes: I found four errors in drivers/media/video/Kconfig: the saa7191, meye, mxb and cpia2 drivers are all marked as V4L1 only, while all support V4L2! The cpia2 driver supports

Re: RFC: Phase 2/3: Move the compat code into v4l1-compat. Convert apps.

2010-03-20 Thread Hans de Goede
Hi, On 03/20/2010 10:21 AM, Hans Verkuil wrote: Hi all! The second phase that needs to be done to remove the v4l1 support from the kernel is that libv4l1 should replace the v4l1-compat code from the kernel. I do not know how complete the libv4l1 code is right now. I would like to know in parti

Re: RFC: Phase 2/3: Move the compat code into v4l1-compat. Convert apps.

2010-03-22 Thread Hans de Goede
Hi, On 03/22/2010 09:11 AM, Hans Verkuil wrote: On Sunday 21 March 2010 00:14:25 Hans de Goede wrote: Hi, On 03/20/2010 10:21 AM, Hans Verkuil wrote: Hi all! The second phase that needs to be done to remove the v4l1 support from the kernel is that libv4l1 should replace the v4l1-compat code

Re: RFC: Phase 1: Proposal to convert V4L1 drivers

2010-03-22 Thread Hans de Goede
Hi, On 03/22/2010 01:17 AM, Hans Verkuil wrote: On Sunday 21 March 2010 23:45:04 Hans Verkuil wrote: On Saturday 20 March 2010 09:58:49 Hans Verkuil wrote: These drivers have no hardware to test with: bw-qcam, c-qcam, arv, w9966. However, all four should be easy to convert to v4l2, even withou

Re: RFC: Phase 1: Proposal to convert V4L1 drivers

2010-03-23 Thread Hans de Goede
Hi, On 03/22/2010 11:55 AM, Hans Verkuil wrote: On Monday 22 March 2010 10:29:09 Hans de Goede wrote: Hi, On 03/22/2010 01:17 AM, Hans Verkuil wrote: On Sunday 21 March 2010 23:45:04 Hans Verkuil wrote: On Saturday 20 March 2010 09:58:49 Hans Verkuil wrote: These drivers have no hardware

Re: update gspca driver in linux source tree

2010-04-05 Thread Hans de Goede
Hi, On 04/04/2010 08:47 PM, rath wrote: Hi, I have a 2.6.29 kernel for my embedded ARM system. I need an newer gspca driver, so I downloaded the gspca driver from http://linuxtv.org/hg/~hgoede/gspca/ an copied the content of the linux folder to my 2.6.29 source tree and tried to cross compile i

Re: V4L2 and Media controller mini-summit in Helsinki 14.--16. June

2010-04-09 Thread Hans de Goede
Hi, On 04/09/2010 08:58 AM, Hans Verkuil wrote: On Monday 05 April 2010 21:36:35 Sakari Ailus wrote: Hello everyone, I'm glad to announce Nokia will be hosting a V4L2 and Media controller mini-summit in Helsinki, Finland from 14th to 16th June --- that's from Monday to Wednesday. The event rep

Re: [Workshop-2011] Media Subsystem Workshop 2011

2011-08-05 Thread Hans de Goede
Hi all, On 08/04/2011 02:34 PM, Mauro Carvalho Chehab wrote: Em 03-08-2011 20:20, Theodore Kilgore escreveu: Yes, that kind of thing is an obvious problem. Actually, though, it may be that this had just better not happen. For some of the hardware that I know of, it could be a real problem n

Re: USB mini-summit at LinuxCon Vancouver

2011-08-05 Thread Hans de Goede
Hi, On 08/05/2011 12:56 AM, Greg KH wrote: On Thu, Aug 04, 2011 at 07:21:47PM -0300, Mauro Carvalho Chehab wrote: I know that this problem were somewhat solved for 3G modems, with the usage of the userspace problem usb_modeswitch, and with some quirks for the USB storage driver, but I'm not sur

Re: USB mini-summit at LinuxCon Vancouveroliver

2011-08-05 Thread Hans de Goede
Hi, On 08/05/2011 09:59 AM, Oliver Neukum wrote: Am Freitag, 5. August 2011, 09:45:56 schrieb Hans de Goede: This is the issue on which I feel a bit stonewalled. Simple putting your fingers in your ears and singing la la la do it in userspace is not going to cut it here. There is no way to do

Re: [Workshop-2011] Media Subsystem Workshop 2011

2011-08-08 Thread Hans de Goede
Hi, On 08/08/2011 12:53 AM, Adam Baker wrote: On Friday 05 August 2011, Hans de Goede wrote: This sounds to be a good theme for the Workshop, or even to KS/2011. Agreed, although we don't need to talk about this for very long, the solution is basically: 1) Define a still image retrieva

Re: [Workshop-2011] Media Subsystem Workshop 2011

2011-08-09 Thread Hans de Goede
Hi, On 08/08/2011 07:39 PM, Theodore Kilgore wrote: On Mon, 8 Aug 2011, Mauro Carvalho Chehab wrote: Mauro, In fact none of the currently known and supported cameras are using PTP. All of them are proprietary. They have a rather intimidating set of differences in functionality, too. Nam

Re: [Workshop-2011] Media Subsystem Workshop 2011

2011-08-09 Thread Hans de Goede
Hi, OK, another example. The cameras supported in camlibs/jl2005c do not have webcam ability, but someone could at any time design and market a dualmode which has in stillcam mode the same severe limitation. What limitation? Well, the entire memory of the camera must be dumped, or else the cam

Re: USB mini-summit at LinuxCon Vancouver

2011-08-09 Thread Hans de Goede
Hi, On 08/08/2011 07:58 PM, Sarah Sharp wrote: On Fri, Aug 05, 2011 at 09:45:56AM +0200, Hans de Goede wrote: Hi, On 08/05/2011 12:56 AM, Greg KH wrote: On Thu, Aug 04, 2011 at 07:21:47PM -0300, Mauro Carvalho Chehab wrote: I think it is important to separate oranges from apples here, there

Re: USB mini-summit at LinuxCon Vancouver

2011-08-09 Thread Hans de Goede
Hi, On 08/09/2011 04:19 PM, Alan Stern wrote: On Tue, 9 Aug 2011, Hans de Goede wrote: I would really like to see the dual mode camera and TV tuner discussion separated. They are 2 different issues AFAIK. 1) Dual mode cameras: In the case of the dual mode camera we have 1 single device

Re: [Workshop-2011] Media Subsystem Workshop 2011

2011-08-09 Thread Hans de Goede
Hi, On 08/09/2011 07:10 PM, Theodore Kilgore wrote: On Tue, 9 Aug 2011, Hans de Goede wrote: No, but both Adam and I realized, approximately at the same time yesterday afternoon, something which is rather important here. Gphoto is not developed exclusively for Linux. Furthermore, it has

Re: USB mini-summit at LinuxCon Vancouver

2011-08-09 Thread Hans de Goede
Hi, On 08/09/2011 10:31 PM, Adam Baker wrote: On Tuesday 09 August 2011, Hans de Goede wrote: It has also just occured to me that it might be possible to solve the issues we are facing just in the kernel. At the moment when the kernel performs a USBDEVFS_DISCONNECT it keeps the kernel

Re: [Workshop-2011] Media Subsystem Workshop 2011

2011-08-10 Thread Hans de Goede
Hi, On 08/10/2011 02:34 AM, Theodore Kilgore wrote: but this is the way how the current discussion feels to me. If we agree on aiming for "doing it right" then with that comes to me doing a software design from scratch, so without taking into account what is already there. Here, a count

Re: USB mini-summit at LinuxCon Vancouver

2011-08-11 Thread Hans de Goede
Hi, On 08/11/2011 01:04 AM, Adam Baker wrote: On Tuesday 09 August 2011, Hans de Goede wrote: Hi, On 08/09/2011 10:31 PM, Adam Baker wrote: On Tuesday 09 August 2011, Hans de Goede wrote: It has also just occured to me that it might be possible to solve the issues we are facing just in

Re: USB mini-summit at LinuxCon Vancouver

2011-08-11 Thread Hans de Goede
Hi, On 08/10/2011 06:09 PM, Alan Stern wrote: On Wed, 10 Aug 2011, Theodore Kilgore wrote: Okay, I didn't realize that the different cameras used different webcam drivers as well as different stillcam drivers. Oh, yes. They are Proprietary devices. And that means what it says. :-) And all di

Re: USB mini-summit at LinuxCon Vancouver

2011-08-12 Thread Hans de Goede
Hi, On 08/11/2011 10:32 PM, Mauro Carvalho Chehab wrote: instead of using the V4L2 device node to access the stored images, it probably makes more sense to use a separate device for that, that will handle a separate set of ioctl's, and just use read() to retrieve the image data, after select

Re: USB mini-summit at LinuxCon Vancouver

2011-08-12 Thread Hans de Goede
Hi, On 08/11/2011 04:56 PM, Alan Stern wrote: On Thu, 11 Aug 2011, Hans de Goede wrote: The alternative seems to be to define a device-sharing protocol for USB drivers. Kernel drivers would implement a new callback (asking them to give up control of the device), and usbfs would implement new

Re: [RFC PATCH] Modify volatile auto cluster handling as per earlier discussions

2011-08-25 Thread Hans de Goede
Hi, First of all thanks for doing this! Overall it looks good, see below for several (small) remarks which I have. On 08/09/2011 06:40 PM, Hans Verkuil wrote: This patch modifies the way autoclusters work when the 'foo' controls are volatile if autofoo is on. E.g.: if autogain is true, then ga

Re: [RFCv2 PATCH 0/8] Add V4L2_CTRL_FLAG_VOLATILE and change volatile autocluster handling.

2011-08-27 Thread Hans de Goede
Looks good ACK series. Acked-by: Hans de Goede On 08/26/2011 02:00 PM, Hans Verkuil wrote: This is the second patch for this. The first is here: http://comments.gmane.org/gmane.linux.drivers.video-input-infrastructure/36650 This second version changes the pwc code as suggested by Hans de

Re: [PATCH] gspca_sn9c20x: device 0c45:62b3: fix status LED

2011-08-27 Thread Hans de Goede
Hi, On 08/22/2011 11:27 PM, Frank Schäfer wrote: Ping ... what happened to this patch ? ;-) I think it has fallen through the cracks. I've added it to my tree for 3.1 / 3.2 (more likely will be 3.2) Regards, Hans Am 01.07.2011 12:19, schrieb Frank Schaefer: gspca_sn9c20x: device 0c45:6

Re: [PATCH 01/10] alsa_stream: port changes made on xawtv3

2011-09-06 Thread Hans de Goede
Hi, On 09/06/2011 06:24 PM, Devin Heitmueller wrote: I've been thinking for a while that perhaps the project should be renamed (or I considered prepending "kl" onto the front resulting in it being called "kl-tvtime"). This isn't out of vanity but rather my concern that the fork will get conf

Re: [PATCH 01/10] alsa_stream: port changes made on xawtv3

2011-09-06 Thread Hans de Goede
Hi, On 09/06/2011 08:35 PM, Michael Krufky wrote: On Tue, Sep 6, 2011 at 2:19 PM, Hans de Goede wrote: Hi, On 09/06/2011 06:24 PM, Devin Heitmueller wrote: I've been thinking for a while that perhaps the project should be renamed (or I considered prepending "kl" onto the

Re: [PATCH 01/10] alsa_stream: port changes made on xawtv3

2011-09-06 Thread Hans de Goede
Hi, Lots of good stuff in this thread! It seems Mauro has answered most things, so I'm just going to respond to this bit. On 09/07/2011 05:37 AM, Devin Heitmueller wrote: We've added a parameter for that on xawtv3 (--alsa-latency). We've parametrized it at the alsa stream function call. So, a

Re: libv4l2 misbehavior after calling S_STD or S_DV_PRESET

2011-10-07 Thread Hans de Goede
y fix the issue you are seeing. Regards, Hans >From a5abaaa08602b540c88ae4776f557a3b0c34b24d Mon Sep 17 00:00:00 2001 From: Hans de Goede Date: Fri, 7 Oct 2011 09:18:39 +0200 Subject: [PATCH 1/2] libv4l2: Move s_fmt handling code into a helper function Signed-off-by: Hans de Goede

Re: [RFC] Merge v4l-utils. dvb-apps and mediactl to media-utils.git

2011-10-07 Thread Hans de Goede
Hi, On 10/06/2011 02:23 PM, Hans Verkuil wrote: Currently we have three repositories containing libraries and utilities that are relevant to the media drivers: dvb-apps (http://linuxtv.org/hg/dvb-apps/) v4l-utils (http://git.linuxtv.org/v4l-utils.git) media-ctl (git://git.ideasonboard.org/media

Re: libv4l2 misbehavior after calling S_STD or S_DV_PRESET

2011-10-07 Thread Hans de Goede
Hi, On 10/07/2011 11:06 AM, Hans Verkuil wrote: On Friday 07 October 2011 09:57:42 Hans de Goede wrote: Hi, Hmm, nasty... On 10/06/2011 01:13 PM, Hans Verkuil wrote: Hi Hans! I've been looking into a problem with libv4l2 that occurs when you change TV standard or video preset

Re: [RFC] Merge v4l-utils. dvb-apps and mediactl to media-utils.git

2011-10-07 Thread Hans de Goede
Hi, On 10/07/2011 03:02 PM, Mauro Carvalho Chehab wrote: Em 07-10-2011 03:05, Hans Verkuil escreveu: On Friday, October 07, 2011 04:07:38 Mauro Carvalho Chehab wrote: Em 06-10-2011 14:24, Mauro Carvalho Chehab escreveu: Em 06-10-2011 10:27, Mauro Carvalho Chehab escreveu: Em 06-10-2011 09:23

Re: [RFC] Merge v4l-utils. dvb-apps and mediactl to media-utils.git

2011-10-08 Thread Hans de Goede
Hi, On 10/07/2011 03:46 PM, Mauro Carvalho Chehab wrote: Em 07-10-2011 10:05, Hans de Goede escreveu: Hi, On 10/07/2011 03:02 PM, Mauro Carvalho Chehab wrote: Em 07-10-2011 03:05, Hans Verkuil escreveu: On Friday, October 07, 2011 04:07:38 Mauro Carvalho Chehab wrote: Em 06-10-2011 14:24

Re: Syntek webcams and out-of-tree driver

2013-08-05 Thread Hans de Goede
Hi, On 08/05/2013 11:19 PM, Ondrej Zary wrote: Hello, the in-kernel stkwebcam driver (by Jaime Velasco Juan and Nicolas VIVIEN) supports only two webcam types (USB IDs 0x174f:0xa311 and 0x05e1:0x0501). There are many other Syntek webcam types that are not supported by this driver (such as 0x174f

Re: [RFC PATCH] introduce gspca-stk1135: Syntek STK1135 driver

2013-08-11 Thread Hans de Goede
Hi, On 08/11/2013 12:10 AM, Ondrej Zary wrote: Hello, this is a new gspca driver for Syntek STK1135 webcams. The code is completely new, but register values are based on Syntekdriver (stk11xx) by Nicolas VIVIEN (http://syntekdriver.sourceforge.net). Only one webcam type is supported now - vendo

Re: [PATCH v2 1/2] libv4lconvert: Support for Y16 pixel format

2013-08-13 Thread Hans de Goede
Hi, On 08/12/2013 09:39 PM, Gregor Jasny wrote: On 8/9/13 6:04 PM, Ricardo Ribalda Delgado wrote: ping? Thank you for your the updated series. Unfortunately I'm still partially busy with moving. I hoped the v4lconvert maintainer Hans (de Goede) will ack these patches. Series looks

Re: [PATCH] [media] gspca-ov534: don't call sd_start() from sd_init()

2013-08-20 Thread Hans de Goede
Hi, Thanks for the patch I've added this to my "gspca" tree, and this will be included in my next pull-request to Mauro for 3.12 Regards, Hans On 08/15/2013 12:29 PM, Antonio Ospite wrote: sd_start() operates on device controls but after the conversion to the v4l2 control framework in commi

Re: [PATCH] [media] gspca: fix dev_open() error path

2013-08-20 Thread Hans de Goede
Hi, Thanks for the patch I've added this to my "gspca" tree, and this will be included in my next pull-request to Mauro for 3.12 Regards, Hans On 08/05/2013 10:16 PM, Alexey Khoroshilov wrote: If v4l2_fh_open() fails in dev_open(), gspca_dev->module left locked. The patch adds module_put(gspc

Re: [PATCH v2] introduce gspca-stk1135: Syntek STK1135 driver

2013-08-20 Thread Hans de Goede
Hi, Thanks for the new version I've added this to my "gspca" tree, and this will be included in my next pull-request to Mauro for 3.12 Regards, Hans On 08/11/2013 09:04 PM, Ondrej Zary wrote: Hello, this is a new gspca driver for Syntek STK1135 webcams. The code is completely new, but regis

Re: [PATCH v2] introduce gspca-stk1135: Syntek STK1135 driver

2013-08-20 Thread Hans de Goede
Hi, On 08/20/2013 02:20 PM, Hans de Goede wrote: Hi, Thanks for the new version I've added this to my "gspca" tree, and this will be included in my next pull-request to Mauro for 3.12 Ugh, correction. I've reverted this patch since stk1135.h is missing from the patch, c

<    1   2   3   4   5   6   7   8   9   10   >