Re: [linux-media] stb0899: no lock on dvb-s2 transponders in SCR environment

2013-04-27 Thread Klaus Schmidinger
On 27.04.2013 14:14, Reinhard Nissl wrote: Hi, my stb0899 card works properly on dvb-s and dvb-s2 transponders when using a direct port on my sat multiswitch. When using a SCR port on that multiswitch and changing VDR's config files accordingly, it only locks on dvb-s transponders. A SCR con

Re: [linux-media] Re: DVB: EOPNOTSUPP vs. ENOTTY in ioctl(FE_READ_UNCORRECTED_BLOCKS)

2013-02-14 Thread Klaus Schmidinger
On 14.02.2013 20:50, Manu Abraham wrote: On Fri, Feb 15, 2013 at 12:46 AM, Antti Palosaari wrote: On 02/14/2013 08:05 PM, Manu Abraham wrote: On Thu, Feb 14, 2013 at 9:22 PM, Antti Palosaari wrote: On 02/14/2013 03:12 PM, Klaus Schmidinger wrote: In VDR I use an ioctl() call with

DVB: EOPNOTSUPP vs. ENOTTY in ioctl(FE_READ_UNCORRECTED_BLOCKS)

2013-02-14 Thread Klaus Schmidinger
In VDR I use an ioctl() call with FE_READ_UNCORRECTED_BLOCKS on a device (using stb0899). After this call I check 'errno' for EOPNOTSUPP to determine whether this device supports this call. This used to work just fine, until a few months ago I noticed that my devices using stb0899 didn't display

Re: [linux-media] Re: [linux-media] Re: [PATCH RFCv10 00/15] DVB QoS statistics API

2013-01-17 Thread Klaus Schmidinger
On 17.01.2013 18:37, Klaus Schmidinger wrote: On 17.01.2013 18:22, Antti Palosaari wrote: On 01/17/2013 07:16 PM, Manu Abraham wrote: On Thu, Jan 17, 2013 at 3:03 PM, Antti Palosaari wrote: On 01/17/2013 05:40 AM, Manu Abraham wrote: MB86A20 is not the only demodulator driver with the Linux

Re: [linux-media] Re: [PATCH RFCv10 00/15] DVB QoS statistics API

2013-01-17 Thread Klaus Schmidinger
On 17.01.2013 18:22, Antti Palosaari wrote: On 01/17/2013 07:16 PM, Manu Abraham wrote: On Thu, Jan 17, 2013 at 3:03 PM, Antti Palosaari wrote: On 01/17/2013 05:40 AM, Manu Abraham wrote: MB86A20 is not the only demodulator driver with the Linux DVB. And not all devices can output in dB scale

Re: [linux-media] Re: [PATCH RFCv9 1/4] dvb: Add DVBv5 stats properties for Quality of Service

2013-01-13 Thread Klaus Schmidinger
On 09.01.2013 12:02, Simon Farnsworth wrote: On Tuesday 8 January 2013 18:28:53 Devin Heitmueller wrote: On Tue, Jan 8, 2013 at 6:18 PM, Simon Farnsworth wrote: The wireless folk use dBm (reference point 1 milliwatt), as that's the reference point used in the 802.11 standard. Perhaps we need

Re: [linux-media] Re: [PATCH RFCv3] dvb: Add DVBv5 properties for quality parameters

2013-01-03 Thread Klaus Schmidinger
On 03.01.2013 14:20, Mauro Carvalho Chehab wrote: Em Wed, 2 Jan 2013 00:38:50 +0530 Manu Abraham escreveu: On Tue, Jan 1, 2013 at 10:59 PM, Mauro Carvalho Chehab wrote: Em Tue, 1 Jan 2013 22:18:49 +0530 Manu Abraham escreveu: On Tue, Jan 1, 2013 at 8:30 PM, Mauro Carvalho Chehab wrote:

Re: [linux-media] Re: [PATCH RFCv3] dvb: Add DVBv5 properties for quality parameters

2012-12-29 Thread Klaus Schmidinger
On 29.12.2012 17:36, Devin Heitmueller wrote: On Fri, Dec 28, 2012 at 6:56 PM, Mauro Carvalho Chehab wrote: The DVBv3 quality parameters are limited on several ways: - Doesn't provide any way to indicate the used measure; - Userspace need to guess how to calculate the measure;

