Re: Problems with Pinnacle 310i (saa7134) and recent kernels

2009-09-13 Thread Hans Verkuil
On Monday 14 September 2009 00:42:16 hermann pitton wrote: > Hi, > > Am Sonntag, den 13.09.2009, 12:02 + schrieb Avl Jawrowski: > > Hi, > > > > hermann pitton arcor.de> writes: > > > > > > > > I'm sorry that we have some mess on some of such devices, but currently > > > really nobody can h

Re: [PATCH] hdpvr: i2c fixups for fully functional IR support

2009-09-13 Thread Jarod Wilson
On 09/13/2009 06:13 PM, Janne Grunau wrote: On Sun, Sep 13, 2009 at 05:04:16PM -0400, Jarod Wilson wrote: On Sep 13, 2009, at 1:23 PM, Brandon Jenkins wrote: I don't mind testing. Currently I am running ArchLinux 64-bit, kernel26-2.6.30.6-1. Please tell me where to build the driver from. Hrm

[PATCH] tda18271 add FM filter selction + minor fixes

2009-09-13 Thread spam
This patch adds support for FM filter selection. The tda18271 has two rf inputs RF_IN (45-864 MHz) and FM_IN (65-108 MHz). The code automatically enables the antialiasing filter for radio reception and depending on the FM input selected configures EB23 register. Additional fixes: - Fixed the teme

[ANOUNCE] Staging trees at V4L/DVB trees

2009-09-13 Thread Mauro Carvalho Chehab
Probably some of you already noticed that we're creating some staging trees at V4L/DVB trees. There are currently 2 staging trees: 1) /linux/drivers/staging - With drivers that aren't ready yet for merge, needing help for being finished. There are currently two drivers there: go7007 dr

Re: Media controller: sysfs vs ioctl

2009-09-13 Thread Mauro Carvalho Chehab
Em Sun, 13 Sep 2009 17:54:11 +0200 wk escreveu: > Hans Verkuil schrieb: > > Hi all, > > > > I've started this as a new thread to prevent polluting the discussions of > > the > > media controller as a concept. > > > > First of all, I have no doubt that everything that you can do with an ioctl, >

Re: Pinnacle PCTV 310i active antenna

2009-09-13 Thread hermann pitton
Hi Martin, Am Sonntag, den 13.09.2009, 16:37 +0200 schrieb Martin Konopka: > Hi Hermann, > > thank you, the patch for the antenna power is working for me with the latest > mercurial tree. I'm now able to receive additional weak channels. On the > contrary a channel close by with a very strong s

Re: Problems with Pinnacle 310i (saa7134) and recent kernels

2009-09-13 Thread hermann pitton
Hi, Am Sonntag, den 13.09.2009, 12:02 + schrieb Avl Jawrowski: > Hi, > > hermann pitton arcor.de> writes: > > > > > I'm sorry that we have some mess on some of such devices, but currently > > really nobody can help much further. > > > > Mike and Hauppauge don't have any schematics for LNA

Re: (Saa7134) Re: ADS-Tech Instant TV PCI, no remote support, giving up.

2009-09-13 Thread hermann pitton
Hi, Am Sonntag, den 13.09.2009, 23:59 +0200 schrieb Morvan Le Meut: > just out of curiosity ( and because google showed me a new trick to try > ), i tried to load the module with gpio_tracking=1. > this gave me a new thing in dmesg : > gpio: mode=0x000 in=0x07f out=0x000 [pre-init] >

Re: [PATCH] hdpvr: i2c fixups for fully functional IR support

2009-09-13 Thread Janne Grunau
On Sun, Sep 13, 2009 at 05:04:16PM -0400, Jarod Wilson wrote: > On Sep 13, 2009, at 1:23 PM, Brandon Jenkins wrote: > > > I don't mind testing. Currently I am running ArchLinux 64-bit, > > kernel26-2.6.30.6-1. Please tell me where to build the driver from. > > Hrm... It *was* in Janne's hdpvr tre

Re: (Saa7134) Re: ADS-Tech Instant TV PCI, no remote support, giving up.

