Re: av7110 and budget_av are broken!

2010-05-16 Thread Oliver Endriss
Hi Douglas, On Sunday 16 May 2010 07:09:21 Douglas Schilling Landgraf wrote: Please hg pull -u, now should include the change that you are looking for. Thanks, now the driver works again. :-) Regards, Oliver -- VDR Remote

Hauppage Nova-500-td problems

2010-05-16 Thread Pshem Kowalczyk
Hi, I've recently bought Hauppage nova-500-td for my mythtv backend. The card works mostly fine, but every now and then it looks like it doesn't tune to the channel properly (I think) - video and sound remain garbled for prolonged periods of time (2-5 minutes), but ultimately recover. This

Re: RFC: behavior of QUERYSTD when no signal is present

2010-05-16 Thread Hans Verkuil
On Sunday 09 May 2010 11:23:05 Hans Verkuil wrote: What is VIDIOC_QUERYSTD supposed to do when there is no signal? The spec says this: The hardware may be able to detect the current video standard automatically. To do so, applications call VIDIOC_QUERYSTD with a pointer to a v4l2_std_id

Re: [PATCH] Compro Videomate T750F Vista digital+analog support

2010-05-16 Thread semiRocket
On Mon, 10 May 2010 01:15:35 +0200, Emard davorem...@gmail.com wrote: HI This is even more cleanup from spaces into tabs and replacing KEY_BACKSPACE with KEY_BACK which I think is more appropriate for this remote. compro t750f patch v17 About the remote - I noticed 2-10% of the keypresses

Re: [PATCH] Compro Videomate T750F Vista digital+analog support

2010-05-16 Thread Samuel Rakitničan
screen but with some random flickering occurring represented by horizontal red/green lines. No white/black dots noise present. Thanks, Samuel -- Lorem ipsum hg-20100516.diff Description: Binary data dmesg Description: Binary data

Re: av7110 and budget_av are broken!

2010-05-16 Thread Mauro Carvalho Chehab
Oliver Endriss wrote: On Sunday 16 May 2010 03:53:48 hermann pitton wrote: Am Samstag, den 15.05.2010, 22:33 -0300 schrieb Douglas Schilling Landgraf: Hello Oliver, On Sat, May 15, 2010 at 8:06 PM, Oliver Endriss o.endr...@gmx.de wrote: On Wednesday 21 April 2010 11:44:16 Oliver Endriss

[PATCH 00/15] [RFCv2] [RFC] New control handling framework

2010-05-16 Thread Hans Verkuil
This RFC patch series adds the control handling framework and implements it in ivtv and all subdev drivers used by ivtv. It is a bare-bones implementation, so no sysfs or debugfs enhancements. It is the second version of this framework, incorporating comments from Laurent. Changes compared to

[PATCH 02/15] [RFCv2] v4l2-ctrls: reorder 'case' statements to match order in header.

2010-05-16 Thread Hans Verkuil
To make it easier to determine whether all controls are added in v4l2-ctrls.c the case statements inside the switch are re-ordered to match the header. Signed-off-by: Hans Verkuil hverk...@xs4all.nl Reviewed-by: Laurent Pinchart laurent.pinch...@ideasonboard.com ---

[PATCH 03/15] [RFCv2] Documentation: add v4l2-controls.txt documenting the new controls API.

2010-05-16 Thread Hans Verkuil
Signed-off-by: Hans Verkuil hverk...@xs4all.nl Reviewed-by: Laurent Pinchart laurent.pinch...@ideasonboard.com --- Documentation/video4linux/v4l2-controls.txt | 600 +++ 1 files changed, 600 insertions(+), 0 deletions(-) create mode 100644

[PATCH 04/15] [RFCv2] v4l2: hook up the new control framework into the core framework

2010-05-16 Thread Hans Verkuil
Add the calls needed to automatically merge subdev controls into a bridge control handler. Hook up the control framework in __video_ioctl2 and video_register_device. Signed-off-by: Hans Verkuil hverk...@xs4all.nl --- drivers/media/video/v4l2-dev.c|8 +-

[PATCH 05/15] [RFCv2] saa7115: convert to the new control framework

2010-05-16 Thread Hans Verkuil
Signed-off-by: Hans Verkuil hverk...@xs4all.nl --- drivers/media/video/saa7115.c | 180 ++--- 1 files changed, 80 insertions(+), 100 deletions(-) diff --git a/drivers/media/video/saa7115.c b/drivers/media/video/saa7115.c index 53b6fcd..4f97c3e 100644 ---

[PATCH 06/15] [RFCv2] msp3400: convert to the new control framework

2010-05-16 Thread Hans Verkuil
Signed-off-by: Hans Verkuil hverk...@xs4all.nl --- drivers/media/video/msp3400-driver.c | 248 +++ drivers/media/video/msp3400-driver.h | 16 ++- drivers/media/video/msp3400-kthreads.c | 16 +- 3 files changed, 108 insertions(+), 172 deletions(-) diff --git

[PATCH 07/15] [RFCv2] saa717x: convert to the new control framework

2010-05-16 Thread Hans Verkuil
Signed-off-by: Hans Verkuil hverk...@xs4all.nl --- drivers/media/video/saa717x.c | 323 ++-- 1 files changed, 81 insertions(+), 242 deletions(-) diff --git a/drivers/media/video/saa717x.c b/drivers/media/video/saa717x.c index 6818df5..d551411 100644 ---

[PATCH 09/15] [RFCv2] cx25840: convert to the new control framework