Re: [linux-media] [PATCH RFCv3] dvb: Add DVBv5 properties for quality parameters

2012-12-29 Thread Klaus Schmidinger
On 29.12.2012 00:56, Mauro Carvalho Chehab wrote: The DVBv3 quality parameters are limited on several ways: - Doesn't provide any way to indicate the used measure; - Userspace need to guess how to calculate the measure; - Only a limited set of stats are supported;

[PATCH] DVB: stb0899: speed up getting BER values

2012-06-02 Thread Klaus Schmidinger
attached patch reduces this to a single reading, with no more pausing. I didn't observe any negative side effects of this change. Signed-off-by: Klaus Schmidinger Klaus --- a/linux/drivers/media/dvb/frontends/stb0899_drv.c 2012-04-23 15:10:35.994008188 +0200 +++ a/linux/drivers/media/dvb/fron

Re: [linux-media] [PATCH 1/2] stb0899: set FE_HAS_SIGNAL flag in read_status

2012-02-29 Thread Klaus Schmidinger
*status |= FE_HAS_SIGNAL | FE_HAS_CARRIER; dprintk(state->verbose, FE_DEBUG, 1, "UWP & CSM Lock ! ---> DVB-S2 FE_HAS_CARRIER"); Acked-by: Klaus Schmidinger -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body

Re: [linux-media] [PATCH 2/2] stb0899: fixed reading of IF_AGC_GAIN register

2012-02-29 Thread Klaus Schmidinger
val = STB0899_GETFIELD(IF_AGC_GAIN, reg); *strength = stb0899_table_lookup(stb0899_dvbs2rf_tab, ARRAY_SIZE(stb0899_dvbs2rf_tab) - 1, val); Acked-by: Klaus Schmidinger -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majord...@vg

Re: [linux-media] Re: [PATCH] stb0899: fix the limits for signal strength values

2012-01-24 Thread Klaus Schmidinger
n it. Em 19-01-2012 15:39, Klaus Schmidinger escreveu: stb0899_read_signal_strength() adds an offset to the result of the table lookup. That offset must correspond to the lowest value in the lookup table, to make sure the result doesn't get below 0, which would mean a "very high"

[PATCH] stb0899: fix the limits for signal strength values

2012-01-19 Thread Klaus Schmidinger
x27; and 'snr' need to be initialized to 0 to make sure they have a defined result in case there is no "internal->lock". Signed-off-by: Klaus Schmidinger --- a/linux/drivers/media/dvb/frontends/stb0899_drv.c 2011-06-11 16:54:32.0 +0200 +++ b/linux/drivers/media

Re: [RFCv2 PATCH 10/12] av7110: replace audio.h, video.h and osd.h by av7110.h.

2011-11-25 Thread Klaus Schmidinger
ppose this! You may introduce new APIs as you like, but don't break the existing ones that have worked for many years. Nacked-by: Klaus Schmidinger Klaus -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majord...@vger.kernel.org

Re: [linux-media] Re: [PATCH 05/13] [media] dvb/audio.h: Remove definition for AUDIO_GET_PTS

2011-06-10 Thread Klaus Schmidinger
On 10.06.2011 15:18, Devin Heitmueller wrote: On Thu, Jun 9, 2011 at 9:07 AM, Andreas Oberritter wrote: ... implemented in *kernel* drivers for several generations of the dreambox. Well, let's see the source code to the drivers in question, and from there we can make some decisions on how to

Re: [linux-media] How to handle independent CA devices

2010-09-16 Thread Klaus Schmidinger
On 09.09.2010 23:52, rjkm wrote: > Hi, > > cards like the Digital Devices DuoFlex S2, cineS2 and upcoming > hardware (octuple, network, etc.) have independent CA devices. > This means that instead of having the stream routed from the frontend > through the CI and only then into memory a stream c

Re: [hg:v4l-dvb] Add FE_CAN_PSK_8 to allow apps to identify PSK_8 capable DVB devices

2010-05-10 Thread Klaus Schmidinger
On 10.05.2010 06:40, Patch from Klaus Schmidinger wrote: > The patch number 14692 was added via Douglas Schilling Landgraf > > to http://linuxtv.org/hg/v4l-dvb master development tree. > > Kernel patches in this development tree may be modified to be backward > compatible

