[PATCH] V4L: fix ENUMSTD ioctl to report all supported standards

2010-03-26 Thread Guennadi Liakhovetski
V4L2_STD_PAL, V4L2_STD_SECAM, and V4L2_STD_NTSC are not the only composite standards. Currently, e.g., if a driver supports all of V4L2_STD_PAL_B, V4L2_STD_PAL_B1 and V4L2_STD_PAL_G, the enumeration will report V4L2_STD_PAL_BG and not the single standards, which can confuse applications. Fix

Re: PCTV 73eSE driver not loaded

2010-03-26 Thread Luc Boschmans
Devin, The build process was not complete indeed. Dropping FiredTV made it successful - the rest of the story is positive; everything running smooth. Many thanks! Luc. - Oorspronkelijk bericht - Van: Devin Heitmueller dheitmuel...@kernellabs.com Aan: luc boschmans

Re: [PATCH] V4L: fix ENUMSTD ioctl to report all supported standards

2010-03-26 Thread Mauro Carvalho Chehab
Guennadi Liakhovetski wrote: V4L2_STD_PAL, V4L2_STD_SECAM, and V4L2_STD_NTSC are not the only composite standards. Currently, e.g., if a driver supports all of V4L2_STD_PAL_B, V4L2_STD_PAL_B1 and V4L2_STD_PAL_G, the enumeration will report V4L2_STD_PAL_BG and not the single standards, which

Avermedia AVerTV GO 007 FM composite input problem

2010-03-26 Thread Andras Barna
hi i have a Avermedia AVerTV GO 007 FM card , the problem is that i get nothing from Composite, i tried different apps (mplayer, tvtime, etc) none works. (television input works) ideas? here're some infos [9.361212] saa7130/34: v4l2 driver version 0.2.15 loaded [9.361631] alloc

Re: [PATCH] V4L: fix ENUMSTD ioctl to report all supported standards

2010-03-26 Thread Guennadi Liakhovetski
On Fri, 26 Mar 2010, Hans Verkuil wrote: On Friday 26 March 2010 08:06:42 Guennadi Liakhovetski wrote: V4L2_STD_PAL, V4L2_STD_SECAM, and V4L2_STD_NTSC are not the only composite standards. Currently, e.g., if a driver supports all of V4L2_STD_PAL_B, V4L2_STD_PAL_B1 and V4L2_STD_PAL_G,

Re: Andy Walls' change of email address

2010-03-26 Thread Andy Walls
On Thu, 2010-03-25 at 15:41 +0100, HoP wrote: 2010/3/25 Jay R. Ashworth j...@baylink.com: - HoP jpetr...@gmail.com wrote: My radix.net email address will soon cease working. of course it is not my job, but I wonder why you not stay on old email. In 21 century there is no problem

Re: [PULL] ov7670 changes

2010-03-26 Thread Mauro Carvalho Chehab
Jonathan Corbet wrote: Hi, Mauro, With luck, I'll shortly have a via-camera driver (for the XO 1.5) ready for review. In the mean time, though, here's a set of ov7670 changes which have built up in the process. Unless there are objections, I'd appreciate it if these could go in for

Re: [PATCH 2/3 v2] V4L: v4l2-subdev driver for AK8813 and AK8814 TV-encoders from AKM

