On 07.12.2008 00:34, Rolf Ahrenberg wrote:
On Sat, 6 Dec 2008, Klaus Schmidinger wrote:
If you don't want to patch the driver, you can change the line case FE_QPSK: frontendType = (frontendInfo.caps & FE_CAN_2ND_GEN_MODULATION) ? SYS_DVBS2 : SYS_DVBS; break; in dvbdevice.c to avoid FE_CAN_2ND_GEN_MODULATION. Either set frontendType permanently to SYS_DVBS or SYS_DVBS2, depending on what you have.
Howabout just adding a FE_CAN_2ND_GEN_MODULATION define as a temporary workaroung into dvbdevice.c? It shouldn't interfere with the frontend capability enumeration and you'd have to patch only if you happen to have DVB-S2 hardware. I'm just guessing, but only a small minority of VDR users are having S2 capable hardware nowadays...
- #define FE_CAN_2ND_GEN_MODULATION 0x10000000
Sure, no problem.
Klaus