Mailing List archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[linux-dvb] Re: help requested for getting out of the problemswith dvb-c and UPC



Yes, but what application gives you errors?

Gerhard Steiner wrote:

We are using (at least me) the latest driver (dvb-20031104) from
http://www.linux-dvb.tv together with vdr-1.2.5.

vdr handles QAM etc. the right way.

Gerhard

What program are you using?
Mplayer and dvbstream override the modulation value with QAM_64

#ifdef NEWSTRUCT
feparams.frequency=freq;
feparams.inversion=INVERSION_OFF;
feparams.u.qam.symbol_rate = srate;
feparams.u.qam.fec_inner = FEC_AUTO;
feparams.u.qam.modulation = QAM_64;
#else
feparams.Frequency=freq;
feparams.Inversion=INVERSION_OFF;
feparams.u.qam.SymbolRate = srate;
feparams.u.qam.FEC_inner = FEC_AUTO;
feparams.u.qam.QAM = QAM_64;
#endif


change the block to the following one may work. Good luck:)

#ifdef NEWSTRUCT
...
feparams.u.qam.modulation = modulation;
#else
...
feparams.u.qam.QAM = modulation;
#endif







--
Info:
To unsubscribe send a mail to ecartis@linuxtv.org with "unsubscribe linux-dvb" as subject.



Home | Main Index | Thread Index