Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
SAT>IP client: fix the force grace timeout for slaves
  • Loading branch information
perexg committed May 12, 2015
1 parent cd8fe91 commit 477feab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/input/mpegts/satip/satip_frontend.c
Expand Up @@ -377,7 +377,7 @@ satip_frontend_get_grace ( mpegts_input_t *mi, mpegts_mux_t *mm )
{
satip_frontend_t *lfe = (satip_frontend_t*)mi;
int r = 5;
if (lfe->sf_positions)
if (lfe->sf_positions || lfe->sf_master)
r = MIN(60, MAX(r, satip_satconf_get_grace(lfe, mm) ?: 10));
return r;
}
Expand Down

0 comments on commit 477feab

Please sign in to comment.