2010-03-26 Thread Hans Verkuil
On Thursday 18 March 2010 11:28:32 Guennadi Liakhovetski wrote: diff --git a/drivers/media/video/ak881x.c b/drivers/media/video/ak881x.c ... +static int ak881x_s_std_output(struct v4l2_subdev *sd, v4l2_std_id std) +{ + struct i2c_client *client = v4l2_get_subdevdata(sd); + struct

Re: [PATCH] V4L: fix ENUMSTD ioctl to report all supported standards

2010-03-26 Thread Hans Verkuil
On Friday 26 March 2010 12:24:26 Guennadi Liakhovetski wrote: On Fri, 26 Mar 2010, Hans Verkuil wrote: On Friday 26 March 2010 08:06:42 Guennadi Liakhovetski wrote: V4L2_STD_PAL, V4L2_STD_SECAM, and V4L2_STD_NTSC are not the only composite standards. Currently, e.g., if a driver

[no subject]

2010-03-26 Thread Kim, Heung Jun
unsubscribe linux-media -- 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: [RFC] What are the goals for the architecture of an in-kernel IR system?

2010-03-26 Thread David Härdeman
On Thu, Mar 25, 2010 at 07:32:59PM +0100, Pavel Machek wrote: struct keycode_table_entry { unsigned keycode; int len; char scancode[]; } ? gcc extension, but commonly used around kernel. Flexible array members are ok in C99, aren't they? -- David Härdeman -- To

Re: [RFC] What are the goals for the architecture of an in-kernel IR system?

2010-03-26 Thread David Härdeman
On Thu, Mar 25, 2010 at 11:42:33AM -0300, Mauro Carvalho Chehab wrote: 2) add current_protocol support on other drivers; Done. Patch were already merged upstream. The current_protocol attribute shows the protocol(s) that the device is accepting and allows changing it to another

Re: [RFC] What are the goals for the architecture of an in-kernel IR system?

2010-03-26 Thread David Härdeman
On Thu, Mar 25, 2010 at 11:42:33AM -0300, Mauro Carvalho Chehab wrote: 10) extend keycode table replacement to support big/variable sized scancodes; Pending. The current limit here is the scancode ioctl's are defined as: #define EVIOCGKEYCODE _IOR('E', 0x04,

Re: [RFC] What are the goals for the architecture of an in-kernel IR system?

2010-03-26 Thread Mauro Carvalho Chehab
David Härdeman wrote: On Thu, Mar 25, 2010 at 11:42:33AM -0300, Mauro Carvalho Chehab wrote: 10) extend keycode table replacement to support big/variable sized scancodes; Pending. The current limit here is the scancode ioctl's are defined as: #define EVIOCGKEYCODE

Re: [RFC] What are the goals for the architecture of an in-kernel IR system?

2010-03-26 Thread Mauro Carvalho Chehab
David Härdeman wrote: On Thu, Mar 25, 2010 at 11:42:33AM -0300, Mauro Carvalho Chehab wrote: 2) add current_protocol support on other drivers; Done. Patch were already merged upstream. The current_protocol attribute shows the protocol(s) that the device is accepting and allows

Re: [RFC] What are the goals for the architecture of an in-kernel IR system?

2010-03-26 Thread Dmitry Torokhov
On Fri, Mar 26, 2010 at 11:40:41AM -0300, Mauro Carvalho Chehab wrote: David Härdeman wrote: On Thu, Mar 25, 2010 at 11:42:33AM -0300, Mauro Carvalho Chehab wrote: 10) extend keycode table replacement to support big/variable sized scancodes; Pending. The current limit

Re: [PULL] ov7670 changes

2010-03-26 Thread Jonathan Corbet
On Fri, 26 Mar 2010 08:35:16 -0300 Mauro Carvalho Chehab mche...@infradead.org wrote: I'm now getting some warnings while compiling it with allyesconfig: Sigh...I don't really reserve all of my silly mistakes for you...it just must seem that way. Fix can be pulled from the same tree:

Re: [RFC] What are the goals for the architecture of an in-kernel IR system?

2010-03-26 Thread Mauro Carvalho Chehab
Dmitry Torokhov wrote: On Fri, Mar 26, 2010 at 11:40:41AM -0300, Mauro Carvalho Chehab wrote: David Härdeman wrote: On Thu, Mar 25, 2010 at 11:42:33AM -0300, Mauro Carvalho Chehab wrote: 10) extend keycode table replacement to support big/variable sized scancodes; Pending.

Re: [PULL] ov7670 changes

