diff options
author | Zaheer Abbas Merali <zaheerabbas@merali.org> | 2008-10-08 15:25:24 +0000 |
---|---|---|
committer | Zaheer Abbas Merali <zaheerabbas@merali.org> | 2008-10-08 15:25:24 +0000 |
commit | f6aeac78682cf50372612b368747eabc008d13a8 (patch) | |
tree | f90b0f951fc117c647becf5e45ff22fe61985f95 /gst/mpegdemux/flumpegdemux.c | |
parent | 8aea40af0b39499ef68524e932c8ebe4b12b404f (diff) | |
download | gst-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.c | 5 |
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; } |