]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
mpegts: add 'no fastswitch' log
authorJaroslav Kysela <perex@perex.cz>
Mon, 12 Dec 2016 16:31:54 +0000 (17:31 +0100)
committerJaroslav Kysela <perex@perex.cz>
Mon, 12 Dec 2016 16:31:54 +0000 (17:31 +0100)
src/input/mpegts/mpegts_table.c

index 6db50e695a2f74ba7a60412919d98f7ddf20c149..21314991508e779d0eebb2861c67128491865344 100644 (file)
@@ -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;
     }