femon signal strength

2011-10-25 Thread James
My signal strength is always above 0 but when I use -H, it is 0%. Does that mean my signal strength is <0%? Maybe femon should report 0.x%. $ femon FE: Samsung S5H1409 QAM/8VSB Frontend (ATSC) status SCVYL | signal 00b9 | snr 00b9 | ber | unc | FE_HAS_LOCK $ femon -H FE: Sams

Re: [PATCH 2/3] omap3isp: preview: Rename min/max input/output sizes defines

2011-10-25 Thread Sakari Ailus
Hi Laurent, Thanks for the patch. I have a single comment below. On Tue, Oct 18, 2011 at 11:14:56PM +0200, Laurent Pinchart wrote: > The macros that define the minimum/maximum input and output sizes are > defined in seperate files and have no consistent naming. In preparation > for preview engine

Adding PCTV80e support to linuxtv.

2011-10-25 Thread Patrick Dickey
Hello everyone, Since my repository isn't under the linuxtv.org banner, I'm not sure how to create an actual patch or pull request for the code. It needs some cleanup work, but essentially the code works (for the ATSC portion, but possibly not the QAM portion). The repository is located at https

[PATCH][media] bttv: adding Sensoray 611 board to driver.

2011-10-25 Thread sensoray-dev
commit affebd4db94b459f676a14d9bb696c3c2b73643d Author: Dean Anderson Date: Tue Oct 25 15:43:55 2011 -0700 [media] bttv: adding Sensoray 611 board to bttv driver Signed-off-by: Dean Anderson diff --git a/Documentation/video4linux/CARDLIST.bttv b/Documentation/video4linux/CARDLIST.bttv index

KWorld UB435-Q New Model

2011-10-25 Thread Peter Bennett
I purchased a new KWorld UB435-Q USB ATSC Stick from newegg. It is not working. My experience suggests that it is using different chips from the version supported by Linux Media. I downloaded my kernel source and checked it against the latest version in git. All the latest code for this device is

[PATCH][media] saa7134: adding Sensoray boards to saa7134 driver

2011-10-25 Thread sensoray-dev
commit cf5886c3dd2f65c817cb6ca5e7202fa3a3bdc872 Author: Dean Anderson Date: Mon Oct 24 15:46:52 2011 -0700 [media]: saa7134: Adding Sensoray 811 and 911 board models to saa7134 driver Signed-off-by: Dean Anderson diff --git a/Documentation/video4linux/CARDLIST.saa7134 b/Documentation/video4

[no subject]

2011-10-25 Thread sensoray-dev
commit cf5886c3dd2f65c817cb6ca5e7202fa3a3bdc872 Author: Dean Anderson Date: Mon Oct 24 15:46:52 2011 -0700 [media]: saa7134: Adding Sensoray 811 and 911 board models to saa7134 driver Signed-off-by: Dean Anderson diff --git a/Documentation/video4linux/CARDLIST.saa7134 b/Documentation/video4

Re: Starting OMAP3 ISP as module

2011-10-25 Thread Javier Martinez Canillas
On Tue, Oct 25, 2011 at 7:45 PM, Gary Thomas wrote: > To date, I've only been using the OMAP3 ISP + Media Controller Framework > builtin to the kernel.  Now I'd like to try it as a set of modules, but > I can't seem to get it to fire up. > > What the module insert/probe sequence should I use? > An

cron job: media_tree daily build: WARNINGS

2011-10-25 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:Tue Oct 25 19:00:32 CEST 2011 git hash:a63366b935456dd0984f237642f6d4001dcf8017 gcc version: i686-linux-gcc (GC

Starting OMAP3 ISP as module

2011-10-25 Thread Gary Thomas
To date, I've only been using the OMAP3 ISP + Media Controller Framework builtin to the kernel. Now I'd like to try it as a set of modules, but I can't seem to get it to fire up. What the module insert/probe sequence should I use? Any other hints? Thanks --

Re: Display hotplug

2011-10-25 Thread Alex Deucher
On Tue, Oct 25, 2011 at 5:09 AM, James Courtier-Dutton wrote: > Hi, > > Does anyone know when X will support display hotplug? > I have a PC connected via HDMI to a TV. > Unless I turn the TV on first, I have to reboot the PC before it > displays anything on the HDMI TV. It's be supported on all m

Re: Display hotplug

2011-10-25 Thread Steve Kerrison
Hi James, When I plug my laptop's (Toshiba R630, Intel i3 with integrated on-die graphics) HDMI port into a TV, the display manager in Ubuntu is able to detect it and, after a click or two, mirror or extended-desktop to it. So I would say the answer is... it already does. It's more likely that yo

Display hotplug

2011-10-25 Thread James Courtier-Dutton
Hi, Does anyone know when X will support display hotplug? I have a PC connected via HDMI to a TV. Unless I turn the TV on first, I have to reboot the PC before it displays anything on the HDMI TV. Kind Regards James -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the

Re: [PATCH] media: vb2: reset queued list on REQBUFS(0) call

2011-10-25 Thread Pawel Osciak
Hi Angela, On Tue, Oct 25, 2011 at 01:07, Angela Wan wrote: > Hi, Marek >   Why not call vb2_queue_release directly in reqbufs(0) instead of > __vb2_queue_free, which could clear queued_count as well? > vb2_queue_release is used to clean up streaming or fileio in progress, neither of those can b

Re: [PATCH] media: vb2: reset queued list on REQBUFS(0) call

2011-10-25 Thread Pawel Osciak
On Tue, Oct 25, 2011 at 00:59, Marek Szyprowski wrote: > Queued list was not reset on REQBUFS(0) call. This caused enqueuing > a freed buffer to the driver. > > Reported-by: Angela Wan > Signed-off-by: Marek Szyprowski > Signed-off-by: Kyungmin Park > --- >  drivers/media/video/videobuf2-core.c

Re: [PATCH] media: vb2: reset queued list on REQBUFS(0) call

2011-10-25 Thread Angela Wan
Hi, Marek Why not call vb2_queue_release directly in reqbufs(0) instead of __vb2_queue_free, which could clear queued_count as well? Angela Best Regards On Tue, Oct 25, 2011 at 3:59 PM, Marek Szyprowski wrote: > Queued list was not reset on REQBUFS(0) call. This caused enqueuing > a freed buf

[PATCH] media: vb2: reset queued list on REQBUFS(0) call

2011-10-25 Thread Marek Szyprowski
Queued list was not reset on REQBUFS(0) call. This caused enqueuing a freed buffer to the driver. Reported-by: Angela Wan Signed-off-by: Marek Szyprowski Signed-off-by: Kyungmin Park --- drivers/media/video/videobuf2-core.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --gi