2009-09-13 Thread Morvan Le Meut
just out of curiosity ( and because google showed me a new trick to try ), i tried to load the module with gpio_tracking=1. this gave me a new thing in dmesg : gpio: mode=0x000 in=0x07f out=0x000 [pre-init] Am i correct by thinkig that the in=0x07f part is the mask ? If it is tha

Re: RFC: bus and data format negotiation

2009-09-13 Thread Hans Verkuil
On Sunday 13 September 2009 23:26:54 Guennadi Liakhovetski wrote: > On Sun, 13 Sep 2009, Hans Verkuil wrote: > > > (I promised that I would analyze this. Sorry that it took so long, but I > > had a lot of other things going on and this was one topic that I needed to > > really sit down for and thi

Re: RFC: bus and data format negotiation

2009-09-13 Thread Guennadi Liakhovetski
On Sun, 13 Sep 2009, Hans Verkuil wrote: > (I promised that I would analyze this. Sorry that it took so long, but I > had a lot of other things going on and this was one topic that I needed to > really sit down for and think about carefully.) > > RFC: bus and data format negotiation > > Version

Re: [PATCH] hdpvr: i2c fixups for fully functional IR support

2009-09-13 Thread Jarod Wilson
On Sep 13, 2009, at 1:23 PM, Brandon Jenkins wrote: On Tue, Sep 1, 2009 at 9:30 PM, Andy Walls wrote: On Tue, 2009-09-01 at 10:19 -0400, Jarod Wilson wrote: Patch is against http://hg.jannau.net/hdpvr/ 1) Adds support for building hdpvr i2c support when i2c is built as a module (based on

Re: [PATCH 2/8] drivers/media/video/uvc: introduce missing kfree

2009-09-13 Thread Julia Lawall
From: Julia Lawall Move the kzalloc and associated test after the stream/query test, to avoid the need to free the allocated if the stream/query test fails. The semantic match that finds the problem is as follows: (http://www.emn.fr/x-info/coccinelle/) // @r exists@ local idexpression x; state

Re: [PATCH 2/8] drivers/media/video/uvc: introduce missing kfree

2009-09-13 Thread Julia Lawall
> > - if ((stream->dev->quirks & UVC_QUIRK_PROBE_DEF) && query == UVC_GET_DEF) > > - return -EIO; > > + if ((stream->dev->quirks & UVC_QUIRK_PROBE_DEF) && > > + query == UVC_GET_DEF) { > > + ret = -EIO; > > + goto out; > > + } > > This check ca

Re: [PATCH 2/8] drivers/media/video/uvc: introduce missing kfree

2009-09-13 Thread Laurent Pinchart
On Friday 11 September 2009 18:21:18 Julia Lawall wrote: > From: Julia Lawall > > Error handling code following kmalloc should free the allocated data. > > The semantic match that finds the problem is as follows: > (http://www.emn.fr/x-info/coccinelle/) > > // > @r exists@ > local idexpression

Re: test

2009-09-13 Thread Bob Ingraham
Come listen to a story about a named Jed... --Original Message-- From: Jed Sender: linux-media-ow...@vger.kernel.org To: Linux Media Mailing List Sent: Sep 13, 2009 10:03 AM Subject: test this is a test -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body

[PULL] http://linuxtv.org/hg/~eandren/v4l-dvb/

2009-09-13 Thread Erik Andrén
Mauro, Just some minor vflip quirks in this patch. I'll be posting a reworked m5602-ov7660 patch set shortly. Please pull from http://linuxtv.org/hg/~eandren/v4l-dvb for the following 2 changesets: 01/02: gspca - m5602-s5k4aa: Add vflip quirk for the Amilo Pa 2548 http://linuxtv.org/hg/~eandren

Questions about Terratec Hybrid XS (em2882) [0ccd:005e]

2009-09-13 Thread Uros Vampl
Hello. I have the Terratec Cinergy Hybrid T XS USB (em2882) - usb-id 0ccd:005e. It works with Marcus Rechberger's em28xx-new driver, but since that code is unmaintained now, I tested this device with v4l-dvb today. The analog picture is there, but audio is very, very quiet, almost not there. I

Re: [PATCH 2/3] Add driver for OmniVision OV9640 sensor

2009-09-13 Thread Guennadi Liakhovetski
On Sun, 13 Sep 2009, Marek Vasut wrote: > Dne Pá 11. září 2009 23:51:44 Guennadi Liakhovetski napsal(a): > > > > Ok, a couple more simple questions / remarks, In principle, there's just > > one principle objection - if we agree, that the correct format is BGR565 > > and RGB565X, then we shoul

Re: image quality of Labtec Webcam 2200

2009-09-13 Thread Hans de Goede
Hi, On 09/13/2009 05:59 PM, Thomas Kaiser wrote: I thought Hans will come in, in this discussion... Hey hey, its weekend, give me some time to respond already :) See my reply higher up in the thread. Regards, Hans -- To unsubscribe from this list: send the line "unsubscribe linux-media

Re: image quality of Labtec Webcam 2200

2009-09-13 Thread Hans de Goede
Hi, On 09/13/2009 09:20 AM, Jean-Francois Moine wrote: On Fri, 11 Sep 2009 09:09:20 +0200 Németh Márton wrote: You can find my results at http://v4l-test.sourceforge.net/results/test-20090911/index.html There are three types of problems: a) Sometimes the picture contains a 8x8 pixel error, li

Re: [Patch 2/2] stv06xx webcams with HDCS 1xxx sensors

2009-09-13 Thread Erik Andrén
2009/9/13 Hans de Goede : > Hi, > > On 09/10/2009 09:51 AM, Erik Andrén wrote: > > > >> >> Looks good! >> Thanks, >> >> Acked-by: Erik Andrén > > Erik, > > Are you going to merge these 2 patches in your tree, and let them find > their way into the master this way, or shall I merge them in my tree

Re: [Patch 2/2] stv06xx webcams with HDCS 1xxx sensors

2009-09-13 Thread Erik Andrén
2009/9/13 Hans de Goede : > Hi, > > On 09/10/2009 09:51 AM, Erik Andrén wrote: > > > >> >> Looks good! >> Thanks, >> >> Acked-by: Erik Andrén > > Erik, > > Are you going to merge these 2 patches in your tree, and let them find > their way into the master this way, or shall I merge them in my tree

Re: [Patch 2/2] stv06xx webcams with HDCS 1xxx sensors

2009-09-13 Thread Hans de Goede
Hi, On 09/10/2009 09:51 AM, Erik Andrén wrote: Looks good! Thanks, Acked-by: Erik Andrén Erik, Are you going to merge these 2 patches in your tree, and let them find their way into the master this way, or shall I merge them in my tree ? Regards, Hans -- To unsubscribe from this list:

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

2009-09-13 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 Sep 13 19:00:10 CEST 2009 path:http://www.linuxtv.org/hg/v4l-dvb changeset: 12757:bd45a3a75049 gcc version: gcc

Re: [PATCH] hdpvr: i2c fixups for fully functional IR support

2009-09-13 Thread Brandon Jenkins
On Tue, Sep 1, 2009 at 9:30 PM, Andy Walls wrote: > On Tue, 2009-09-01 at 10:19 -0400, Jarod Wilson wrote: >> Patch is against http://hg.jannau.net/hdpvr/ >> >> 1) Adds support for building hdpvr i2c support when i2c is built as a >> module (based on work by David Engel on the mythtv-users list) >

Re: [PATCH 2/3] Add driver for OmniVision OV9640 sensor

2009-09-13 Thread Marek Vasut
Dne Pá 11. září 2009 23:51:44 Guennadi Liakhovetski napsal(a): > On Fri, 4 Sep 2009, Marek Vasut wrote: > > Dne Po 24. srpna 2009 20:06:29 Guennadi Liakhovetski napsal(a): > > > Hi Marek > > > > > > On Sat, 22 Aug 2009, Marek Vasut wrote: > > > > From 479aafc9a6540efec8a691a84aff166eb0218a72 Mon Se

Re: Media controller: sysfs vs ioctl

2009-09-13 Thread Hans Verkuil
On Sunday 13 September 2009 17:54:11 wk wrote: > Hans Verkuil schrieb: > > Hi all, > > > > I've started this as a new thread to prevent polluting the discussions of > > the > > media controller as a concept. > > > > First of all, I have no doubt that everything that you can do with an ioctl, > > y

test

2009-09-13 Thread Jed
this is a test -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: image quality of Labtec Webcam 2200

2009-09-13 Thread Thomas Kaiser
On 09/13/2009 04:42 PM, leandro Costantino wrote: Actually it based on pac7302. Pac7311/02 also has support ( since gspca1 ). I checked some old logs of the pac, and the driver init for 7302 seems ok. The "ff ff ff" sequence, seems to been taken in account on conversion. (libv4lconvert) /* Spe

Re: Media controller: sysfs vs ioctl

2009-09-13 Thread wk
Hans Verkuil schrieb: Hi all, I've started this as a new thread to prevent polluting the discussions of the media controller as a concept. First of all, I have no doubt that everything that you can do with an ioctl, you can also do with sysfs and vice versa. That's not the problem here. The pr

Re: [PULL] http://kernellabs.com/hg/~dheitmueller/em28xx-vbi3

2009-09-13 Thread Devin Heitmueller
On Sun, Sep 13, 2009 at 10:58 AM, Mauro Carvalho Chehab wrote: > Em Fri, 11 Sep 2009 00:00:35 -0400 > Devin Heitmueller escreveu: > >> Hello Mauro, >> >> Please PULL from http://kernellabs.com/hg/~dheitmueller/em28xx-vbi3 >> for the following >> >> em28xx: better describe vinctrl registers >> em2

Re: [PULL] http://kernellabs.com/hg/~dheitmueller/em28xx-vbi3

2009-09-13 Thread Mauro Carvalho Chehab
Em Fri, 11 Sep 2009 00:00:35 -0400 Devin Heitmueller escreveu: > Hello Mauro, > > Please PULL from http://kernellabs.com/hg/~dheitmueller/em28xx-vbi3 > for the following > > em28xx: better describe vinctrl registers > em28xx: make video isoc stream work when VBI is enabled > em28xx: add raw VBI

Re: image quality of Labtec Webcam 2200

2009-09-13 Thread leandro Costantino
Actually it based on pac7302. Pac7311/02 also has support ( since gspca1 ). I checked some old logs of the pac, and the driver init for 7302 seems ok. The "ff ff ff" sequence, seems to been taken in account on conversion. (libv4lconvert) /* Special Pixart versions of the *_nbits functions, these

Re: Pinnacle PCTV 310i active antenna

2009-09-13 Thread Martin Konopka
Hi Hermann, thank you, the patch for the antenna power is working for me with the latest mercurial tree. I'm now able to receive additional weak channels. On the contrary a channel close by with a very strong signal disappeared. The stand-alone receiver with antenna power that I have can receiv

Re: Media controller: sysfs vs ioctl

2009-09-13 Thread Mauro Carvalho Chehab
Em Sun, 13 Sep 2009 15:43:02 +0200 Hans Verkuil escreveu: > On Sunday 13 September 2009 15:27:57 Mauro Carvalho Chehab wrote: > > Em Sun, 13 Sep 2009 15:13:04 +0900 > > Nathaniel Kim escreveu: > > > > > > > > 2009. 9. 12., 오전 7:21, Hans Verkuil 작성: > > > > > > > Hi all, > > > > > > > > I've s

RFC: bus and data format negotiation

2009-09-13 Thread Hans Verkuil
(I promised that I would analyze this. Sorry that it took so long, but I had a lot of other things going on and this was one topic that I needed to really sit down for and think about carefully.) RFC: bus and data format negotiation Version 1.0 Background == As media boards become more

Re: [PULL] http://udev.netup.ru/hg/v4l-dvb-commits

2009-09-13 Thread Mauro Carvalho Chehab
Em Wed, 9 Sep 2009 19:21:12 +0300 "Igor M. Liplianin" escreveu: > Mauro, > > Please pull from http://udev.netup.ru/hg/v4l-dvb-commits I can't reach the server. the connection dies at utm.netup.ru. traceroute -n udev.netup.ru traceroute to udev.netup.ru (77.72.80.20), 30 hops max, 40 byte packe

Re: Media controller: sysfs vs ioctl

2009-09-13 Thread Hans Verkuil
On Sunday 13 September 2009 15:27:57 Mauro Carvalho Chehab wrote: > Em Sun, 13 Sep 2009 15:13:04 +0900 > Nathaniel Kim escreveu: > > > > > 2009. 9. 12., 오전 7:21, Hans Verkuil 작성: > > > > > Hi all, > > > > > > I've started this as a new thread to prevent polluting the > > > discussions of the

Re: Terratec T USB XXS 0ccd:00ab device

2009-09-13 Thread Mauro Carvalho Chehab
Em Sun, 13 Sep 2009 14:56:56 +0200 Emanoil Kotsev escreveu: > Hello, I've just subscribed this list. I'm normally using knode to read news, > but somehow I can not pull the groups etc from the vger server. > > I also tried to post to linux-dvb mailing list, but found out that it moved > here.

Re: Media controller: sysfs vs ioctl

2009-09-13 Thread Mauro Carvalho Chehab
Em Sun, 13 Sep 2009 15:13:04 +0900 Nathaniel Kim escreveu: > > 2009. 9. 12., 오전 7:21, Hans Verkuil 작성: > > > Hi all, > > > > I've started this as a new thread to prevent polluting the > > discussions of the > > media controller as a concept. > > > > First of all, I have no doubt that everythi

Terratec T USB XXS 0ccd:00ab device

2009-09-13 Thread Emanoil Kotsev
Hello, I've just subscribed this list. I'm normally using knode to read news, but somehow I can not pull the groups etc from the vger server. I also tried to post to linux-dvb mailing list, but found out that it moved here. If you think I need to know something explicitly about participating to

Re: Problems with Pinnacle 310i (saa7134) and recent kernels

2009-09-13 Thread Avl Jawrowski
Hi, hermann pitton arcor.de> writes: > > I'm sorry that we have some mess on some of such devices, but currently > really nobody can help much further. > > Mike and Hauppauge don't have any schematics for LNA and external > antenna voltage switching for now, he assured it to me personally and

Re: image quality of Labtec Webcam 2200

2009-09-13 Thread Németh Márton
Jean-Francois Moine wrote: > On Fri, 11 Sep 2009 09:09:20 +0200 > Németh Márton wrote: > >> You can find my results at >> http://v4l-test.sourceforge.net/results/test-20090911/index.html >> There are three types of problems: a) Sometimes the picture contains >> a 8x8 pixel error, like in image #9

RFCv2.1: Media controller proposal

2009-09-13 Thread Hans Verkuil
RFC: Media controller proposal Version 2.1 Changes from 2.0 - Forgot to mention Hans de Goede who was part of the recent meeting between Laurent, Guennadi and myself. My apologies! - Removed confusing and bogus VIDIOC_S_FMT example. - Mention the importance of documentation, a

Re: Media controller: sysfs vs ioctl

2009-09-13 Thread Hans Verkuil
On Sunday 13 September 2009 08:13:04 Nathaniel Kim wrote: > > 2009. 9. 12., 오전 7:21, Hans Verkuil 작성: > > > Hi all, > > > > I've started this as a new thread to prevent polluting the > > discussions of the > > media controller as a concept. > > > > First of all, I have no doubt that everything

TeVii S470 status?

2009-09-13 Thread Claes Lindblom
Hi, I'm looking for a new DVB-S2 card for my linux server and I wonder if anyone have tried the TeVii S470 in linux with DVB-S and S2 and whats the status of it. Is it stable and good support, no problems like the TT3200 (A problem with locking high symbol rate channels (DVB-S2 3 3/4 transpond

Re: ZC0301 webcam, successful trace from spca5xx driver

2009-09-13 Thread Jean-Francois Moine
On Sat, 12 Sep 2009 15:36:20 +0700 "test.r test.r" wrote: > Using the old spca5xx with Debian kernel 2.6.18 the webcam is working. > "Release 0.60.00 as spca5xx-v4l1-goodbye" available in Debian etch. > The traces below may help someone wanting to port this webcam to the > new driver architecture

Re: image quality of Labtec Webcam 2200

2009-09-13 Thread Jean-Francois Moine
On Fri, 11 Sep 2009 09:09:20 +0200 Németh Márton wrote: > You can find my results at > http://v4l-test.sourceforge.net/results/test-20090911/index.html > There are three types of problems: a) Sometimes the picture contains > a 8x8 pixel error, like in image #9 > http://v4l-test.sourceforge.net/re