RE: Status of the patches under review (85 patches) and some misc notes about the devel procedures

2010-05-09 Thread Pawel Osciak
>From: Mauro Carvalho Chehab > == New or updated patches starting from May, 5 or newer - not > handled yet == > >May, 5 2010: [-next] media/mem2mem: dereferencing free memory http://patchwork.kernel.org/patch/96984 This one is obvious, but might as well: Reviewed-by: Pawel Osciak

Re: [GIT PATCHES FOR 2.6.35] More _fmt to _mbus_fmt conversions

2010-05-09 Thread Hans Verkuil
On Sunday 09 May 2010 15:30:24 Hans Verkuil wrote: > The following changes since commit 08b8618ac4dbcd05ec1886853b1d865798d26e1d: > Devin Heitmueller (1): > V4L/DVB: ngene: Add lgdt3303 and mt2131 deps to Kconfig > > are available in the git repository at: > > ssh://linuxtv.org/git/hv

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

2010-05-09 Thread Emard
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 are not recognized, seems like it either looses packets or saa7134 gpio sho

Re: setting up a tevii s660

2010-05-09 Thread Tim Coote
Thanks, Igor. I was using that set of drivers (if I understood the Babelfish translation.) My issue was that my hardware was broken (I was using a VMWare VM that didn't emulate usb properly). It's always hard to work out what's broken when you load up some new package and it doesn't work.

Re: RFC PATCH: v4l2-subdev.h: fix enum_mbus_fmt prototype

2010-05-09 Thread Guennadi Liakhovetski
On Sun, 9 May 2010, Hans Verkuil wrote: > Hi Guennadi, > > Can you review this patch? > > It's a simple and sensible change, but I also had to make a similar change > in soc-camera so I'd like to you to take a look as well. No problem in general with this patch, just I would use "unsigned int"

Re: stv090x vs stv0900

2010-05-09 Thread Manu Abraham
On Sun, May 9, 2010 at 11:06 PM, Abylai Ospan wrote: > Hello, > > On Thu, 2010-05-06 at 10:46 +0200, Pascal Terjan wrote: >> Also, are they both maintained ? I wrote a patch to add get_frontend to >> stv090x but stv0900 also does not have it and I don't know which one >> should get new code. > > I

Re: stv090x vs stv0900

2010-05-09 Thread Abylai Ospan
Hello, On Thu, 2010-05-06 at 10:46 +0200, Pascal Terjan wrote: > Also, are they both maintained ? I wrote a patch to add get_frontend to > stv090x but stv0900 also does not have it and I don't know which one > should get new code. I have added get_frontend to stv0900 two months ago - http://linux

[PATCH 7/7] [RFC] ivtv: add priority checks for the non-standard commands.

2010-05-09 Thread Hans Verkuil
Signed-off-by: Hans Verkuil --- drivers/media/video/ivtv/ivtv-ioctl.c | 20 +++- 1 files changed, 19 insertions(+), 1 deletions(-) diff --git a/drivers/media/video/ivtv/ivtv-ioctl.c b/drivers/media/video/ivtv/ivtv-ioctl.c index c532b77..de392a2 100644 --- a/drivers/media/video

[PATCH 5/7] [RFC] v4l2-ioctl: add priority handling support.

2010-05-09 Thread Hans Verkuil
Drivers that use either v4l2_fh or don't use filehandles at all can now use the core framework support of g/s_priority. Signed-off-by: Hans Verkuil --- drivers/media/video/v4l2-ioctl.c | 64 ++--- 1 files changed, 58 insertions(+), 6 deletions(-) diff --git a/d

[PATCH 6/7] [RFC] ivtv: drop priority handling, use core framework for this.

2010-05-09 Thread Hans Verkuil
Signed-off-by: Hans Verkuil --- drivers/media/video/ivtv/ivtv-driver.h |2 - drivers/media/video/ivtv/ivtv-fileops.c |2 - drivers/media/video/ivtv/ivtv-ioctl.c | 41 --- 3 files changed, 0 insertions(+), 45 deletions(-) diff --git a/drivers/media/video/i

[PATCH 4/7] [RFC] v4l2-dev: add and support flag V4L2_FH_USE_PRIO.

2010-05-09 Thread Hans Verkuil
Flag V4L2_FH_USE_PRIO is set if we can safely store the priority level in file->private_data. Support this flag for the open and release file operations. Signed-off-by: Hans Verkuil --- drivers/media/video/v4l2-dev.c | 23 +-- include/media/v4l2-dev.h |6 ++ 2

[PATCH 4/4] [RFC] Needs more work.

2010-05-09 Thread Hans Verkuil
Signed-off-by: Hans Verkuil --- drivers/media/video/cpia2/cpia2.h |1 + drivers/media/video/ivtv/ivtv-driver.h |2 - drivers/media/video/ivtv/ivtv-fileops.c |2 - drivers/media/video/ivtv/ivtv-ioctl.c | 41 -- drivers/media/video/v4l2-common.c | 60 -

[PATCH 3/7] [RFC] v4l2-fh: implement v4l2_priority support.

2010-05-09 Thread Hans Verkuil
Signed-off-by: Hans Verkuil --- drivers/media/video/v4l2-fh.c |4 include/media/v4l2-fh.h |1 + 2 files changed, 5 insertions(+), 0 deletions(-) diff --git a/drivers/media/video/v4l2-fh.c b/drivers/media/video/v4l2-fh.c index d78f184..d57908a 100644 --- a/drivers/media/video/v

[PATCH 2/7] [RFC] v4l2-device: add v4l2_prio_state to v4l2_device.

2010-05-09 Thread Hans Verkuil
Signed-off-by: Hans Verkuil --- drivers/media/video/v4l2-device.c |1 + include/media/v4l2-device.h |2 ++ 2 files changed, 3 insertions(+), 0 deletions(-) diff --git a/drivers/media/video/v4l2-device.c b/drivers/media/video/v4l2-device.c index 2386ae6..86ce0c9 100644 --- a/driver

[PATCH 1/7] [RFC] v4l2_prio: move from v4l2-common to v4l2-device.

2010-05-09 Thread Hans Verkuil
We are going to move priority handling into the v4l2 core. As a consequence the v4l2_prio helper functions need to be moved into the core videodev module as well to prevent circular dependencies. Signed-off-by: Hans Verkuil --- drivers/media/video/cpia2/cpia2.h |1 + drivers/media/v

[PATCH 0/7] [RFC] Move VIDIOC_G/S_PRIORITY handling to the V4L core

2010-05-09 Thread Hans Verkuil
Few drivers implement VIDIOC_G/S_PRIORITY and those that do often implement it incorrectly. Now that we have a v4l2_fh struct it is easy to add support for priority handling to the v4l core framework. There are three types of drivers: 1) Those that use v4l2_fh. There the local priority can be st

