Actions
Bug #2674
closedAllow fastscan bouquets to create muxes on other networks.
Status:
Fixed
Priority:
Normal
Assignee:
-
Category:
-
Target version:
-
Start date:
2015-02-16
Due date:
% Done:
100%
Estimated time:
(Total: 0:00 h)
Found in version:
master
Affected Versions:
Description
Hi,
It seems that only muxes on the same satellite position are added
although the fastscan bouquet contains muxes on other satellite positions ass well.
If I add the hack below (dvb_psi.c r215), the muxes are added (but I'm sure that this is not the correct place for this hack)
+ LIST_FOREACH(mn, &mpegts_network_all, mn_global_link) + { + if (mn->mn_satpos == dmc.u.dmc_fe_qpsk.orbital_pos) + { + mm->mm_network = mn; //hack + return mn->mn_create_mux(mm, onid, tsid, &dmc, force); + } + } + return mm->mm_network->mn_create_mux(mm, onid, tsid, &dmc, force);
Actions