We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c774805 commit c8b2987Copy full SHA for c8b2987
lib/upipe-ts/upipe_ts_demux.c
@@ -2796,6 +2796,14 @@ static void upipe_ts_demux_update_tdttot(struct upipe *upipe)
2796
UPROBE_LOG_VERBOSE, "totd"));
2797
if (unlikely(upipe_ts_demux->totd == NULL))
2798
upipe_throw_fatal(upipe, UBASE_ERR_ALLOC);
2799
+
2800
+ int ret = upipe_void_spawn_output(
2801
+ upipe_ts_demux->totd, ts_demux_mgr->null_mgr,
2802
+ uprobe_pfx_alloc(
2803
+ uprobe_use(&upipe_ts_demux->proxy_probe), UPROBE_LOG_VERBOSE,
2804
+ "totd null"));
2805
+ if (unlikely(!ubase_check(ret)))
2806
+ upipe_throw_fatal(upipe, UBASE_ERR_ALLOC);
2807
}
2808
2809
/** @internal @This builds the output flow def.
0 commit comments