Startup delay needed for a Sonix camera

2012-03-28 Thread Rafał Rzepecki
Hi, I've tried to reach Jean-Francois with this a week ago, but I still haven't received an answer, so I'm sending it to the mailing list. I'd appreciate a CC of any follow-ups. I've been having problems with my ID 0c45:6128 Microdia PC Camera (SN9C325 + OM6802) using driver gspca_sonixj. Specifi

Re: [PATCH] Add Fitipower fc0011 tuner driver

2012-03-28 Thread Michael Büsch
On Thu, 29 Mar 2012 02:01:34 +0200 Michael Büsch wrote: > The driver is tested with the af903x driver. For reference, here goes the af903x/fc0011 glue: Signed-off-by: Michael Buesch Index: linux-3.3/drivers/media/dvb/dvb-usb/Kconfig

[PATCH] Add Fitipower fc0011 tuner driver

2012-03-28 Thread Michael Büsch
This adds a driver for the Fitipower fc0011 DVB-t tuner. Signed-off-by: Michael Buesch --- The driver is tested with the af903x driver. Mauro Carvalho Chehab, I'm actually aiming on getting this driver merged into the media-tree now. Hans-Frieder Vogt, what are your plans on getting af903x me

Re: [PATCH v2 3/4] omap3isp: preview: Remove averager parameter update flag

2012-03-28 Thread Sakari Ailus
On Wed, Mar 28, 2012 at 02:00:00PM +0200, Laurent Pinchart wrote: > The flag isn't used, remove it. > > Signed-off-by: Laurent Pinchart Acked-by: Sakari Ailus -- Sakari Ailus e-mail: sakari.ai...@iki.fi jabber/XMPP/Gmail: sai...@retiisi.org.uk -- To unsubscribe from this list: send the li

Re: reading config parameters of omap3-isp subdevs

2012-03-28 Thread Laurent Pinchart
Hi Michael, On Tuesday 20 March 2012 11:06:56 Michael Jones wrote: > On 03/20/2012 12:22 AM, Laurent Pinchart wrote: > > On Friday 16 March 2012 15:06:15 Michael Jones wrote: > [snip] > > > Adding a R/W bit to the flag argument should indeed work. However, I'm > > wondering what your use case for

cron job: media_tree daily build: ERRORS