2010-03-26 Thread Mauro Carvalho Chehab
Jonathan Corbet wrote: On Fri, 26 Mar 2010 08:35:16 -0300 Mauro Carvalho Chehab mche...@infradead.org wrote: I'm now getting some warnings while compiling it with allyesconfig: Sigh...I don't really reserve all of my silly mistakes for you...it just must seem that way. Fix can be pulled

Re: [RFC] What are the goals for the architecture of an in-kernel IR system?

2010-03-26 Thread David Härdeman
On Fri, Mar 26, 2010 at 02:22:51PM -0300, Mauro Carvalho Chehab wrote: Dmitry Torokhov wrote: On Fri, Mar 26, 2010 at 11:40:41AM -0300, Mauro Carvalho Chehab wrote: David Härdeman wrote: I'd suggest: struct keycode_table_entry { unsigned keycode; unsigned index; unsigned

Re: [RFC] What are the goals for the architecture of an in-kernel IR system?

2010-03-26 Thread David Härdeman
On Fri, Mar 26, 2010 at 12:17:34PM -0300, Mauro Carvalho Chehab wrote: David Härdeman wrote: On Thu, Mar 25, 2010 at 11:42:33AM -0300, Mauro Carvalho Chehab wrote: 2) add current_protocol support on other drivers; Done. Patch were already merged upstream. The current_protocol

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

2010-03-26 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:Fri Mar 26 19:00:27 CET 2010 path:http://www.linuxtv.org/hg/v4l-dvb changeset: 14527:1ef0265456c8 git master:

[PATCH 6/6] Staging: cx25821: fix coding style issues in cx25821-video-upstream.c

2010-03-26 Thread Olimpiu Pascariu
From 69fbde2030f2a35c5289467a40f9828bf22fdc35 Mon Sep 17 00:00:00 2001 From: Olimpiu Pascariu olimpiu.pasca...@gmail.com Date: Sat, 27 Mar 2010 00:05:31 +0200 Subject: [PATCH 6/6] Staging: cx25821: fix coding style issues in cx25821-video-upstream.c This is a patch to cx25821-video-upstream.c

Re: Avermedia AVerTV GO 007 FM composite input problem

2010-03-26 Thread hermann pitton
Hi, Am Freitag, den 26.03.2010, 13:10 +0200 schrieb Andras Barna: hi i have a Avermedia AVerTV GO 007 FM card , the problem is that i get nothing from Composite, i tried different apps (mplayer, tvtime, etc) none works. (television input works) ideas? looking it up from 2005 to now,

[PATCH 4/9] drivers/media: Fix continuation lines

2010-03-26 Thread Joe Perches
Signed-off-by: Joe Perches j...@perches.com --- drivers/media/video/ov511.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/media/video/ov511.c b/drivers/media/video/ov511.c index e0bce8d..c34325c 100644 --- a/drivers/media/video/ov511.c +++

dmsg dump for Tevion High Speed DVD Maker

2010-03-26 Thread OurMail
Hi, Was trying to get a firewire port working in Ubuntu 9.10 when I noticed that I had my USB Tevion DVD Maker plugged in and that you had a message requesting a copy of the dump for the unidentified DVD Maker. Attached is that dump as requested. Not sure where you are located but a German food

Re: dmsg dump for Tevion High Speed DVD Maker

2010-03-26 Thread hermann pitton
Hi, Am Freitag, den 26.03.2010, 23:26 -0400 schrieb OurMail: Hi, Was trying to get a firewire port working in Ubuntu 9.10 when I noticed that I had my USB Tevion DVD Maker plugged in and that you had a message requesting a copy of the dump for the unidentified DVD Maker. Attached is that

Re: [RFC] What are the goals for the architecture of an in-kernel IR system?

2010-03-26 Thread Pavel Machek
Hi! Anyway, one simple way to avoid resetting the hardware for every new parameter change would be to use a timer for reset. This way, an userspace application or script that is touching on several parameters would just send the complete RX init sequence and after some dozens of