Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
mpegts: show pids for complete/incomplete tables, move scan needs mor…
…e time msg to trace
  • Loading branch information
perexg committed Apr 9, 2015
1 parent e138492 commit 2a792c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/input/mpegts/mpegts_mux.c
Expand Up @@ -913,7 +913,7 @@ mpegts_mux_scan_done ( mpegts_mux_t *mm, const char *buf, int res )
s = "complete";
else if (mt->mt_count)
s = "incomplete";
tvhdebug("mpegts", "%s - %s %s", buf, mt->mt_name, s);
tvhdebug("mpegts", "%s - %04X (%d) %s %s", buf, mt->mt_pid, mt->mt_pid, mt->mt_name, s);
}
}
pthread_mutex_unlock(&mm->mm_tables_lock);
Expand Down Expand Up @@ -972,7 +972,7 @@ mpegts_mux_scan_timeout ( void *aux )

/* Pending tables (another 20s or 30s - bit arbitrary) */
} else if (q) {
tvhinfo("mpegts", "%s - scan needs more time", buf);
tvhtrace("mpegts", "%s - scan needs more time", buf);
gtimer_arm(&mm->mm_scan_timeout, mpegts_mux_scan_timeout, mm, w ? 30 : 20);
return;

Expand Down

0 comments on commit 2a792c4

Please sign in to comment.