Re: [PATCH] Add FE_CAN_TURBO_FEC (was: Add FE_CAN_PSK_8 to allow apps to identify PSK_8 capable DVB devices)

2010-05-02 Thread Klaus Schmidinger
is no flag in the SI data that would indicate that a transponder uses "turbo fec", VDR will assume that all 8psk transponders on DVB-S use "turbo fec". Signed-off-by: Klaus Schmidinger Tested-by: Derek Kelly --- linux/include/linux/dvb/frontend.h.001 2010-04-05 16:13:08.000

Re: [linux-media] Re: [git:v4l-dvb/master] V4L/DVB: Add FE_CAN_PSK_8 to allow apps to identify PSK_8 capable DVB devices

2010-04-21 Thread Klaus Schmidinger
On 04/21/10 09:58, Andreas Oberritter wrote: > Hello Mauro, > > Mauro Carvalho Chehab wrote: >> Subject: V4L/DVB: Add FE_CAN_PSK_8 to allow apps to identify PSK_8 capable >> DVB devices >> Author: Klaus Schmidinger >> Date:Sun Apr 11 06:12:52 2010 -0300

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

2010-04-18 Thread Klaus Schmidinger
On 18.04.2010 16:51, Manu Abraham wrote: > On Sun, Apr 18, 2010 at 5:19 PM, Klaus Schmidinger > wrote: >> On 15.04.2010 22:21, Manu Abraham wrote: >>> Hi Klaus, >>> >>> On Sun, Apr 11, 2010 at 1:12 PM, Klaus Schmidinger >>> wrote: >>>>

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

2010-04-18 Thread Klaus Schmidinger
On 15.04.2010 22:21, Manu Abraham wrote: > Hi Klaus, > > On Sun, Apr 11, 2010 at 1:12 PM, Klaus Schmidinger > wrote: >> The enum fe_caps provides flags that allow an application to detect >> whether a device is capable of handling various modulation types etc. >&

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

2010-04-11 Thread Klaus Schmidinger
(apparently the only ones with PSK_8). Only the gp8psk-fe.c has been explicitly tested, though. Signed-off-by: Klaus Schmidinger Tested-by: Derek Kelly --- linux/include/linux/dvb/frontend.h.001 2010-04-05 16:13:08.0 +0200 +++ linux/include/linux/dvb/frontend.h 2010-04-10 12:08

[DVB] Sticky module dvb_pll

2009-08-23 Thread Klaus Schmidinger
When I use the latest driver from http://linuxtv.org/hg/v4l-dvb (4d727d223236) and load all the modules I need, as in /sbin/modprobe firmware_class /sbin/modprobe i2c-core /sbin/insmod ./v4l1-compat.ko /sbin/insmod ./cx24113.ko /sbin/insmod ./s5h1420.ko /sbin/insmod ./videobuf-core.ko /sbin/insmod

Re: [linux-media] [DVB] compiling av7110 firmware into driver fails

2009-05-21 Thread Klaus Schmidinger
On 05/18/09 22:33, Klaus Schmidinger wrote: > I always compile the current av7110 firmware into my driver, > so that I can have different driver/firmware versions to test > with. This used to work by doing > > CONFIG_DVB_AV7110_FIRMWARE=y > CONFIG_DVB_AV7110_FIRMWARE_FILE="

[DVB] compiling av7110 firmware into driver fails

2009-05-18 Thread Klaus Schmidinger
I always compile the current av7110 firmware into my driver, so that I can have different driver/firmware versions to test with. This used to work by doing CONFIG_DVB_AV7110_FIRMWARE=y CONFIG_DVB_AV7110_FIRMWARE_FILE="/home/kls/vdr/firmware/FW.current" in the v4l/.config file (where FW.current is

Re: [linux-media] Re: [linux-dvb] Cross-posting linux-media, linux-dvb etc

2009-01-18 Thread Klaus Schmidinger
On 17.01.2009 06:51, user.vdr wrote: > I think it's a lame idea to clump all media related stuff into one > mailing list from separate ml's because 1) it's too general of a topic > and 2) those ml's already had a lot of activity on their own. The > idea of sifting through tons of posts of no inter