Re: stv090x vs stv0900

2010-05-09 Thread Manu Abraham
2010/5/9 Igor M. Liplianin : >> Also, are they both maintained ? I wrote a patch to add get_frontend to >> stv090x but stv0900 also does not have it and I don't know which one >> should get new code. >> >> And stv6110x seems to also handle stv6110 which also exists as a >> separate module... > In t

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

2010-05-09 Thread Emard
Yes, almost everything: DVB-T, Analog TV, FM Radio, IR Remote control. I haven't tested too much analog TV (it seems to work, receivers some snowy channels but I don't have good antenna). Also didn't test video inputs at all. Not supported is onboard RTC timer that can wake up the computer. Her

Re: setting up a tevii s660

2010-05-09 Thread Igor M. Liplianin
On 6 мая 2010 02:07:38 Tim Coote wrote: > Hullo > I've been struggling with this for a couple of days. I have checked > archives, but missed anything useful. > > I've got a tevii s660 (dvbs2 via usb). It works with some limitations > on windows xp (I cannot get HD signals decoded, but think that's

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

2010-05-09 Thread Samuel Rakitničan
On Sun, 09 May 2010 19:32:43 +0200, Emard wrote: Hmm, power on is pure hardware thing on this card I think, it doesn't need a driver. But it seems it needs a driver. Although pin is connected to MB power switch, the card has to be in certain state (GPIOs programmed, pci standby power enabl

Re: stv090x vs stv0900

2010-05-09 Thread Igor M. Liplianin
On 6 мая 2010 11:46:17 Pascal Terjan wrote: > Hi, > > I was adding support for a non working version of DVBWorld HD 2104 > > It is listed on > http://www.linuxtv.org/wiki/index.php/DVBWorld_HD_2104_FTA_USB_Box as : > > = > for new solution : 2104B (Sharp0169 Tuner) > > * STV6110A tuner >

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

2010-05-09 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 9 19:00:10 CEST 2010 path:http://www.linuxtv.org/hg/v4l-dvb changeset: 14644:4a8d6d981f07 git master:

Re: Linux V4L2 support dual stream video capture device

2010-05-09 Thread Andy Walls
On Sat, 2010-05-08 at 02:20 +0800, Wang, Wen W wrote: > Hi all, > > I'm wondering if V4L2 framework supports dual stream video capture > device that transfer a preview stream and a regular stream (still > capture or video capture) at the same time. Yes. At least for the ivtv and cx18 drivers, mu

Fwd: Technotrend S2-1600 - initialization bug

2010-05-09 Thread Andrey Gangan
Hello The bug is still exist in a Ubuntu 10.04 LTS with kernel 2.6.32 [   58.540239] saa7146: register extension 'budget dvb'. [   58.540263] budget dvb :07:02.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 [   58.540303] IRQ 17/: IRQF_DISABLED is not guaranteed on shared IRQs [   58.540323] saa

Re: [PATCH v2 1/10] V4L2 patches for Intel Moorestown Camera Imaging Drivers

2010-05-09 Thread Hans Verkuil
On Sunday 28 March 2010 09:46:52 Zhang, Xiaolin wrote: > From 7e2f1f0d8dff9051d234a69d73655c730ad1c16c Mon Sep 17 00:00:00 2001 > From: Xiaolin Zhang > Date: Sun, 28 Mar 2010 13:44:05 +0800 > Subject: [PATCH 01/10] This patch is first part of the intel moorestown isp > driver and header files col

[PATCH 4/6] [RFC] tvp514x: add missing newlines

2010-05-09 Thread Hans Verkuil
Signed-off-by: Hans Verkuil --- drivers/media/video/tvp514x.c | 12 ++-- 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/drivers/media/video/tvp514x.c b/drivers/media/video/tvp514x.c index 8c1609f..4e22621 100644 --- a/drivers/media/video/tvp514x.c +++ b/drivers/media/vid

[PATCH 6/6] [RFC] tvp514x: simplify try/g/s_fmt handling

2010-05-09 Thread Hans Verkuil
Since there is only one possible format just have all three calls do the same. Signed-off-by: Hans Verkuil --- drivers/media/video/tvp514x.c | 98 - 1 files changed, 9 insertions(+), 89 deletions(-) diff --git a/drivers/media/video/tvp514x.c b/drivers/m

[PATCH 5/6] [RFC] tvp514x: remove obsolete fmt_list

2010-05-09 Thread Hans Verkuil
Signed-off-by: Hans Verkuil --- drivers/media/video/tvp514x.c | 15 --- 1 files changed, 0 insertions(+), 15 deletions(-) diff --git a/drivers/media/video/tvp514x.c b/drivers/media/video/tvp514x.c index 4e22621..1c3417b 100644 --- a/drivers/media/video/tvp514x.c +++ b/drivers/media

[PATCH 3/6] [RFC] tvp514x: there is only one supported format, so simplify the code

2010-05-09 Thread Hans Verkuil
Get rid of unnecessary code since this driver supports only one pixel format. Removing this code will make the transition to the mbus API easier as well. Signed-off-by: Hans Verkuil --- drivers/media/video/tvp514x.c | 45 1 files changed, 9 insertions(+

[PATCH 2/6] [RFC] tvp514x: make std_list const

2010-05-09 Thread Hans Verkuil
Signed-off-by: Hans Verkuil --- drivers/media/video/tvp514x.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/media/video/tvp514x.c b/drivers/media/video/tvp514x.c index 1ca1247..9d8d5c8 100644 --- a/drivers/media/video/tvp514x.c +++ b/drivers/media/video/tvp51

[PATCH 0/6] [RFC] tvp514x fixes

2010-05-09 Thread Hans Verkuil
Hi Vaibhav, While working on the *_fmt to *_mbus_fmt video op conversion I noticed that tvp514x is confusing the current select TV standard with the detected TV standard leading to horrible side-effects where called TRY_FMT can actually magically change the TV standard. I fixed this and I also si

[PATCH 1/6] [RFC] tvp514x: do NOT change the std as a side effect

2010-05-09 Thread Hans Verkuil
Several calls (try_fmt, g_parm among others) changed the current standard as a side effect of that call. But the standard may only be changed by s_std. Signed-off-by: Hans Verkuil --- drivers/media/video/tvp514x.c | 53 1 files changed, 16 insertions(+)

Re: compro s500 support

2010-05-09 Thread Fernando Cassia
On Sat, May 8, 2010 at 9:16 PM, Tarik AIT-ARYANE wrote: > Hi, > I want to know if there is any support in linux of compro videomate s500 > (dvbs by USB card). I'm a newcomer to this list, but I think it'd help if you post the CHIPSET used by such card, not the brand name and model. It is the chi

RFC PATCH: v4l2-subdev.h: fix enum_mbus_fmt prototype

2010-05-09 Thread Hans Verkuil
Hi Guennadi, Can you review this patch? It's a simple and sensible change, but I also had to make a similar change in soc-camera so I'd like to you to take a look as well. Regards, Hans enum_mbus_fmt received an index argument that was defined as an int instead of an unsigned int. This

[GIT PATCHES FOR 2.6.35] More _fmt to _mbus_fmt conversions

2010-05-09 Thread Hans Verkuil
The following changes since commit 08b8618ac4dbcd05ec1886853b1d865798d26e1d: Devin Heitmueller (1): V4L/DVB: ngene: Add lgdt3303 and mt2131 deps to Kconfig are available in the git repository at: ssh://linuxtv.org/git/hverkuil/v4l-dvb.git mbus1 Tested with ivtv, cx18, saa7134-empress

Twin DVB-T USB tunner

2010-05-09 Thread Josu Lazkano
Hello, I want to configure an HTPC and I am interesting on a twin DVB-T USB tunner. If is possible with HD support. SOmeone know where to buy it? I am fron spain. Thanks and best regards. -- Josu Lazkano -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a

compro s500 support

2010-05-09 Thread Tarik AIT-ARYANE
Hi, I want to know if there is any support in linux of compro videomate s500 (dvbs by USB card). Thanks -- 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.h

RFC: behavior of QUERYSTD when no signal is present

2010-05-09 Thread Hans Verkuil
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 type. The driver stores here a set of candidates, this can

Confusing mediabus formats

2010-05-09 Thread Hans Verkuil
Hi Guennadi, I'm preparing a patch series that replaces enum/g/try/s_fmt with enum/g/try/s/_mbus_fmt in all subdevs. While doing that I stumbled on a confusing definition of the YUV mediabus formats. Currently we have these: V4L2_MBUS_FMT_YUYV8_2X8_LE, V4L2_MBUS_FMT_YVYU8_2X8_LE,

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

2010-05-09 Thread Hans Verkuil
Hi all! On Thursday 22 April 2010 16:17:50 Sakari Ailus wrote: > Hello all, > > 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 Wednesd