mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-31 03:29:50 +00:00
rtsp: don't export marshaller function
Make sure the marshaller function isn't exported. As it was never in a public header file, this should be fine.
This commit is contained in:
parent
0e8865c733
commit
f396a37fc5
3 changed files with 2 additions and 3 deletions
|
@ -42,7 +42,7 @@ BUILT_SOURCES = $(built_headers) $(built_sources)
|
|||
EXTRA_DIST = gstrtsp-marshal.list
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
||||
|
||||
glib_gen_prefix = gst_rtsp
|
||||
glib_gen_prefix = __gst_rtsp
|
||||
glib_enum_define = gst_rtsp
|
||||
glib_enum_headers = gstrtspdefs.h
|
||||
glib_gen_basename = gstrtsp
|
||||
|
|
|
@ -84,7 +84,7 @@ gst_rtsp_extension_iface_init (GstRTSPExtension * iface)
|
|||
gst_rtsp_extension_signals[SIGNAL_SEND] =
|
||||
g_signal_new ("send", G_TYPE_FROM_CLASS (iface),
|
||||
G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPExtensionInterface,
|
||||
send), NULL, NULL, gst_rtsp_marshal_ENUM__POINTER_POINTER,
|
||||
send), NULL, NULL, __gst_rtsp_marshal_ENUM__POINTER_POINTER,
|
||||
GST_TYPE_RTSP_RESULT, 2, G_TYPE_POINTER, G_TYPE_POINTER);
|
||||
initialized = TRUE;
|
||||
}
|
||||
|
|
|
@ -50,7 +50,6 @@ EXPORTS
|
|||
gst_rtsp_header_as_text
|
||||
gst_rtsp_header_field_get_type
|
||||
gst_rtsp_lower_trans_get_type
|
||||
gst_rtsp_marshal_ENUM__POINTER_POINTER
|
||||
gst_rtsp_message_add_header
|
||||
gst_rtsp_message_append_headers
|
||||
gst_rtsp_message_dump
|
||||
|
|
Loading…
Reference in a new issue