2012-03-28 Thread Hans Verkuil
This message is generated daily by a cron job that builds media_tree for the kernels and architectures in the list below. Results of the daily build of media_tree: date:Wed Mar 28 19:00:21 CEST 2012 git hash:296da3cd14db9eb5606924962b2956c9c656dbb0 gcc version: i686-linux-gcc (GC

update to file fr-Paris for DVB-T corrected

2012-03-28 Thread EricJCh.Aubert
Hi I've made a mistake in my previous file fr-Paris for R8 due to a bad compute it's not 700 but 770! here is the file with the correct values Rgds -- Eric Aubert ericjch.aub...@orange.fr# Paris - France - various DVB-T transmitters # contributed by Alexis de Lattre # # update by Eric Aubert

Re: [PATCH for v3.4] Add missing slab.h to radio-rtrack2.c

2012-03-28 Thread Randy Dunlap
On 03/27/2012 02:39 AM, Hans Verkuil wrote: > Missed this one, this patch should solve this issue: > > http://www.spinics.net/lists/linux-media/msg45880.html > > Slab.h was added to all the other isa drivers, but not radio-rtrack2.c. > > Subject: [PATCH] radio-rtrack2: add missing slab.h. > >

Re: [PATCH 10/10] uvcvideo: Send control change events for slave ctrls when the master changes

2012-03-28 Thread Hans de Goede
Hi, On 03/28/2012 11:34 AM, Laurent Pinchart wrote: Hi Hans, Thanks for the patch. On Sunday 25 March 2012 13:56:50 Hans de Goede wrote: This allows v4l2 control UI-s to update the inactive state (ie grey-ing out of controls) for slave controls when the master control changes. Signed-off-by:

Re: [PATCH 09/10] uvcvideo: Properly report the inactive flag for inactive controls

2012-03-28 Thread Hans de Goede
Hi, Thanks for the reviews! On 03/28/2012 11:12 AM, Laurent Pinchart wrote: Hi Hans, Thanks for the patch. On Sunday 25 March 2012 13:56:49 Hans de Goede wrote: Note the unused in this patch slave_ids addition to the mappings will get used in a follow up patch to generate control change even

[PATCH v2 3/4] omap3isp: preview: Remove averager parameter update flag

2012-03-28 Thread Laurent Pinchart
The flag isn't used, remove it. Signed-off-by: Laurent Pinchart --- drivers/media/video/omap3isp/isppreview.h |3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/drivers/media/video/omap3isp/isppreview.h b/drivers/media/video/omap3isp/isppreview.h index 0968660..67723c7 1

[PATCH v2 2/4] omap3isp: preview: Optimize parameters setup for the common case

2012-03-28 Thread Laurent Pinchart
If no parameter needs to be modified, make preview_config() and preview_setup_hw() return immediately. This speeds up interrupt handling in the common case. Signed-off-by: Laurent Pinchart Acked-by: Sakari Ailus --- drivers/media/video/omap3isp/isppreview.c |5 + 1 files changed, 5 inse

[PATCH v2 4/4] omap3isp: preview: Shorten shadow update delay

2012-03-28 Thread Laurent Pinchart
When applications modify preview engine parameters, the new values are applied to the hardware by the preview engine interrupt handler during vertical blanking. If the parameters are being changed when the interrupt handler is called, it just delays applying the parameters until the next frame. If

[PATCH v2 1/4] omap3isp: preview: Skip brightness and contrast in configuration ioctl

2012-03-28 Thread Laurent Pinchart
Brightness and contrast are handled through V4L2 controls. Their configuration bit in the preview engine update attributes table is set to -1 to reflect that. However, the VIDIOC_OMAP3ISP_PRV_CFG ioctl handler doesn't handle -1 correctly as a configuration bit value, and erroneously considers that

[PATCH v2 0/4] OMAP3 ISP preview engine configuration improvement

2012-03-28 Thread Laurent Pinchart
Hello, Here's the second version of the OMAP3 ISP preview engine configuration improvement patches. Patches 1/4 and 2/4 have already been acked and haven't changed since v1. Patch 3/4 is a new bug fix, and patch 4/4 is a complete rework of the shadow update issue fix previously submitted as 3/3 i

Re: [PATCH 10/10] uvcvideo: Send control change events for slave ctrls when the master changes

2012-03-28 Thread Laurent Pinchart
Hi Hans, Thanks for the patch. On Sunday 25 March 2012 13:56:50 Hans de Goede wrote: > This allows v4l2 control UI-s to update the inactive state (ie grey-ing > out of controls) for slave controls when the master control changes. > > Signed-off-by: Hans de Goede > --- > drivers/media/video/uvc

Re: [PATCH 06/10] uvcvideo: Refactor uvc_ctrl_get and query

2012-03-28 Thread Laurent Pinchart
Hi Hans, Thanks for the patch. On Sunday 25 March 2012 13:56:46 Hans de Goede wrote: > This is a preparation patch for adding ctrl event support. > > Signed-off-by: Hans de Goede > --- > drivers/media/video/uvc/uvc_ctrl.c | 69 > 1 file changed, 46 inserti

Re: [PATCH 08/10] uvcvideo: Add support for control events

2012-03-28 Thread Laurent Pinchart
Hi Hans, Thanks for the patch. On Sunday 25 March 2012 13:56:48 Hans de Goede wrote: > Signed-off-by: Hans de Goede After addressing the two small comments below, Acked-by: Laurent Pinchart > --- > drivers/media/video/uvc/uvc_ctrl.c | 119 - > drivers/media/

Re: [PATCH 09/10] uvcvideo: Properly report the inactive flag for inactive controls

2012-03-28 Thread Laurent Pinchart
Hi Hans, Thanks for the patch. On Sunday 25 March 2012 13:56:49 Hans de Goede wrote: > Note the unused in this patch slave_ids addition to the mappings will get > used in a follow up patch to generate control change events for the slave > ctrls when their flags change due to the master control ch

Re: [PATCH 07/10] uvcvideo: Move __uvc_ctrl_get() up

2012-03-28 Thread Laurent Pinchart
Hi Hans, Thanks for the patch. On Sunday 25 March 2012 13:56:47 Hans de Goede wrote: > This avoids the need for doing a forward declaration of __uvc_ctrl_get > (which is a static function) in later patches in this series. > > Note to reviewers this patch does not change a single line of code, it

Re: update to file fr-Paris for DVB-T

2012-03-28 Thread Patrick Boettcher
Hi Eric, On Tuesday 27 March 2012 19:19:41 EricJCh.Aubert wrote: > Hello, > > I have updated the file fr-Paris with the frequencies valid from > march 8th 2011 > source > http://www.tvnt.net/forum/tous-au-numerique-ile-de-france-le-8- > mars-2011-mise-a-jour-le-26-02-2011-t24658.html > > file fr

Re : AverTV Volar HD PRO : a return case.

2012-03-28 Thread Sril
> - Mail original - > De : Gianluca Gennari > À : Sril ; "linux-media@vger.kernel.org" > > Cc : > Envoyé le : Mardi 27 mars 2012 12h45 > Objet : Re : AverTV Volar HD PRO : a return case. > Il 26/03/2012 23:35, Sril ha scritto: > > Hi, > > > > Ianswer to mysel to say that I finally