summaryrefslogtreecommitdiffstats
path: root/demux/timeline.c
diff options
context:
space:
mode:
Diffstat (limited to 'demux/timeline.c')
-rw-r--r--demux/timeline.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/demux/timeline.c b/demux/timeline.c
index c53170b623..c44f67b166 100644
--- a/demux/timeline.c
+++ b/demux/timeline.c
@@ -34,9 +34,9 @@ void timeline_destroy(struct timeline *tl)
for (int n = 0; n < tl->num_sources; n++) {
struct demuxer *d = tl->sources[n];
if (d != tl->demuxer && d != tl->track_layout)
- free_demuxer_and_stream(d);
+ demux_free(d);
}
if (tl->track_layout && tl->track_layout != tl->demuxer)
- free_demuxer_and_stream(tl->track_layout);
+ demux_free(tl->track_layout);
talloc_free(tl);
}