2010-05-16 Thread Hans Verkuil
Signed-off-by: Hans Verkuil hverk...@xs4all.nl --- drivers/media/video/cx25840/cx25840-audio.c | 144 +++--- drivers/media/video/cx25840/cx25840-core.c | 178 ++- drivers/media/video/cx25840/cx25840-core.h | 15 ++- 3 files changed, 91 insertions(+),

[PATCH 10/15] [RFCv2] cx2341x: convert to the control framework

2010-05-16 Thread Hans Verkuil
Since this module is also used by drivers that are not yet converted, the old and new code have to co-exist. The source is split into three parts: a common part at the top, which is used by both old and new code, then the old code followed by the new control framework implementation. This new

[PATCH 11/15] [RFCv2] wm8775: convert to the new control framework

2010-05-16 Thread Hans Verkuil
Signed-off-by: Hans Verkuil hverk...@xs4all.nl --- drivers/media/video/wm8775.c | 79 ++--- 1 files changed, 50 insertions(+), 29 deletions(-) diff --git a/drivers/media/video/wm8775.c b/drivers/media/video/wm8775.c index f1f261a..09a9663 100644 ---

[PATCH 12/15] [RFCv2] cs53l32a: convert to new control framework.

2010-05-16 Thread Hans Verkuil
Signed-off-by: Hans Verkuil hverk...@xs4all.nl --- drivers/media/video/cs53l32a.c | 107 +-- 1 files changed, 68 insertions(+), 39 deletions(-) diff --git a/drivers/media/video/cs53l32a.c b/drivers/media/video/cs53l32a.c index 80bca8d..a46b1d0 100644 ---

[PATCH 13/15] [RFCv2] wm8739: convert to the new control framework

2010-05-16 Thread Hans Verkuil
Signed-off-by: Hans Verkuil hverk...@xs4all.nl --- drivers/media/video/wm8739.c | 176 ++ 1 files changed, 59 insertions(+), 117 deletions(-) diff --git a/drivers/media/video/wm8739.c b/drivers/media/video/wm8739.c index b572ce2..af4e61f 100644 ---

[PATCH 14/15] [RFCv2] ivtv: convert gpio subdev to new control framework.

2010-05-16 Thread Hans Verkuil
Signed-off-by: Hans Verkuil hverk...@xs4all.nl --- drivers/media/video/ivtv/ivtv-driver.c |1 + drivers/media/video/ivtv/ivtv-driver.h |1 + drivers/media/video/ivtv/ivtv-gpio.c | 77 +++- 3 files changed, 38 insertions(+), 41 deletions(-) diff --git

[PATCH 15/15] [RFCv2] ivtv: convert to the new control framework

2010-05-16 Thread Hans Verkuil
Signed-off-by: Hans Verkuil hverk...@xs4all.nl --- drivers/media/video/ivtv/ivtv-controls.c | 275 -- drivers/media/video/ivtv/ivtv-controls.h |6 +- drivers/media/video/ivtv/ivtv-driver.c | 18 ++- drivers/media/video/ivtv/ivtv-driver.h |5 +-

Re: av7110 and budget_av are broken!

2010-05-16 Thread Oliver Endriss
On Sunday 16 May 2010 14:57:18 Mauro Carvalho Chehab wrote: Oliver Endriss wrote: On Sunday 16 May 2010 03:53:48 hermann pitton wrote: Hi, Douglas and Oliver, just as a small comment. I have not been on latest rc1 and such rcs close to a release for some time. But I was for a

consumer marketing lists

2010-05-16 Thread relate
We have lists for healthcare, business finance, consumers and professionals. Lots of different lists from various optin sources. Just send me an email here for additional info: successto...@gmx.com Send us an email to remfi...@gmx.com we will discontinue from the list -- To unsubscribe

[PATCH] si4713: Fix oops when si4713_platform_data is marked as __initdata

2010-05-16 Thread Jarkko Nikula
This driver can cause an oops if si4713_platform_data holding pointer to set_power function is marked as __initdata and when trying to power up the chip after booting e.g. with 'v4l2-ctl -d /dev/radio0 --set-ctrl=mute=0'. This happens because the sdev-platform_data doesn't point to valid data

Re: av7110 and budget_av are broken!

2010-05-16 Thread Mauro Carvalho Chehab
Oliver Endriss wrote: On Sunday 16 May 2010 14:57:18 Mauro Carvalho Chehab wrote: Oliver Endriss wrote: On Sunday 16 May 2010 03:53:48 hermann pitton wrote: Hi, Douglas and Oliver, just as a small comment. I have not been on latest rc1 and such rcs close to a release for some time. But

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

2010-05-16 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 May 16 19:00:20 CEST 2010 path:http://www.linuxtv.org/hg/v4l-dvb changeset: 14857:2f5632eaf01d git master:

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

2010-05-16 Thread Mike Isely
Please from http://linuxtv.org/hg/~mcisely/pvrusb2-patches for the following pvrusb2 driver fixes / improvements: - pvrusb2: Minor debug code fixup - pvrusb2: Fix Gotview hardware support - pvrusb2: Avoid using stack allocated buffers when performing USB I/O - pvrusb2: New feature to mark

Massage Therapists marketing email list

2010-05-16 Thread Beck bedazzle
Here's a business list package on sale this week only: Business List Gold Package Real Estate Agents - 1 million records with emails US New Business Database - 4.8 million records all with emails Manufacturers Database - 1,057,119 records with 476,509 emails All complete lists above: $296