diff --git a/HISTORY b/HISTORY index e2b5cd0d..e3438278 100644 --- a/HISTORY +++ b/HISTORY @@ -770,3 +770,5 @@ Video Disk Recorder Revision History the progress display is not shown; mode display is shown after progress display is closed; pressing "Ok" while the mode display is on brings up the progress display; no more unnecessary display of "normal play mode". +- Supplying the new frontend parameter 'Inversion' (currently it is always + set to INVERSION_AUTO, which should work with all channels on Astra). diff --git a/dvbapi.c b/dvbapi.c index 1d905de0..d7b4ebfb 100644 --- a/dvbapi.c +++ b/dvbapi.c @@ -7,7 +7,7 @@ * DVD support initially written by Andreas Schultz * based on dvdplayer-0.5 by Matjaz Thaler * - * $Id: dvbapi.c 1.126 2001/09/21 14:14:28 kls Exp $ + * $Id: dvbapi.c 1.127 2001/09/22 09:24:59 kls Exp $ */ //#define DVDDEBUG 1 @@ -3252,6 +3252,7 @@ eSetChannelResult cDvbApi::SetChannel(int ChannelNumber, int FrequencyMHz, char FrontendParameters Frontend; Frontend.Frequency = freq * 1000UL; + Frontend.Inversion = INVERSION_AUTO; Frontend.u.qpsk.SymbolRate = Srate * 1000UL; Frontend.u.qpsk.FEC_inner = FEC_AUTO; @@ -3298,6 +3299,7 @@ eSetChannelResult cDvbApi::SetChannel(int ChannelNumber, int FrequencyMHz, char FrontendParameters Frontend; Frontend.Frequency = FrequencyMHz * 1000000UL; + Frontend.Inversion = INVERSION_AUTO; Frontend.u.qam.SymbolRate = Srate * 1000UL; Frontend.u.qam.FEC_inner = FEC_AUTO; Frontend.u.qam.QAM = QAM_64;