From: Jaroslav Kysela Date: Sun, 7 May 2017 07:13:05 +0000 (+0200) Subject: dvbpsi: remove the 8PSK/DVB-S2 hack for 13.0E, fixes #4357 X-Git-Tag: v4.2.2~25 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=39724f409f9000af15360ef506b858b2d6c78cd6;p=thirdparty%2Ftvheadend.git dvbpsi: remove the 8PSK/DVB-S2 hack for 13.0E, fixes #4357 --- diff --git a/src/input/mpegts/dvb_psi.c b/src/input/mpegts/dvb_psi.c index 37ea6bb25..8d6158542 100644 --- a/src/input/mpegts/dvb_psi.c +++ b/src/input/mpegts/dvb_psi.c @@ -247,11 +247,13 @@ dvb_desc_sat_del DVB_ROLLOFF_35, DVB_ROLLOFF_25, DVB_ROLLOFF_20, DVB_ROLLOFF_AUTO }; dmc.dmc_fe_modulation = mtab[ptr[6] & 0x3]; +#if 0 if (dmc.dmc_fe_modulation != DVB_MOD_NONE && dmc.dmc_fe_modulation != DVB_MOD_QPSK) /* standard DVB-S allows only QPSK */ /* on 13.0E, there are (ptr[6] & 4) == 0 muxes with 8PSK and DVB-S2 */ dmc.dmc_fe_delsys = DVB_SYS_DVBS2; +#endif dmc.dmc_fe_rolloff = rtab[(ptr[6] >> 3) & 0x3]; if (dmc.dmc_fe_delsys == DVB_SYS_DVBS && dmc.dmc_fe_rolloff != DVB_ROLLOFF_35) {