From ec3a56da749180922fbbcb49a949f6ca6c217f7c Mon Sep 17 00:00:00 2001 From: Jaroslav Kysela Date: Sun, 7 May 2017 09:13:05 +0200 Subject: [PATCH] dvbpsi: remove the 8PSK/DVB-S2 hack for 13.0E, fixes #4357 --- src/input/mpegts/dvb_psi.c | 2 ++ 1 file changed, 2 insertions(+) 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) { -- 2.47.3