summaryrefslogtreecommitdiff
path: root/gst/gstevent.c
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim.muller@collabora.co.uk>2012-04-02 23:23:46 +0100
committerTim-Philipp Müller <tim.muller@collabora.co.uk>2012-04-02 23:23:46 +0100
commit730c263842782d1570f4068ce5969a3c94658125 (patch)
treec2f7646fbf5a1199f9c833e94123eb6416f89ecc /gst/gstevent.c
parentf1bf53823a0244a1dbde8de69500556a629e0b68 (diff)
downloadgstreamer-730c263842782d1570f4068ce5969a3c94658125.tar.gz
toc: don't export private functions
Diffstat (limited to 'gst/gstevent.c')
-rw-r--r--gst/gstevent.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gst/gstevent.c b/gst/gstevent.c
index e922360020..e496f405d7 100644
--- a/gst/gstevent.c
+++ b/gst/gstevent.c
@@ -1634,10 +1634,10 @@ gst_event_new_toc (GstToc * toc, gboolean updated)
GST_CAT_INFO (GST_CAT_EVENT, "creating toc event");
- toc_struct = _gst_toc_to_structure (toc);
+ toc_struct = __gst_toc_to_structure (toc);
if (G_LIKELY (toc_struct != NULL)) {
- _gst_toc_structure_set_updated (toc_struct, updated);
+ __gst_toc_structure_set_updated (toc_struct, updated);
return gst_event_new_custom (GST_EVENT_TOC, toc_struct);
} else
return NULL;
@@ -1663,10 +1663,10 @@ gst_event_parse_toc (GstEvent * event, GstToc ** toc, gboolean * updated)
g_return_if_fail (toc != NULL);
structure = gst_event_get_structure (event);
- *toc = _gst_toc_from_structure (structure);
+ *toc = __gst_toc_from_structure (structure);
if (updated != NULL)
- *updated = _gst_toc_structure_get_updated (structure);
+ *updated = __gst_toc_structure_get_updated (structure);
}
/**