DViCo Dual Fusion Express (cx23885) remote control issue

2010-04-15 Thread Daniel O'Connor
Hi, I recently upgraded my Myth box from Ubuntu 8.04 to 9.10 (runs 2.6.31-20-generic). Previously I used the drivers from http://www.itee.uq.edu.au/~chrisp/Linux-DVB/DVICO/ however the card worked out of the box (once I got the later firmware) and so I presumed they had been merged. However

Re: Kworld Plus TV Hybrid PCI (DVB-T 210SE)

2010-04-15 Thread 0123peter
on Thu, 15 Apr 2010 01:32 pm in the Usenet newsgroup gmane.linux.drivers.video-input-infrastructure hermann pitton wrote: Hi, to be honest, there is a little too much delay on those reports. I have been very slow, sorry. did not even notice a problem with Trent's prior patch. The

Re: cx18: missing audio for analog recordings

2010-04-15 Thread Mark Lord
On 15/04/10 01:16 AM, Mark Lord wrote: for now, I've added lower level spinlock protection onto all register writes, .. As you expected, this doesn't seem to have cured anything obvious. :) I had Mythtv wakeup/record/powerdown several times overnight, and it still required fallbacks for

Re: tm6000: firmware

2010-04-15 Thread Stefan Ringel
Am 14.04.2010 23:06, schrieb Mauro Carvalho Chehab: Em 14-04-2010 11:41, Stefan Ringel escreveu: Am 14.04.2010 19:44, schrieb Mauro Carvalho Chehab: Hi Stefan, Em 14-04-2010 09:26, Stefan Ringel escreveu: Hi Mauro, Can you added these three firmwares? The third is

Re: tm6000: firmware

2010-04-15 Thread Mauro Carvalho Chehab
Em 15-04-2010 07:37, Stefan Ringel escreveu: Am 14.04.2010 23:06, schrieb Mauro Carvalho Chehab: Em 14-04-2010 11:41, Stefan Ringel escreveu: Am 14.04.2010 19:44, schrieb Mauro Carvalho Chehab: Hi Stefan, Em 14-04-2010 09:26, Stefan Ringel escreveu: Hi Mauro, Can you

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

2010-04-15 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:Thu Apr 15 19:00:20 CEST 2010 path:http://www.linuxtv.org/hg/v4l-dvb changeset: 14571:a95a93b29a94 git master:

Re: [PATCH] Add FE_CAN_PSK_8 to allow apps to identify PSK_8 capable DVB devices

2010-04-15 Thread Manu Abraham
Hi Klaus, On Sun, Apr 11, 2010 at 1:12 PM, Klaus Schmidinger klaus.schmidin...@tvdr.de wrote: The enum fe_caps provides flags that allow an application to detect whether a device is capable of handling various modulation types etc. A flag for detecting PSK_8, however, is missing. This patch

[PATCH 0/8] Series short description

2010-04-15 Thread David Härdeman
The following series implements the suggested change to ir-core to use a 1:31 struct for pulse/space durations, adds two new raw decoders, converts two users of ir-functions to plain ir-core and fixes a few small bugs in ir-core. --- David Härdeman (8): ir-core: change duration to be coded

[PATCH 1/8] ir-core: change duration to be coded as a u32 integer

2010-04-15 Thread David Härdeman
This patch implements the agreed upon 1:31 integer encoded pulse/duration struct for ir-core raw decoders. All decoders have been tested after the change. Comments are welcome. Signed-off-by: David Härdeman da...@hardeman.nu --- drivers/media/IR/ir-core-priv.h | 49

[PATCH 2/8] ir-core: Add JVC support to ir-core

2010-04-15 Thread David Härdeman
This patch adds a JVC decoder to ir-core. Signed-off-by: David Härdeman da...@hardeman.nu --- drivers/media/IR/Kconfig |9 + drivers/media/IR/Makefile |1 drivers/media/IR/ir-core-priv.h |7 + drivers/media/IR/ir-jvc-decoder.c | 320

[PATCH 3/8] ir-core: Add Sony support to ir-core

2010-04-15 Thread David Härdeman
This patch adds a Sony12/15/20 decoder to ir-core. Signed-off-by: David Härdeman da...@hardeman.nu --- drivers/media/IR/Kconfig |9 + drivers/media/IR/Makefile |1 drivers/media/IR/ir-core-priv.h|7 + drivers/media/IR/ir-raw-event.c|1

[PATCH 4/8] ir-core: remove ir-functions usage from dm1105

