Re: [git:v4l-dvb/master] V4L/DVB: em28xx : Terratec Cinergy Hybrid T USB XS FR is working

2010-02-21 Thread Catimimi
Le 19/02/2010 04:32, Patch from Catimimi a écrit : From: Catimimicatim...@orange.fr I succeeded in running Cinergy Hybrid T USB XS FR in both modes. Signed-off-by: Mauro Carvalho Chehabmche...@redhat.com drivers/media/video/em28xx/em28xx-cards.c |3 ++-

Re: pac207: problem with Trust USB webcam

2010-02-21 Thread Frans Pop
On Wednesday 17 February 2010, Frans Pop wrote: Thanks a lot to you both for the pointers! I've gotten vlc to work using v4l1compat.so. The image is recognizable, but the color etc is way off. Haven't found a way to correct that yet. But the main thing for me ATM is that it's working now.

[PULL] http://linuxtv.org/hg/~mcisely/pvrusb2-patches

2010-02-21 Thread Mike Isely
Please from http://linuxtv.org/hg/~mcisely/pvrusb2-patches for the following pvrusb2 driver fixes / improvements: - pvrusb2: Enforce a 300msec stabilization interval during stream strart - pvrusb2: Reduce encoder quiet period - pvrusb2: Adjust 300msec digitizer wait to be more selective

[GIT PATCHES FOR 2.6.34] - vpfe capture support on DM365

2010-02-21 Thread Muralidharan Karicheri
Mauro, I have removed the IOCTL handling and also dropped a patch that is related to ioctl handling relative to last pull request. This is based on our discussion since then. The following changes since commit d142708594fd5a0828371b31721a8289800d015a: Mauro Carvalho Chehab (1):

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

[cron job] v4l-dvb daily build 2.6.22 and up: ERRORS, 2.6.16-2.6.21: ERRORS

2010-02-21 Thread Hans Verkuil
This message is generated daily by a cron job that builds v4l-dvb for the kernels and architectures in the list below. Results of the daily build of v4l-dvb: date:Sun Feb 21 19:01:33 CET 2010 path:http://www.linuxtv.org/hg/v4l-dvb changeset: 14218:7de7f5eb5ca1 gcc version:

Re: [git:v4l-dvb/master] V4L/DVB: em28xx : Terratec Cinergy Hybrid T USB XS FR is working

2010-02-21 Thread Mauro Carvalho Chehab
Catimimi wrote: i, This patch works well on a 32bits kernel but not on a 64 bits one. (openSUSE 11.2) I'm working on that problem. 64bits kernel with 64 bit usespace or are you using a 32bits application with a 64 bits kernel? Cheers, Mauro -- To unsubscribe from this list: send the line

[PATCH 1/3] tm6000: add send and recv function

2010-02-21 Thread stefan . ringel
From: Stefan Ringel stefan.rin...@arcor.de Signed-off-by: Stefan Ringel stefan.rin...@arcor.de --- drivers/staging/tm6000/tm6000-i2c.c | 48 +- 1 files changed, 35 insertions(+), 13 deletions(-) diff --git a/drivers/staging/tm6000/tm6000-i2c.c

[PATCH 3/3] tm6000: bugfix i2c addr

2010-02-21 Thread stefan . ringel
From: Stefan Ringel stefan.rin...@arcor.de Signed-off-by: Stefan Ringel stefan.rin...@arcor.de --- drivers/staging/tm6000/tm6000-i2c.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/tm6000/tm6000-i2c.c b/drivers/staging/tm6000/tm6000-i2c.c index

[PATCH 2/3] tm6000: bugfix reading problems with demodulator zl10353

2010-02-21 Thread stefan . ringel
From: Stefan Ringel stefan.rin...@arcor.de Signed-off-by: Stefan Ringel stefan.rin...@arcor.de --- drivers/staging/tm6000/tm6000-i2c.c | 11 +++ 1 files changed, 11 insertions(+), 0 deletions(-) diff --git a/drivers/staging/tm6000/tm6000-i2c.c b/drivers/staging/tm6000/tm6000-i2c.c

Re: [PATCH v5 1/6] V4L: File handles

