mpegts: correct a couple of stupid mistakes

This commit is contained in:
Adam Sutton 2013-06-15 15:00:39 +01:00
parent 630a4cc7a4
commit af162a3c15
2 changed files with 2 additions and 2 deletions

View file

@ -94,7 +94,7 @@ dvb_desc_sat_del
memset(&dmc, 0, sizeof(dmc));
dmc.dmc_fe_params.inversion = INVERSION_AUTO;
dmc.dmc_fe_params.frequency = frequency * 10;
dmc.dmc_fe_params.frequency = frequency;
dmc.dmc_fe_orbital_pos = bcdtoint(ptr[4]) * 100 + bcdtoint(ptr[5]);
dmc.dmc_fe_orbital_dir = (ptr[6] & 0x80) ? 'E' : 'W';
dmc.dmc_fe_polarisation = (ptr[6] >> 5) & 0x03;

View file

@ -179,7 +179,7 @@ mpegts_input_stopped_mux
char buf[256];
service_t *s, *t;
mmi->mmi_mux->mm_active = NULL;
LIST_REMOVE(mmi, mmi_mux_link);
LIST_REMOVE(mmi, mmi_active_link);
mi->mi_display_name(mi, buf, sizeof(buf));
tvhtrace("mpegts", "%s - flush subscribers", buf);