2010-04-15 Thread David Härdeman
Convert drivers/media/dvb/dm1105/dm1105.c to not rely on ir-functions.c. Signed-off-by: David Härdeman da...@hardeman.nu --- 0 files changed, 0 insertions(+), 0 deletions(-) diff --git a/drivers/media/dvb/dm1105/dm1105.c b/drivers/media/dvb/dm1105/dm1105.c index 333d7b1..89f1eca 100644 ---

[PATCH 5/8] ir-core: convert mantis from ir-functions.c

2010-04-15 Thread David Härdeman
Convert drivers/media/dvb/mantis/mantis_input.c to not use ir-functions.c (The driver is anyway not complete enough to actually use the subsystem yet). Signed-off-by: David Härdeman da...@hardeman.nu --- 0 files changed, 0 insertions(+), 0 deletions(-) diff --git

[PATCH 6/8] ir-core: fix double spinlock init in drivers/media/IR/rc-map.c

2010-04-15 Thread David Härdeman
Fix a double initialization of the same spinlock in drivers/media/IR/rc-map.c. Signed-off-by: David Härdeman da...@hardeman.nu --- drivers/media/IR/ir-sysfs.c |2 -- drivers/media/IR/rc-map.c |5 - 2 files changed, 0 insertions(+), 7 deletions(-) diff --git

[PATCH 7/8] ir-core: fix table resize during keymap init

2010-04-15 Thread David Härdeman
drivers/media/IR/ir-keytable.c would alloc a suitably sized keymap table only to have it resized as it is populated with the initial keymap. Signed-off-by: David Härdeman da...@hardeman.nu --- drivers/media/IR/ir-keytable.c | 10 ++ 1 files changed, 6 insertions(+), 4 deletions(-)

Re: [PATCH 0/8] Series short description

2010-04-15 Thread David Härdeman
On Thu, Apr 15, 2010 at 11:45:55PM +0200, David Härdeman wrote: The following series implements the suggested change to ir-core to use a 1:31 struct for pulse/space durations, adds two new raw decoders, converts two users of ir-functions to plain ir-core and fixes a few small bugs in ir-core.

s2255drv: V4L2_MODE_HIGHQUALITY correction

2010-04-15 Thread sensoray-dev
# HG changeset patch # User Dean Anderson linux-...@sensoray.com # Date 1271371256 25200 # Node ID f12b3074bb02dbb9b9d5af3aa816bd53e6b61dd1 # Parent bffdebcb994ce8c7e493524087f601f7f1134f09 s2255drv: fix for V4L2_MODE_HIGHQUALITY From: Dean Anderson linux-...@sensoray.com V4L2 high quality mode

Re: [PATCH 5/8] ir-core: convert mantis from ir-functions.c

2010-04-15 Thread Manu Abraham
On Fri, Apr 16, 2010 at 1:46 AM, David Härdeman da...@hardeman.nu wrote: Convert drivers/media/dvb/mantis/mantis_input.c to not use ir-functions.c (The driver is anyway not complete enough to actually use the subsystem yet). Huh ? I don't follow what you imply here .. -- To unsubscribe from

s2255drv: V4L2_MODE_HIGHQUALITY fix

2010-04-15 Thread sensoray-dev
# HG changeset patch # User Dean Anderson linux-...@sensoray.com # Date 1271371685 25200 # Node ID fae20d178e2cc96d75a43c50e0f84140022091a3 # Parent f12b3074bb02dbb9b9d5af3aa816bd53e6b61dd1 s2255drv: V4L2 mode high quality fix From: Dean Anderson linux-...@sensoray.com fix for last patch in

Re: Kworld Plus TV Hybrid PCI (DVB-T 210SE)

2010-04-15 Thread hermann pitton
Hi Peter, Am Donnerstag, den 15.04.2010, 23:30 +1000 schrieb 0123pe...@gmail.com: on Thu, 15 Apr 2010 01:32 pm in the Usenet newsgroup gmane.linux.drivers.video-input-infrastructure hermann pitton wrote: Hi, to be honest, there is a little too much delay on those reports. I have

[RFC] saa7134 with many MPEG devices

2010-04-15 Thread Dmitri Belimov
Hi All Now saa7134 can work only with one MPEG device. For our new TV card need support two or many. I think we can rework this part. Rework struct saa7134_mpeg_ops as duble linked list add pointers to next and previose mops pointer. Add special function for call this devices. What you thinbk