2010-02-21 Thread Sakari Ailus
Aguirre, Sergio wrote: Heippa! Hi, Sergio! Thanks for comments! ... @@ -0,0 +1,64 @@ +/* + * drivers/media/video/v4l2-fh.c [1] AFAIK, putting file paths is frowned upon. Makes maintenance harder if in the future, this files get moved somewhere else. Ack. + * + * V4L2 file

Re: [PATCH v5 4/6] V4L: Events: Add backend

2010-02-21 Thread Sakari Ailus
Aguirre, Sergio wrote: Heippa! Hi, Sergio! Your lines seem to be over 80 characters long. :I ... +int v4l2_event_dequeue(struct v4l2_fh *fh, struct v4l2_event *event) +{ +struct v4l2_events *events = fh-events; +struct v4l2_kevent *kev; +unsigned long flags; + +

Re: [PATCH v5 4/6] V4L: Events: Add backend

2010-02-21 Thread Sakari Ailus
Hans Verkuil wrote: Hi Sakari, Hi Hans, And many thanks for the comments again! Here are some more comments. ... +int v4l2_event_dequeue(struct v4l2_fh *fh, struct v4l2_event *event) +{ +struct v4l2_events *events = fh-events; +struct v4l2_kevent *kev; +unsigned long flags;

[RFC] DVB API v5 Documentation (was: Re: Documentation questions)

2010-02-21 Thread Hugo Mills
On Thu, Feb 18, 2010 at 07:19:27PM -0500, Andy Walls wrote: On Thu, 2010-02-18 at 21:12 +, Hugo Mills wrote: (Please cc: me, I'm not subscribed yet) After struggling to work out how stuff worked from the existing DVB API docs(+), I'm currently attempting to improve the API

Re: [PATCH v5 5/6] V4L: Events: Support event handling in do_ioctl

2010-02-21 Thread Sakari Ailus
Hans Verkuil wrote: More comments... On Friday 19 February 2010 20:21:59 Sakari Ailus wrote: Add support for event handling to do_ioctl. Signed-off-by: Sakari Ailus sakari.ai...@maxwell.research.nokia.com --- drivers/media/video/v4l2-ioctl.c | 58

Re: [PATCH v5 5/6] V4L: Events: Support event handling in do_ioctl

2010-02-21 Thread Laurent Pinchart
Hi Sakari, On Sunday 21 February 2010 23:31:43 Sakari Ailus wrote: Hans Verkuil wrote: More comments... On Friday 19 February 2010 20:21:59 Sakari Ailus wrote: Add support for event handling to do_ioctl. Signed-off-by: Sakari Ailus sakari.ai...@maxwell.research.nokia.com ---

Re: More videobuf and streaming I/O questions

2010-02-21 Thread Laurent Pinchart
Hi Hans, On Saturday 20 February 2010 15:00:21 Hans Verkuil wrote: I have a few more questions regarding the streaming I/O API: 1) The spec mentions that the memory field should be set for VIDIOC_DQBUF. But videobuf doesn't need it and it makes no sense to me either unless it is for

Possible memory corruption in bttv driver ?

2010-02-21 Thread Michael
Hello We use embedded devices running debian lenny (kernel 2.6.31.4 with bttv driver 0.9.18) to monitor an incoming video signal digitized via a video grabber. The /dev/video0 device is opened and closed several hundred times a day. We used to use an em28xx USB based grabber but now switched

Chroma gain configuration

2010-02-21 Thread Devin Heitmueller
I am doing some work on the saa711x driver, and ran into a case where I need to disable the chroma AGC and manually set the chroma gain. I see there is an existing boolean control called V4L2_CID_CHROMA_AGC, which would be the logical candidate for allowing the user to disable the chroma AGC.

Re: Possible memory corruption in bttv driver ?

2010-02-21 Thread auslands-kv
Hi Leandro There are no crash oops available, as this is a memory corruption that occurs. The effects differ strongly each time. In most cases the system just stops (as the cpu has run over some corrupted code). In some rare cases one can see strange program behaviour, e.g. the sound library

Re: [PATCH v5 5/6] V4L: Events: Support event handling in do_ioctl

2010-02-21 Thread Sakari Ailus
Laurent Pinchart wrote: Hi Sakari, Salut Laurent, There is a crucial piece of functionality missing here: if the filehandle is in blocking mode, then it should wait until an event arrives. That also means that if vfh-events == NULL, you should still call v4l2_event_dequeue, and that

Re: [PATCH v5 5/6] V4L: Events: Support event handling in do_ioctl

2010-02-21 Thread Hans Verkuil
On Sunday 21 February 2010 23:31:43 Sakari Ailus wrote: Hans Verkuil wrote: More comments... On Friday 19 February 2010 20:21:59 Sakari Ailus wrote: Add support for event handling to do_ioctl. Signed-off-by: Sakari Ailus sakari.ai...@maxwell.research.nokia.com ---