summaryrefslogtreecommitdiffstats
path: root/gst/mpegdemux/flumpegdemux.c
diff options
context:
space:
mode:
authorZaheer Abbas Merali <zaheerabbas@merali.org>2008-10-08 15:25:24 +0000
committerZaheer Abbas Merali <zaheerabbas@merali.org>2008-10-08 15:25:24 +0000
commitf6aeac78682cf50372612b368747eabc008d13a8 (patch)
treef90b0f951fc117c647becf5e45ff22fe61985f95 /gst/mpegdemux/flumpegdemux.c
parent8aea40af0b39499ef68524e932c8ebe4b12b404f (diff)
downloadgst-plugins-bad-f6aeac78682cf50372612b368747eabc008d13a8.tar.gz
gst-plugins-bad-f6aeac78682cf50372612b368747eabc008d13a8.tar.bz2
gst-plugins-bad-f6aeac78682cf50372612b368747eabc008d13a8.zip
Move of mpegtsparse to mpegdemux.
Original commit message from CVS: * configure.ac: * gst-plugins-bad.spec.in: * gst/mpegdemux/Makefile.am: * gst/mpegdemux/flumpegdemux.c: * gst/mpegdemux/gstmpegdesc.c: * gst/mpegdemux/gstmpegdesc.h: * gst/mpegdemux/mpegtspacketizer.c: * gst/mpegdemux/mpegtspacketizer.h: * gst/mpegdemux/mpegtsparse.c: * gst/mpegdemux/mpegtsparse.h: Move of mpegtsparse to mpegdemux. Fixes #555193.
Diffstat (limited to 'gst/mpegdemux/flumpegdemux.c')
-rw-r--r--gst/mpegdemux/flumpegdemux.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/gst/mpegdemux/flumpegdemux.c b/gst/mpegdemux/flumpegdemux.c
index a59e5175..c7392e24 100644
--- a/gst/mpegdemux/flumpegdemux.c
+++ b/gst/mpegdemux/flumpegdemux.c
@@ -47,6 +47,8 @@
#include "gstmpegdemux.h"
#include "gstmpegtsdemux.h"
+#include "mpegtsparse.h"
+#include "mpegtspacketizer.h"
GST_DEBUG_CATEGORY_EXTERN (gstflupesfilter_debug);
GST_DEBUG_CATEGORY_EXTERN (gstflusectionfilter_debug);
@@ -62,7 +64,8 @@ plugin_init (GstPlugin * plugin)
return FALSE;
if (!gst_fluts_demux_plugin_init (plugin))
return FALSE;
-
+ if (!gst_mpegtsparse_plugin_init (plugin))
+ return FALSE;
return TRUE;
}