diff options
author | Zaheer Abbas Merali <zaheerabbas@merali.org> | 2008-02-14 14:22:57 +0000 |
---|---|---|
committer | Zaheer Abbas Merali <zaheerabbas@merali.org> | 2008-02-14 14:22:57 +0000 |
commit | 8ede0678be4921abd03bca7d68afb52844c7b8fa (patch) | |
tree | 88ac53997106c4e826eb70642d656caaa668efbc /gst/mpegtsparse/mpegtsparse.c | |
parent | 3e6837ee1b6f5c20bd0d70eb106e0b573984db09 (diff) | |
download | gst-plugins-bad-8ede0678be4921abd03bca7d68afb52844c7b8fa.tar.gz gst-plugins-bad-8ede0678be4921abd03bca7d68afb52844c7b8fa.tar.bz2 gst-plugins-bad-8ede0678be4921abd03bca7d68afb52844c7b8fa.zip |
gst/mpegtsparse/: Make sure the gstmpegdesc debug lines do not critical when GST_DEBUG is enabled and also actually o...
Original commit message from CVS:
* gst/mpegtsparse/gstmpegdesc.c:
* gst/mpegtsparse/gstmpegdesc.h:
* gst/mpegtsparse/mpegtsparse.c:
Make sure the gstmpegdesc debug lines do not critical
when GST_DEBUG is enabled and also actually output.
Thanks to Alessandro Decina for spotting.
Fixes #516448
Diffstat (limited to 'gst/mpegtsparse/mpegtsparse.c')
-rw-r--r-- | gst/mpegtsparse/mpegtsparse.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gst/mpegtsparse/mpegtsparse.c b/gst/mpegtsparse/mpegtsparse.c index 6b79d9f6..e625e7ba 100644 --- a/gst/mpegtsparse/mpegtsparse.c +++ b/gst/mpegtsparse/mpegtsparse.c @@ -28,6 +28,7 @@ #include <stdlib.h> #include "mpegtsparse.h" +#include "gstmpegdesc.h" /* latency in mseconds */ #define TS_LATENCY 700 @@ -1202,6 +1203,7 @@ plugin_init (GstPlugin * plugin) "MPEG transport stream parser"); mpegts_packetizer_init_debug (); + gst_mpegtsdesc_init_debug (); return gst_element_register (plugin, "mpegtsparse", GST_RANK_NONE, GST_TYPE_MPEGTS_PARSE); |