summaryrefslogtreecommitdiff
path: root/gst-libs/gst/mpegts
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.com>2017-08-11 14:39:07 +0100
committerTim-Philipp Müller <tim@centricular.com>2017-08-11 14:39:07 +0100
commitb77948d51123758a4ebfb2d8635f88edd80b0f7b (patch)
treefcbe9d0a1214ffd25213cbe62079c953e2ec3be2 /gst-libs/gst/mpegts
parent2445021120cf64e8fc830d2849bd145169924173 (diff)
downloadgstreamer-plugins-bad-b77948d51123758a4ebfb2d8635f88edd80b0f7b.tar.gz
mpegts: make accidentally exported debug category symbol private
Was never in header files, was just exported by accident because of the gst_ prefix of the variable name.
Diffstat (limited to 'gst-libs/gst/mpegts')
-rw-r--r--gst-libs/gst/mpegts/gstmpegts-private.h4
-rw-r--r--gst-libs/gst/mpegts/gstmpegtssection.c5
2 files changed, 4 insertions, 5 deletions
diff --git a/gst-libs/gst/mpegts/gstmpegts-private.h b/gst-libs/gst/mpegts/gstmpegts-private.h
index 41f7509e7..94199d9b0 100644
--- a/gst-libs/gst/mpegts/gstmpegts-private.h
+++ b/gst-libs/gst/mpegts/gstmpegts-private.h
@@ -26,8 +26,8 @@
G_BEGIN_DECLS
-GST_DEBUG_CATEGORY_EXTERN (gst_mpegts_debug);
-#define GST_CAT_DEFAULT gst_mpegts_debug
+GST_DEBUG_CATEGORY_EXTERN (mpegts_debug);
+#define GST_CAT_DEFAULT mpegts_debug
G_GNUC_INTERNAL void __initialize_descriptors (void);
G_GNUC_INTERNAL guint32 _calc_crc32 (const guint8 *data, guint datalen);
diff --git a/gst-libs/gst/mpegts/gstmpegtssection.c b/gst-libs/gst/mpegts/gstmpegtssection.c
index 5222024f4..01fc2a23d 100644
--- a/gst-libs/gst/mpegts/gstmpegtssection.c
+++ b/gst-libs/gst/mpegts/gstmpegtssection.c
@@ -64,7 +64,7 @@
* * TSDT
*/
-GST_DEBUG_CATEGORY (gst_mpegts_debug);
+GST_DEBUG_CATEGORY (mpegts_debug);
static GQuark QUARK_PAT;
static GQuark QUARK_CAT;
@@ -995,8 +995,7 @@ gst_mpegts_initialize (void)
if (_gst_mpegts_section_type)
return;
- GST_DEBUG_CATEGORY_INIT (gst_mpegts_debug, "mpegts", 0,
- "MPEG-TS helper library");
+ GST_DEBUG_CATEGORY_INIT (mpegts_debug, "mpegts", 0, "MPEG-TS helper library");
/* FIXME : Temporary hack to initialize section gtype */
_gst_mpegts_section_type = gst_mpegts_section_get_type ();