Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
mpegts: add 'no fastswitch' log
  • Loading branch information
perexg committed Dec 12, 2016
1 parent eb9ad3c commit ca4ac74
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/input/mpegts/mpegts_table.c
Expand Up @@ -65,7 +65,10 @@ mpegts_table_fastswitch ( mpegts_mux_t *mm, mpegts_table_t *mtm )
LIST_FOREACH(mt, &mm->mm_tables, mt_link) {
if (!(mt->mt_flags & MT_QUICKREQ) && !mt->mt_working)
continue;
if(!mt->mt_complete || mt->mt_working) {
if (!mt->mt_complete || mt->mt_working) {
tvhtrace(LS_MPEGTS, "table: mux %p no fastswitch %s %02X/%02X (%d) pid %04X (%d)",
mm, mt->mt_name, mt->mt_table, mt->mt_mask, mt->mt_table,
mt->mt_pid, mt->mt_pid);
pthread_mutex_unlock(&mm->mm_tables_lock);
return;
}
Expand Down

0 comments on commit ca4ac74

Please sign in to comment.