Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
satip client: do not set auto modulation, fixes #3821
  • Loading branch information
perexg committed May 24, 2016
1 parent b7775e2 commit afae049
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/input/mpegts/satip/satip_rtsp.c
Expand Up @@ -164,7 +164,8 @@ satip_rtsp_setup( http_client_t *hc, int src, int fe,
satip_rtsp_add_val("sr", buf, dmc->u.dmc_fe_qpsk.symbol_rate);
ADD(dmc_fe_delsys, msys, "dvbs");
if (dmc->dmc_fe_modulation != DVB_MOD_NONE &&
dmc->dmc_fe_modulation != DVB_MOD_AUTO)
dmc->dmc_fe_modulation != DVB_MOD_AUTO &&
dmc->dmc_fe_modulation != DVB_MOD_QAM_AUTO)
ADD(dmc_fe_modulation, mtype, "qpsk");
ADD(u.dmc_fe_qpsk.polarisation, pol, "h" );
if (dmc->u.dmc_fe_qpsk.fec_inner != DVB_FEC_NONE &&
Expand All @@ -186,7 +187,10 @@ satip_rtsp_setup( http_client_t *hc, int src, int fe,
satip_rtsp_add_val("freq", buf, dmc->dmc_fe_freq / 1000);
satip_rtsp_add_val("sr", buf, dmc->u.dmc_fe_qam.symbol_rate);
ADD(dmc_fe_delsys, msys, "dvbc");
ADD(dmc_fe_modulation, mtype, "64qam");
if (dmc->dmc_fe_modulation != DVB_MOD_AUTO &&
dmc->dmc_fe_modulation != DVB_MOD_NONE &&
dmc->dmc_fe_modulation != DVB_MOD_QAM_AUTO)
ADD(dmc_fe_modulation, mtype, "64qam");
/* missing plp */
if (dmc->u.dmc_fe_qam.fec_inner != DVB_FEC_NONE &&
dmc->u.dmc_fe_qam.fec_inner != DVB_FEC_AUTO)
Expand Down

0 comments on commit afae049

Please sign in to comment.