mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-11 01:45:33 +00:00
Make rtsp-server.h a single-include header, use it for G-I
https://bugzilla.gnome.org/show_bug.cgi?id=732411
This commit is contained in:
parent
b6f4dd4c28
commit
41d1ef7ed3
2 changed files with 17 additions and 3 deletions
|
@ -68,7 +68,6 @@ BUILT_GIRSOURCES = GstRtspServer-@GST_API_VERSION@.gir
|
|||
|
||||
gir_headers=$(patsubst %,$(srcdir)/%, $(libgstrtspserver_@GST_API_VERSION@include_HEADERS))
|
||||
gir_sources=$(patsubst %,$(srcdir)/%, $(libgstrtspserver_@GST_API_VERSION@_la_SOURCES))
|
||||
gir_cincludes=$(patsubst %,--c-include='gst/rtsp-server/%',$(libgstrtspinclude_HEADERS))
|
||||
|
||||
GstRtspServer-@GST_API_VERSION@.gir: $(INTROSPECTION_SCANNER) libgstrtspserver-@GST_API_VERSION@.la
|
||||
$(AM_V_GEN)PKG_CONFIG_PATH="$(GST_PKG_CONFIG_PATH)" \
|
||||
|
@ -79,7 +78,7 @@ GstRtspServer-@GST_API_VERSION@.gir: $(INTROSPECTION_SCANNER) libgstrtspserver-@
|
|||
-I$(top_srcdir) \
|
||||
-I$(top_builddir) \
|
||||
-DIN_GOBJECT_INTROSPECTION=1 \
|
||||
--c-include='gst/gst.h' \
|
||||
--c-include='gst/rtsp-server/rtsp-server.h' \
|
||||
--add-include-path=`$(PKG_CONFIG) --variable=girdir gstreamer-@GST_API_VERSION@` \
|
||||
--add-include-path=`$(PKG_CONFIG) --variable=girdir gstreamer-rtsp-@GST_API_VERSION@` \
|
||||
--add-include-path=`$(PKG_CONFIG) --variable=girdir gstreamer-sdp-@GST_API_VERSION@` \
|
||||
|
|
|
@ -29,9 +29,24 @@ typedef struct _GstRTSPServerClass GstRTSPServerClass;
|
|||
typedef struct _GstRTSPServerPrivate GstRTSPServerPrivate;
|
||||
|
||||
#include "rtsp-session-pool.h"
|
||||
#include "rtsp-mount-points.h"
|
||||
#include "rtsp-session.h"
|
||||
#include "rtsp-media.h"
|
||||
#include "rtsp-stream.h"
|
||||
#include "rtsp-stream-transport.h"
|
||||
#include "rtsp-address-pool.h"
|
||||
#include "rtsp-thread-pool.h"
|
||||
#include "rtsp-client.h"
|
||||
#include "rtsp-context.h"
|
||||
#include "rtsp-server.h"
|
||||
#include "rtsp-mount-points.h"
|
||||
#include "rtsp-media-factory.h"
|
||||
#include "rtsp-permissions.h"
|
||||
#include "rtsp-auth.h"
|
||||
#include "rtsp-token.h"
|
||||
#include "rtsp-session-media.h"
|
||||
#include "rtsp-sdp.h"
|
||||
#include "rtsp-media-factory-uri.h"
|
||||
#include "rtsp-params.h"
|
||||
|
||||
#define GST_TYPE_RTSP_SERVER (gst_rtsp_server_get_type ())
|
||||
#define GST_IS_RTSP_SERVER(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_RTSP_SERVER))
|
||||
|
|
Loading…
Reference in a new issue