mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-13 23:22:54 +00:00
libs: Add missing single include headers and use them in GIRs
This commit is contained in:
parent
4f480612e9
commit
4d77fba46c
20 changed files with 289 additions and 33 deletions
|
@ -23,6 +23,7 @@ libgstapp_@GST_API_VERSION@_la_LIBTOOLFLAGS = --tag=disable-static
|
|||
|
||||
libgstapp_@GST_API_VERSION@includedir = $(includedir)/gstreamer-@GST_API_VERSION@/gst/app
|
||||
libgstapp_@GST_API_VERSION@include_HEADERS = \
|
||||
gstapp.h \
|
||||
gstappsrc.h \
|
||||
gstappsink.h
|
||||
|
||||
|
@ -36,7 +37,6 @@ BUILT_GIRSOURCES = GstApp-@GST_API_VERSION@.gir
|
|||
gir_headers=$(patsubst %,$(srcdir)/%, $(libgstapp_@GST_API_VERSION@include_HEADERS))
|
||||
gir_sources=$(patsubst %,$(srcdir)/%, $(libgstapp_@GST_API_VERSION@_la_SOURCES))
|
||||
gir_sources+=$(patsubst %,$(builddir)/%, $(nodist_libgstapp_@GST_API_VERSION@_la_SOURCES))
|
||||
gir_cincludes=$(patsubst %,--c-include='gst/app/%',$(libgstapp_@GST_API_VERSION@include_HEADERS))
|
||||
|
||||
GstApp-@GST_API_VERSION@.gir: $(INTROSPECTION_SCANNER) libgstapp-@GST_API_VERSION@.la
|
||||
$(AM_V_GEN)PKG_CONFIG_PATH="$(GST_PKG_CONFIG_PATH)" \
|
||||
|
@ -45,7 +45,7 @@ GstApp-@GST_API_VERSION@.gir: $(INTROSPECTION_SCANNER) libgstapp-@GST_API_VERSIO
|
|||
--nsversion=@GST_API_VERSION@ \
|
||||
--strip-prefix=Gst \
|
||||
--warn-all \
|
||||
$(gir_cincludes) \
|
||||
--c-include "gst/app/gstapp.h" \
|
||||
-I$(top_srcdir)/gst-libs \
|
||||
-I$(top_builddir)/gst-libs \
|
||||
--add-include-path=`PKG_CONFIG_PATH="$(GST_PKG_CONFIG_PATH)" $(PKG_CONFIG) --variable=girdir gstreamer-@GST_API_VERSION@` \
|
||||
|
|
28
gst-libs/gst/app/gstapp.h
Normal file
28
gst-libs/gst/app/gstapp.h
Normal file
|
@ -0,0 +1,28 @@
|
|||
/* GStreamer
|
||||
* Copyright (C) 2012 GStreamer developers
|
||||
*
|
||||
* gstapp.h: single include header for gst-app library
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Library General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Library General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Library General Public
|
||||
* License along with this library; if not, write to the
|
||||
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
||||
* Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
#ifndef __GST_APP_H__
|
||||
#define __GST_APP_H__
|
||||
|
||||
#include <gst/app/gstappsrc.h>
|
||||
#include <gst/app/gstappsink.h>
|
||||
|
||||
#endif /* __GST_APP_H__ */
|
|
@ -49,6 +49,7 @@ libgstaudio_@GST_API_VERSION@include_HEADERS = \
|
|||
audio-format.h \
|
||||
audio-channels.h \
|
||||
audio-info.h \
|
||||
gstaudio.h \
|
||||
gstaudioringbuffer.h \
|
||||
gstaudioclock.h \
|
||||
gstaudiofilter.h \
|
||||
|
@ -82,8 +83,6 @@ gir_headers=$(patsubst %,$(srcdir)/%, $(libgstaudio_@GST_API_VERSION@include_HEA
|
|||
gir_headers+=$(patsubst %,$(builddir)/%, $(built_headers))
|
||||
gir_sources=$(patsubst %,$(srcdir)/%, $(libgstaudio_@GST_API_VERSION@_la_SOURCES))
|
||||
gir_sources+=$(patsubst %,$(builddir)/%, $(built_sources))
|
||||
gir_cincludes=$(patsubst %,--c-include='gst/audio/%',$(libgstaudio_@GST_API_VERSION@include_HEADERS))
|
||||
gir_cincludes+=$(patsubst %,--c-include='gst/audio/%',$(nodist_libgstaudio_@GST_API_VERSION@include_HEADERS))
|
||||
|
||||
GstAudio-@GST_API_VERSION@.gir: $(INTROSPECTION_SCANNER) libgstaudio-@GST_API_VERSION@.la
|
||||
$(AM_V_GEN)PKG_CONFIG_PATH="$(GST_PKG_CONFIG_PATH)" \
|
||||
|
@ -94,7 +93,7 @@ GstAudio-@GST_API_VERSION@.gir: $(INTROSPECTION_SCANNER) libgstaudio-@GST_API_VE
|
|||
--strip-prefix=Gst \
|
||||
-I$(top_srcdir)/gst-libs \
|
||||
-I$(top_builddir)/gst-libs \
|
||||
$(gir_cincludes) \
|
||||
--c-include "gst/audio/gstaudio.h" \
|
||||
--add-include-path=`PKG_CONFIG_PATH="$(GST_PKG_CONFIG_PATH)" $(PKG_CONFIG) --variable=girdir gstreamer-@GST_API_VERSION@` \
|
||||
--add-include-path=`PKG_CONFIG_PATH="$(GST_PKG_CONFIG_PATH)" $(PKG_CONFIG) --variable=girdir gstreamer-base-@GST_API_VERSION@` \
|
||||
--add-include-path="$(top_builddir)/gst-libs/gst/tag/" \
|
||||
|
|
44
gst-libs/gst/audio/gstaudio.h
Normal file
44
gst-libs/gst/audio/gstaudio.h
Normal file
|
@ -0,0 +1,44 @@
|
|||
/* GStreamer
|
||||
* Copyright (C) 2012 GStreamer developers
|
||||
*
|
||||
* gstaudio.h: single include header for gst-audio library
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Library General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Library General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Library General Public
|
||||
* License along with this library; if not, write to the
|
||||
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
||||
* Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
#ifndef __GST_AUDIO_GST_AUDIO_H__
|
||||
#define __GST_AUDIO_GST_AUDIO_H__
|
||||
|
||||
#include <gst/audio/audio.h>
|
||||
#include <gst/audio/audio-format.h>
|
||||
#include <gst/audio/audio-channels.h>
|
||||
#include <gst/audio/audio-enumtypes.h>
|
||||
#include <gst/audio/audio-info.h>
|
||||
#include <gst/audio/gstaudioringbuffer.h>
|
||||
#include <gst/audio/gstaudioclock.h>
|
||||
#include <gst/audio/gstaudiofilter.h>
|
||||
#include <gst/audio/gstaudiocdsrc.h>
|
||||
#include <gst/audio/gstaudiodecoder.h>
|
||||
#include <gst/audio/gstaudioencoder.h>
|
||||
#include <gst/audio/gstaudiobasesink.h>
|
||||
#include <gst/audio/gstaudiobasesrc.h>
|
||||
#include <gst/audio/gstaudiometa.h>
|
||||
#include <gst/audio/gstaudiosink.h>
|
||||
#include <gst/audio/gstaudiosrc.h>
|
||||
#include <gst/audio/streamvolume.h>
|
||||
#include <gst/audio/gstaudioiec61937.h>
|
||||
|
||||
#endif /* __GST_AUDIO_GST_AUDIO_H__ */
|
|
@ -49,7 +49,6 @@ BUILT_GIRSOURCES = GstFft-@GST_API_VERSION@.gir
|
|||
|
||||
gir_headers=$(patsubst %,$(srcdir)/%, $(libgstfft_@GST_API_VERSION@_include_HEADERS))
|
||||
gir_sources=$(patsubst %,$(srcdir)/%, $(libgstfft_@GST_API_VERSION@_la_SOURCES))
|
||||
gir_cincludes=$(patsubst %,--c-include='gst/fft/%',$(libgstfft_@GST_API_VERSION@_include_HEADERS))
|
||||
|
||||
GstFft-@GST_API_VERSION@.gir: $(INTROSPECTION_SCANNER) libgstfft-@GST_API_VERSION@.la
|
||||
$(AM_V_GEN)PKG_CONFIG_PATH="$(GST_PKG_CONFIG_PATH)" \
|
||||
|
@ -58,7 +57,7 @@ GstFft-@GST_API_VERSION@.gir: $(INTROSPECTION_SCANNER) libgstfft-@GST_API_VERSIO
|
|||
--nsversion=@GST_API_VERSION@ \
|
||||
--strip-prefix=Gst \
|
||||
--warn-all \
|
||||
$(gir_cincludes) \
|
||||
--c-include "gst/fft/gstfft.h" \
|
||||
--add-include-path=`PKG_CONFIG_PATH="$(GST_PKG_CONFIG_PATH)" $(PKG_CONFIG) --variable=girdir gstreamer-@GST_API_VERSION@` \
|
||||
--library=libgstfft-@GST_API_VERSION@.la \
|
||||
--include=Gst-@GST_API_VERSION@ \
|
||||
|
|
|
@ -50,4 +50,9 @@ gint gst_fft_next_fast_length (gint n) G_GNUC_CONST;
|
|||
|
||||
G_END_DECLS
|
||||
|
||||
#include <gst/fft/gstffts16.h>
|
||||
#include <gst/fft/gstffts32.h>
|
||||
#include <gst/fft/gstfftf32.h>
|
||||
#include <gst/fft/gstfftf64.h>
|
||||
|
||||
#endif /* __GST_FFT_H__ */
|
||||
|
|
|
@ -8,7 +8,8 @@ headers_pbutils = \
|
|||
encoding-target.h \
|
||||
install-plugins.h \
|
||||
missing-plugins.h \
|
||||
gstdiscoverer.h
|
||||
gstdiscoverer.h \
|
||||
gstpbutils.h
|
||||
|
||||
# variables used for enum/marshal generation
|
||||
glib_enum_headers = $(headers_pbutils)
|
||||
|
@ -68,8 +69,6 @@ gir_headers=$(patsubst %,$(srcdir)/%, $(libgstpbutils_@GST_API_VERSION@include_H
|
|||
gir_headers+=$(patsubst %,$(builddir)/%, $(nodist_libgstpbutils_@GST_API_VERSION@include_HEADERS))
|
||||
gir_sources=$(patsubst %,$(srcdir)/%, $(libgstpbutils_@GST_API_VERSION@_la_SOURCES))
|
||||
gir_sources+=$(patsubst %,$(builddir)/%, $(nodist_libgstpbutils_@GST_API_VERSION@_la_SOURCES))
|
||||
gir_cincludes=$(patsubst %,--c-include='gst/pbutils/%',$(libgstpbutils_@GST_API_VERSION@include_HEADERS))
|
||||
gir_cincludes+=$(patsubst %,--c-include='gst/pbutils/%',$(nodist_libgstpbutils_@GST_API_VERSION@include_HEADERS))
|
||||
|
||||
GstPbutils-@GST_API_VERSION@.gir: $(INTROSPECTION_SCANNER) libgstpbutils-@GST_API_VERSION@.la
|
||||
$(AM_V_GEN)PKG_CONFIG_PATH="$(GST_PKG_CONFIG_PATH)" \
|
||||
|
@ -78,7 +77,7 @@ GstPbutils-@GST_API_VERSION@.gir: $(INTROSPECTION_SCANNER) libgstpbutils-@GST_AP
|
|||
--nsversion=@GST_API_VERSION@ \
|
||||
--strip-prefix=Gst \
|
||||
--warn-all \
|
||||
$(gir_cincludes) \
|
||||
--c-include "gst/pbutils/gstpbutils.h" \
|
||||
-I$(top_srcdir)/gst-libs \
|
||||
-I$(top_builddir)/gst-libs \
|
||||
--add-include-path=`PKG_CONFIG_PATH="$(GST_PKG_CONFIG_PATH)" $(PKG_CONFIG) --variable=girdir gstreamer-@GST_API_VERSION@` \
|
||||
|
|
36
gst-libs/gst/pbutils/gstpbutils.h
Normal file
36
gst-libs/gst/pbutils/gstpbutils.h
Normal file
|
@ -0,0 +1,36 @@
|
|||
/* GStreamer
|
||||
* Copyright (C) 2012 GStreamer developers
|
||||
*
|
||||
* gstpbutils.h: single include header for gst-pbutils library
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Library General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Library General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Library General Public
|
||||
* License along with this library; if not, write to the
|
||||
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
||||
* Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
#ifndef __GST_PB_UTILS_GST_PB_UTILS_H__
|
||||
#define __GST_PB_UTILS_GST_PB_UTILS_H__
|
||||
|
||||
#include <gst/pbutils/codec-utils.h>
|
||||
#include <gst/pbutils/descriptions.h>
|
||||
#include <gst/pbutils/encoding-profile.h>
|
||||
#include <gst/pbutils/encoding-target.h>
|
||||
#include <gst/pbutils/gstdiscoverer.h>
|
||||
#include <gst/pbutils/gstpluginsbaseversion.h>
|
||||
#include <gst/pbutils/install-plugins.h>
|
||||
#include <gst/pbutils/missing-plugins.h>
|
||||
#include <gst/pbutils/pbutils-enumtypes.h>
|
||||
#include <gst/pbutils/pbutils.h>
|
||||
|
||||
#endif /* __GST_PB_UTILS_GST_PB_UTILS_H__ */
|
|
@ -7,6 +7,7 @@ libgstriff_@GST_API_VERSION@_la_SOURCES = \
|
|||
|
||||
libgstriff_@GST_API_VERSION@includedir = $(includedir)/gstreamer-@GST_API_VERSION@/gst/riff
|
||||
libgstriff_@GST_API_VERSION@include_HEADERS = \
|
||||
gstriff.h \
|
||||
riff-ids.h \
|
||||
riff-media.h \
|
||||
riff-read.h
|
||||
|
@ -24,7 +25,6 @@ BUILT_GIRSOURCES = GstRiff-@GST_API_VERSION@.gir
|
|||
|
||||
gir_headers=$(patsubst %,$(srcdir)/%, $(libgstriff_@GST_API_VERSION@include_HEADERS))
|
||||
gir_sources=$(patsubst %,$(srcdir)/%, $(libgstriff_@GST_API_VERSION@_la_SOURCES))
|
||||
gir_cincludes=$(patsubst %,--c-include='gst/riff/%',$(libgstriff_@GST_API_VERSION@include_HEADERS))
|
||||
|
||||
GstRiff-@GST_API_VERSION@.gir: $(INTROSPECTION_SCANNER) libgstriff-@GST_API_VERSION@.la
|
||||
$(AM_V_GEN)PKG_CONFIG_PATH="$(GST_PKG_CONFIG_PATH)" \
|
||||
|
@ -33,7 +33,7 @@ GstRiff-@GST_API_VERSION@.gir: $(INTROSPECTION_SCANNER) libgstriff-@GST_API_VERS
|
|||
--nsversion=@GST_API_VERSION@ \
|
||||
--strip-prefix=Gst \
|
||||
--warn-all \
|
||||
$(gir_cincludes) \
|
||||
--c-include "gst/riff/gstriff.h" \
|
||||
--add-include-path=$(builddir)/../tag \
|
||||
--add-include-path=$(builddir)/../audio \
|
||||
--add-include-path=`PKG_CONFIG_PATH="$(GST_PKG_CONFIG_PATH)" $(PKG_CONFIG) --variable=girdir gstreamer-@GST_API_VERSION@` \
|
||||
|
|
29
gst-libs/gst/riff/gstriff.h
Normal file
29
gst-libs/gst/riff/gstriff.h
Normal file
|
@ -0,0 +1,29 @@
|
|||
/* GStreamer
|
||||
* Copyright (C) 2012 GStreamer developers
|
||||
*
|
||||
* gstriff.h: single include header for gst-riff library
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Library General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Library General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Library General Public
|
||||
* License along with this library; if not, write to the
|
||||
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
||||
* Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
#ifndef __GST_RIFF_H__
|
||||
#define __GST_RIFF_H__
|
||||
|
||||
#include <gst/riff/riff-ids.h>
|
||||
#include <gst/riff/riff-media.h>
|
||||
#include <gst/riff/riff-read.h>
|
||||
|
||||
#endif /* __GST_RIFF_H__ */
|
|
@ -1,6 +1,8 @@
|
|||
libgstrtpincludedir = $(includedir)/gstreamer-@GST_API_VERSION@/gst/rtp
|
||||
|
||||
libgstrtpinclude_HEADERS = gstrtpbuffer.h \
|
||||
libgstrtpinclude_HEADERS = \
|
||||
gstrtp.h \
|
||||
gstrtpbuffer.h \
|
||||
gstrtcpbuffer.h \
|
||||
gstrtppayloads.h \
|
||||
gstrtphdrext.h \
|
||||
|
@ -27,7 +29,6 @@ BUILT_GIRSOURCES = GstRtp-@GST_API_VERSION@.gir
|
|||
|
||||
gir_headers=$(patsubst %,$(srcdir)/%, $(libgstrtpinclude_HEADERS))
|
||||
gir_sources=$(patsubst %,$(srcdir)/%, $(libgstrtp_@GST_API_VERSION@_la_SOURCES))
|
||||
gir_cincludes=$(patsubst %,--c-include='gst/rtp/%',$(libgstrtpinclude_HEADERS))
|
||||
|
||||
GstRtp-@GST_API_VERSION@.gir: $(INTROSPECTION_SCANNER) libgstrtp-@GST_API_VERSION@.la
|
||||
$(AM_V_GEN)PKG_CONFIG_PATH="$(GST_PKG_CONFIG_PATH)" \
|
||||
|
@ -36,7 +37,7 @@ GstRtp-@GST_API_VERSION@.gir: $(INTROSPECTION_SCANNER) libgstrtp-@GST_API_VERSIO
|
|||
--nsversion=@GST_API_VERSION@ \
|
||||
--strip-prefix=Gst \
|
||||
--warn-all \
|
||||
$(gir_cincludes) \
|
||||
--c-include "gst/rtp/gstrtp.h" \
|
||||
-I$(top_srcdir)/gst-libs \
|
||||
--add-include-path=`PKG_CONFIG_PATH="$(GST_PKG_CONFIG_PATH)" $(PKG_CONFIG) --variable=girdir gstreamer-@GST_API_VERSION@` \
|
||||
--add-include-path=`PKG_CONFIG_PATH="$(GST_PKG_CONFIG_PATH)" $(PKG_CONFIG) --variable=girdir gstreamer-base-@GST_API_VERSION@` \
|
||||
|
|
33
gst-libs/gst/rtp/gstrtp.h
Normal file
33
gst-libs/gst/rtp/gstrtp.h
Normal file
|
@ -0,0 +1,33 @@
|
|||
/* GStreamer
|
||||
* Copyright (C) 2012 GStreamer developers
|
||||
*
|
||||
* gstrtp.h: single include header for gst-rtp library
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Library General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Library General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Library General Public
|
||||
* License along with this library; if not, write to the
|
||||
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
||||
* Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
#ifndef __GST_RTP_H__
|
||||
#define __GST_RTP_H__
|
||||
|
||||
#include <gst/rtp/gstrtpbuffer.h>
|
||||
#include <gst/rtp/gstrtcpbuffer.h>
|
||||
#include <gst/rtp/gstrtppayloads.h>
|
||||
#include <gst/rtp/gstrtphdrext.h>
|
||||
#include <gst/rtp/gstrtpbaseaudiopayload.h>
|
||||
#include <gst/rtp/gstrtpbasepayload.h>
|
||||
#include <gst/rtp/gstrtpbasedepayload.h>
|
||||
|
||||
#endif /* __GST_RTP_H__ */
|
|
@ -1,6 +1,8 @@
|
|||
libgstrtspincludedir = $(includedir)/gstreamer-@GST_API_VERSION@/gst/rtsp
|
||||
|
||||
libgstrtspinclude_HEADERS = gstrtsptransport.h \
|
||||
libgstrtspinclude_HEADERS = \
|
||||
gstrtsp.h \
|
||||
gstrtsptransport.h \
|
||||
gstrtspurl.h \
|
||||
gstrtspmessage.h \
|
||||
gstrtspconnection.h \
|
||||
|
@ -27,8 +29,6 @@ libgstrtsp_@GST_API_VERSION@_la_SOURCES = gstrtsptransport.c \
|
|||
nodist_libgstrtsp_@GST_API_VERSION@_la_SOURCES = $(built_sources)
|
||||
nodist_libgstrtspinclude_HEADERS = gstrtsp-enumtypes.h
|
||||
|
||||
noinst_HEADERS = gstrtsp.h
|
||||
|
||||
#gstrtspextwms.c
|
||||
#rtspextreal.c
|
||||
|
||||
|
@ -54,8 +54,6 @@ gir_headers=$(patsubst %,$(srcdir)/%, $(libgstrtspinclude_HEADERS))
|
|||
gir_headers+=$(patsubst %,$(builddir)/%, $(nodist_libgstrtspinclude_HEADERS))
|
||||
gir_sources=$(patsubst %,$(srcdir)/%, $(libgstrtsp_@GST_API_VERSION@_la_SOURCES))
|
||||
gir_sources+=$(patsubst %,$(builddir)/%, $(nodist_libgstrtsp_@GST_API_VERSION@_la_SOURCES))
|
||||
gir_cincludes=$(patsubst %,--c-include='gst/rtsp/%',$(libgstrtspinclude_HEADERS))
|
||||
gir_cincludes+=$(patsubst %,--c-include='gst/rtsp/%',$(nodist_libgstrtspinclude_HEADERS))
|
||||
|
||||
GstRtsp-@GST_API_VERSION@.gir: $(INTROSPECTION_SCANNER) libgstrtsp-@GST_API_VERSION@.la
|
||||
$(AM_V_GEN)PKG_CONFIG_PATH="$(GST_PKG_CONFIG_PATH)" \
|
||||
|
@ -64,7 +62,7 @@ GstRtsp-@GST_API_VERSION@.gir: $(INTROSPECTION_SCANNER) libgstrtsp-@GST_API_VERS
|
|||
--nsversion=@GST_API_VERSION@ \
|
||||
--strip-prefix=Gst \
|
||||
--warn-all \
|
||||
$(gir_cincludes) \
|
||||
--c-include "gst/rtsp/gstrtsp.h" \
|
||||
-I$(top_builddir)/gst-libs \
|
||||
-I$(top_srcdir)/gst-libs \
|
||||
--add-include-path=$(builddir)/../sdp \
|
||||
|
|
|
@ -18,10 +18,16 @@
|
|||
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
||||
* Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
#ifndef __RTSP_H__
|
||||
#define __RTSP_H__
|
||||
#ifndef __GST_RTSP_H__
|
||||
#define __GST_RTSP_H__
|
||||
|
||||
#include <gst/rtsp/gstrtspconnection.h>
|
||||
#include <gst/rtsp/gstrtspdefs.h>
|
||||
#include <gst/rtsp/gstrtsp-enumtypes.h>
|
||||
#include <gst/rtsp/gstrtspextension.h>
|
||||
#include <gst/rtsp/gstrtspmessage.h>
|
||||
#include <gst/rtsp/gstrtsprange.h>
|
||||
#include <gst/rtsp/gstrtsptransport.h>
|
||||
#include <gst/rtsp/gstrtspurl.h>
|
||||
|
||||
#endif
|
||||
#endif /* __GST_RTSP_H__ */
|
||||
|
|
|
@ -16,7 +16,6 @@ BUILT_GIRSOURCES = GstSdp-@GST_API_VERSION@.gir
|
|||
|
||||
gir_headers=$(patsubst %,$(srcdir)/%, $(libgstsdpinclude_HEADERS))
|
||||
gir_sources=$(patsubst %,$(srcdir)/%, $(libgstsdp_@GST_API_VERSION@_la_SOURCES))
|
||||
gir_cincludes=$(patsubst %,--c-include='gst/sdp/%',$(libgstsdpinclude_HEADERS))
|
||||
|
||||
GstSdp-@GST_API_VERSION@.gir: $(INTROSPECTION_SCANNER) libgstsdp-@GST_API_VERSION@.la
|
||||
$(AM_V_GEN)PKG_CONFIG_PATH="$(GST_PKG_CONFIG_PATH)" \
|
||||
|
@ -25,7 +24,7 @@ GstSdp-@GST_API_VERSION@.gir: $(INTROSPECTION_SCANNER) libgstsdp-@GST_API_VERSIO
|
|||
--nsversion=@GST_API_VERSION@ \
|
||||
--strip-prefix=Gst \
|
||||
--warn-all \
|
||||
$(gir_cincludes) \
|
||||
--c-include "gst/sdp/gstsdp.h" \
|
||||
-I$(top_srcdir)/gst-libs \
|
||||
--add-include-path=`PKG_CONFIG_PATH="$(GST_PKG_CONFIG_PATH)" $(PKG_CONFIG) --variable=girdir gstreamer-@GST_API_VERSION@` \
|
||||
--library=libgstsdp-@GST_API_VERSION@.la \
|
||||
|
|
|
@ -55,4 +55,6 @@ typedef enum {
|
|||
GST_SDP_EINVAL = -1
|
||||
} GstSDPResult;
|
||||
|
||||
#include <gst/sdp/gstsdpmessage.h>
|
||||
|
||||
#endif /* __GST_SDP_H__ */
|
||||
|
|
|
@ -2,7 +2,7 @@ libgsttagincludedir = \
|
|||
$(includedir)/gstreamer-@GST_API_VERSION@/gst/tag
|
||||
|
||||
libgsttaginclude_HEADERS = \
|
||||
tag.h gsttagdemux.h gsttagmux.h xmpwriter.h
|
||||
tag.h gsttag.h gsttagdemux.h gsttagmux.h xmpwriter.h
|
||||
|
||||
lib_LTLIBRARIES = libgsttag-@GST_API_VERSION@.la
|
||||
|
||||
|
@ -28,7 +28,6 @@ BUILT_GIRSOURCES = GstTag-@GST_API_VERSION@.gir
|
|||
|
||||
gir_headers=$(patsubst %,$(srcdir)/%, $(libgsttaginclude_HEADERS))
|
||||
gir_sources=$(patsubst %,$(srcdir)/%, $(libgsttag_@GST_API_VERSION@_la_SOURCES))
|
||||
gir_cincludes=$(patsubst %,--c-include='gst/tag/%',$(libgsttaginclude_HEADERS))
|
||||
|
||||
GstTag-@GST_API_VERSION@.gir: $(INTROSPECTION_SCANNER) libgsttag-@GST_API_VERSION@.la
|
||||
$(AM_V_GEN)PKG_CONFIG_PATH="$(GST_PKG_CONFIG_PATH)" \
|
||||
|
@ -37,7 +36,7 @@ GstTag-@GST_API_VERSION@.gir: $(INTROSPECTION_SCANNER) libgsttag-@GST_API_VERSIO
|
|||
--nsversion=@GST_API_VERSION@ \
|
||||
--strip-prefix=Gst \
|
||||
--warn-all \
|
||||
$(gir_cincludes) \
|
||||
--c-include "gst/tag/gsttag.h" \
|
||||
--add-include-path=`PKG_CONFIG_PATH="$(GST_PKG_CONFIG_PATH)" $(PKG_CONFIG) --variable=girdir gstreamer-@GST_API_VERSION@` \
|
||||
--add-include-path=`PKG_CONFIG_PATH="$(GST_PKG_CONFIG_PATH)" $(PKG_CONFIG) --variable=girdir gstreamer-base-@GST_API_VERSION@` \
|
||||
--library=libgsttag-@GST_API_VERSION@.la \
|
||||
|
|
30
gst-libs/gst/tag/gsttag.h
Normal file
30
gst-libs/gst/tag/gsttag.h
Normal file
|
@ -0,0 +1,30 @@
|
|||
/* GStreamer
|
||||
* Copyright (C) 2012 GStreamer developers
|
||||
*
|
||||
* gsttag.h: single include header for gst-tag library
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Library General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Library General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Library General Public
|
||||
* License along with this library; if not, write to the
|
||||
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
||||
* Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
#ifndef __GST_TAG_GST_TAG_H__
|
||||
#define __GST_TAG_GST_TAG_H__
|
||||
|
||||
#include <gst/tag/tag.h>
|
||||
#include <gst/tag/gsttagdemux.h>
|
||||
#include <gst/tag/gsttagmux.h>
|
||||
#include <gst/tag/xmpwriter.h>
|
||||
|
||||
#endif /* __GST_TAG_GST_TAG_H__ */
|
|
@ -52,6 +52,7 @@ libgstvideo_@GST_API_VERSION@include_HEADERS = \
|
|||
video-color.h \
|
||||
video-info.h \
|
||||
video-frame.h \
|
||||
gstvideo.h \
|
||||
gstvideosink.h \
|
||||
gstvideofilter.h \
|
||||
gstvideometa.h \
|
||||
|
@ -80,8 +81,6 @@ gir_headers=$(patsubst %,$(srcdir)/%, $(libgstvideo_@GST_API_VERSION@include_HEA
|
|||
gir_headers+=$(patsubst %,$(builddir)/%, $(built_headers))
|
||||
gir_sources=$(patsubst %,$(srcdir)/%, $(libgstvideo_@GST_API_VERSION@_la_SOURCES))
|
||||
gir_sources+=$(patsubst %,$(builddir)/%, $(built_sources))
|
||||
gir_cincludes=$(patsubst %,--c-include='gst/video/%',$(libgstvideo_@GST_API_VERSION@include_HEADERS))
|
||||
gir_cincludes+=$(patsubst %,--c-include='gst/video/%',$(nodist_libgstvideo_@GST_API_VERSION@include_HEADERS))
|
||||
|
||||
GstVideo-@GST_API_VERSION@.gir: $(INTROSPECTION_SCANNER) libgstvideo-@GST_API_VERSION@.la
|
||||
$(AM_V_GEN)PKG_CONFIG_PATH="$(GST_PKG_CONFIG_PATH)" \
|
||||
|
@ -90,7 +89,7 @@ GstVideo-@GST_API_VERSION@.gir: $(INTROSPECTION_SCANNER) libgstvideo-@GST_API_VE
|
|||
--nsversion=@GST_API_VERSION@ \
|
||||
--strip-prefix=Gst \
|
||||
--warn-all \
|
||||
$(gir_cincludes) \
|
||||
--c-include "gst/video/gstvideo.h" \
|
||||
-I$(top_srcdir)/gst-libs \
|
||||
-I$(top_builddir)/gst-libs \
|
||||
--add-include-path=`PKG_CONFIG_PATH="$(GST_PKG_CONFIG_PATH)" $(PKG_CONFIG) --variable=girdir gstreamer-@GST_API_VERSION@` \
|
||||
|
|
50
gst-libs/gst/video/gstvideo.h
Normal file
50
gst-libs/gst/video/gstvideo.h
Normal file
|
@ -0,0 +1,50 @@
|
|||
/* GStreamer
|
||||
* Copyright (C) 2012 GStreamer developers
|
||||
*
|
||||
* gstvideo.h: single include header for gst-video library
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Library General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Library General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Library General Public
|
||||
* License along with this library; if not, write to the
|
||||
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
||||
* Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
#ifndef __GST_VIDEO_GST_VIDEO_H__
|
||||
#define __GST_VIDEO_GST_VIDEO_H__
|
||||
|
||||
#include <gst/video/colorbalancechannel.h>
|
||||
#include <gst/video/colorbalance.h>
|
||||
#include <gst/video/gstsurfaceconverter.h>
|
||||
#include <gst/video/gstsurfacemeta.h>
|
||||
#include <gst/video/gstvideodecoder.h>
|
||||
#include <gst/video/gstvideoencoder.h>
|
||||
#include <gst/video/gstvideofilter.h>
|
||||
#include <gst/video/gstvideometa.h>
|
||||
#include <gst/video/gstvideopool.h>
|
||||
#include <gst/video/gstvideosink.h>
|
||||
#include <gst/video/gstvideoutils.h>
|
||||
#include <gst/video/navigation.h>
|
||||
#include <gst/video/video-blend.h>
|
||||
#include <gst/video/video-color.h>
|
||||
#include <gst/video/videocontext.h>
|
||||
#include <gst/video/video-enumtypes.h>
|
||||
#include <gst/video/video-event.h>
|
||||
#include <gst/video/video-format.h>
|
||||
#include <gst/video/video-frame.h>
|
||||
#include <gst/video/video.h>
|
||||
#include <gst/video/video-info.h>
|
||||
#include <gst/video/videoorientation.h>
|
||||
#include <gst/video/video-overlay-composition.h>
|
||||
#include <gst/video/videooverlay.h>
|
||||
|
||||
#endif /* __GST_VIDEO_GST_VIDEO_H__ */
|
Loading…
Reference in a new issue