]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
dvbpsi: remove the 8PSK/DVB-S2 hack for 13.0E, fixes #4357
authorJaroslav Kysela <perex@perex.cz>
Sun, 7 May 2017 07:13:05 +0000 (09:13 +0200)
committerJaroslav Kysela <perex@perex.cz>
Fri, 12 May 2017 19:43:59 +0000 (21:43 +0200)
src/input/mpegts/dvb_psi.c

index 37ea6bb2509d46df3a3f81f764595ac5e8244995..8d61585422a8e970adf333679257f4aa71dcf349 100644 (file)
@@ -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) {