SkyStar HD2 tv playback runs jerky - Subsystem: Device 1ae4:0003

2012-06-23 Thread walou
I have the same card and exactly the same problem. Did anyone found a solution to that problem pls ? Pls help us. -- 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-

Re: SkyStar HD2 tv playback runs jerky - Subsystem: Device 1ae4:0003

2012-06-23 Thread walou
I have the same card and exactly the same problem. Did u found a solution to that ? Or anyone can help us pls. -- 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-inf

RE: DiBcom adapter problems

2012-06-23 Thread Choi Wing Chan
the patch correct the error about no support system, however, my card still can not scan any channels. [ 2458.524854] set_delivery_system() Using delivery system 13 emulated as if it were a 3 [ 2458.524855] change delivery system on cache to 13 [ 2458.524857] dvbv3_type : delivery_system = 13 [ 24

cron job: media_tree daily build: ERRORS

2012-06-23 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:Sat Jun 23 19:00:20 CEST 2012 git hash:5472d3f17845c4398c6a510b46855820920c2181 gcc version: i686-linux-gcc (GC

Re: [PATCH] dvb-core: Release semaphore on error path dvb_register_device().

2012-06-23 Thread Nikolaus Schulz
CC'ing sta...@kernel.org, this bugfix applies to all kernels >> 2.6.28. The patch should also be tagged accordingly. On Sat, Jun 23, 2012 at 05:29:54PM +0530, santosh nayak wrote: > From: Santosh Nayak > > There is a missing "up_write()" here. Semaphore should be released > before returning err

Re: [RFC/PATCH v3] media: Add stk1160 new driver

2012-06-23 Thread Ezequiel Garcia
On Sat, Jun 23, 2012 at 3:36 PM, Ezequiel Garcia wrote: > This driver adds support for stk1160 usb bridge as used in some > video/audio usb capture devices. > It is a complete rewrite of staging/media/easycap driver and > it's expected as a future replacement. > > Signed-off-by: Ezequiel Garcia >

[PATCH 3/3] keytable: first search table in userdir, then in systemdir

2012-06-23 Thread Gregor Jasny
Signed-off-by: Gregor Jasny --- configure.ac |5 - utils/keytable/Makefile.am |2 ++ utils/keytable/keytable.c | 27 +-- 3 files changed, 27 insertions(+), 7 deletions(-) diff --git a/configure.ac b/configure.ac index 661eb20..a1230b2 100644 -

[PATCH 2/3] keytable: Preinstall keytables relative to sysconfdir

2012-06-23 Thread Gregor Jasny
Signed-off-by: Gregor Jasny --- configure.ac |5 +++-- utils/keytable/Makefile.am |5 ++--- utils/keytable/keytable.c |7 ++- 3 files changed, 7 insertions(+), 10 deletions(-) diff --git a/configure.ac b/configure.ac index 1a12abd..661eb20 100644 --- a/configure.ac

[PATCH 1/3] keytable: Make udev rules dir configurable

2012-06-23 Thread Gregor Jasny
Signed-off-by: Gregor Jasny --- configure.ac |7 +-- utils/keytable/Makefile.am |1 - 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index 8e166b1..1a12abd 100644 --- a/configure.ac +++ b/configure.ac @@ -145,13 +145,16 @@ AC_A

[PATCH 0/3] ir-keytable: Smarter keytable location handling

2012-06-23 Thread Gregor Jasny
Hello, this patchset will improve the keytable location handling of ir-keytable. In controst to the default install location (/etc/rc_keymaps) Debian and Ubuntu installed the shipped keymaps into /lib/udev/rc_keymaps (just like keyboard keymaps are installed into /lib/udev/keymaps). If a keymap ne

Re: stk1160 linux driver

2012-06-23 Thread Ezequiel Garcia
Hi Gianluca, On Sat, Jun 23, 2012 at 10:51 AM, Gianluca Bergamo wrote: > You are using : > > module_usb_driver(stk1160_usb_driver); > > That has been introduced in kernel 3.3 and so in my kernel 3.0.8 it does not > give compiler error (I don't know why) but the probe method is never called. > I'v

Re: stk1160 linux driver

2012-06-23 Thread Ezequiel Garcia
On Sat, Jun 23, 2012 at 11:11 AM, Gianluca Bergamo wrote: > I think you can simply make a patch to make it work also with kernels < 3.3. > Let's talk about this on monday...now I don't have my development pc with me > so I can't see the code and the dbg messages. Okey, let's talk on monday. Rega

Re: stk1160 linux driver

2012-06-23 Thread Ezequiel Garcia
On Sat, Jun 23, 2012 at 10:51 AM, Gianluca Bergamo wrote: > > I've found the problem. Your module is lacking the init and exit module > functions. > You are using : > > module_usb_driver(stk1160_usb_driver); Indeed. > > That has been introduced in kernel 3.3 and so in my kernel 3.0.8 it does not

Re: hdpvr lockup with audio dropouts

2012-06-23 Thread sitten74490
>On 2012-06-09 10:31:36 -0400, sitten74...@mypacks.net wrote: >> > >> >On Thu, Jun 7, 2012 at 7:53 PM, wrote: >> >> Apparently there is a known issue where the HD-PVR cannot handle the loss >> >> of audio signal over SPDIF while recording.  If this happens, the unit >> >> locks up requiring it to

Re: stk1160 linux driver

2012-06-23 Thread Ezequiel Garcia
Hi Gianluca, On Fri, Jun 22, 2012 at 9:00 AM, Gianluca Bergamo wrote: > > I've patched my kernel 3.0.8 and it compiles without problems. > I've compiled it NOT as a module but directly built in in the kernel. > I just patched a vanilla 3.0.8 (taken from stable repository) with stk1160 driver pat

[PATCH] dvb-core: Release semaphore on error path dvb_register_device().

2012-06-23 Thread santosh nayak
From: Santosh Nayak There is a missing "up_write()" here. Semaphore should be released before returning error value. Signed-off-by: Santosh Nayak --- Destination tree "linux-next" drivers/media/dvb/dvb-core/dvbdev.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/driv

Re: Skystar HD2 / mantis status?

2012-06-23 Thread walou
Hi, i have problems with this card too. Im on ubuntu 10.04 with kernel 2.6.35 and im using the last linux-media build. Pictures are constantly saccaded. On vdr 1.7.22 dvb-s works little bit better than dvb-s2 but saccades are still there. And strangely, the signal is always on 0%. Any idea about t

Re: Skystar HD2 / mantis status?

2012-06-23 Thread Bernhard Stegmaier
Hi, I'm also running a stock 3.2 kernel with mythtv and a SkyStar HD2. It is fine for both DVB-S and DVB-S2 (on Astra). Only thing I had to do is to increase lock timeouts quite a bit. Default mythtv values were too small so I got no locks. Regards, Bernhard On 23.06.2012, at 01:54, Andrew Ha

Re: [PATCH] [media] videobuf-dma-contig: restore buffer mapping for uncached bufers

2012-06-23 Thread Hans Verkuil
On Fri June 22 2012 18:53:27 Federico Vaga wrote: > In data venerdì 22 giugno 2012 18:45:31, Hans Verkuil ha scritto: > > On Fri June 22 2012 17:28:04 Federico Vaga wrote: > > > > from commit a8f3c203e19b702fa5e8e83a9b6fb3c5a6d1cce4 > > > > restore the mapping scheme for uncached buffers, > > > > w

Re: [git:v4l-dvb/for_v3.6] [media] radio: Add Sanyo LM7000 tuner driver

2012-06-23 Thread Hans Verkuil
Hi Mauro, You accidentally merged the wrong first version of the lm7000 patch series. These are the correct second version patches: http://patchwork.linuxtv.org/patch/11689/ http://patchwork.linuxtv.org/patch/11690/ http://patchwork.linuxtv.org/patch/11691/ The second version is much simpler an

Re: [PATCH] omap3isp: preview: Add support for non-GRBG Bayer patterns

2012-06-23 Thread Sakari Ailus
Hi Laurent, On Mon, Jun 18, 2012 at 04:30:53PM +0200, Laurent Pinchart wrote: > Rearrange the CFA interpolation coefficients table based on the Bayer > pattern. Modifying the table during streaming isn't supported anymore, > but didn't make sense in the first place anyway. Why not? I could imagin