From 0ae5c15bf89a42a879671e2c709ae277c686dc02 Mon Sep 17 00:00:00 2001 From: Edward Hervey Date: Tue, 8 Apr 2014 07:47:15 +0200 Subject: [PATCH] mpegtsmux: Initialize helper mpegts library We now use that library, we need to initialize it so that debug categories (amongst other things) get properly initialized --- gst/mpegtsmux/mpegtsmux.c | 1 + 1 file changed, 1 insertion(+) diff --git a/gst/mpegtsmux/mpegtsmux.c b/gst/mpegtsmux/mpegtsmux.c index 77f9f1c067..23be26d0bb 100644 --- a/gst/mpegtsmux/mpegtsmux.c +++ b/gst/mpegtsmux/mpegtsmux.c @@ -1756,6 +1756,7 @@ mpegtsmux_send_event (GstElement * element, GstEvent * event) static gboolean plugin_init (GstPlugin * plugin) { + gst_mpegts_initialize (); if (!gst_element_register (plugin, "mpegtsmux", GST_RANK_PRIMARY, mpegtsmux_get_type ())) return FALSE;