Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
mpegts: linked inputs - another bugfix
  • Loading branch information
perexg committed May 27, 2015
1 parent 0b9cbdb commit f63da9d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/input/mpegts/mpegts_mux.c
Expand Up @@ -136,7 +136,7 @@ mpegts_mux_subscribe_keep
mi->mi_linked = NULL;
tvhtrace("mpegts", "subscribe keep for '%s' (%p)", mi->mi_name, mm);
r = mpegts_mux_subscribe(mm, mi, "keep", SUBSCRIPTION_PRIO_KEEP,
SUBSCRIPTION_RESTART | SUBSCRIPTION_MINIMAL);
SUBSCRIPTION_ONESHOT | SUBSCRIPTION_MINIMAL);
mi->mi_linked = s;
return r;
}
Expand Down
2 changes: 1 addition & 1 deletion src/input/mpegts/mpegts_network_scan.c
Expand Up @@ -47,7 +47,7 @@ mpegts_network_scan_timer_cb ( void *p )
/* Process Q */
for (mm = TAILQ_FIRST(&mn->mn_scan_pend); mm != NULL; mm = nxt) {
nxt = TAILQ_NEXT(mm, mm_scan_link);
assert(mm->mm_scan_state == MM_SCAN_STATE_PEND);
assert(mm->mm_scan_state == MM_SCAN_STATE_PEND || mm->mm_scan_state == MM_SCAN_STATE_ACTIVE);

/* Don't try to subscribe already tuned muxes */
if (mm->mm_active) continue;
Expand Down

0 comments on commit f63da9d

Please sign in to comment.