1 # variables used for enum generation
3 include $(top_srcdir)/common/orc.mak
5 glib_enum_headers = video.h video-format.h video-color.h video-info.h video-dither.h \
6 colorbalance.h navigation.h video-chroma.h video-tile.h video-converter.h \
7 video-resampler.h video-frame.h video-scaler.h video-anc.h \
8 video-overlay-composition.h
9 glib_enum_define = GST_VIDEO
10 glib_gen_prefix = gst_video
11 glib_gen_basename = video
12 glib_gen_decl_banner=GST_VIDEO_API
13 glib_gen_decl_include=\#include <gst/video/video-prelude.h>
15 built_sources = video-enumtypes.c
16 built_headers = video-enumtypes.h
17 BUILT_SOURCES += $(built_sources) $(built_headers)
19 lib_LTLIBRARIES = libgstvideo-@GST_API_VERSION@.la
21 CLEANFILES = $(BUILT_SOURCES)
23 libgstvideo_@GST_API_VERSION@_la_SOURCES = \
25 cameracontrolchannel.c \
27 colorbalancechannel.c \
41 gstvideoaggregator.c \
45 gstvideoaffinetransformationmeta.c \
54 gstvideoutilsprivate.c \
57 video-overlay-composition.c \
61 nodist_libgstvideo_@GST_API_VERSION@_la_SOURCES = $(BUILT_SOURCES)
63 libgstvideo_@GST_API_VERSION@includedir = $(includedir)/gstreamer-@GST_API_VERSION@/gst/video
64 libgstvideo_@GST_API_VERSION@include_HEADERS = \
66 cameracontrolchannel.h \
68 colorbalancechannel.h \
83 gstvideoaggregator.h \
87 gstvideoaffinetransformationmeta.h \
97 video-overlay-composition.h \
101 nodist_libgstvideo_@GST_API_VERSION@include_HEADERS = $(built_headers)
102 noinst_HEADERS = gstvideoutilsprivate.h
104 libgstvideo_@GST_API_VERSION@_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS) \
105 $(ORC_CFLAGS) -DBUILDING_GST_VIDEO
106 libgstvideo_@GST_API_VERSION@_la_LIBADD = $(GST_BASE_LIBS) $(GST_LIBS) $(ORC_LIBS) $(LIBM)
107 libgstvideo_@GST_API_VERSION@_la_LDFLAGS = $(GST_LIB_LDFLAGS) $(GST_ALL_LDFLAGS) $(GST_LT_LDFLAGS)
109 include $(top_srcdir)/common/gst-glib-gen.mak
111 if HAVE_INTROSPECTION
112 BUILT_GIRSOURCES = GstVideo-@GST_API_VERSION@.gir
114 gir_headers=$(patsubst %,$(srcdir)/%, $(libgstvideo_@GST_API_VERSION@include_HEADERS))
115 gir_headers+=$(patsubst %,$(builddir)/%, $(built_headers))
116 gir_sources=$(patsubst %,$(srcdir)/%, $(libgstvideo_@GST_API_VERSION@_la_SOURCES))
117 gir_sources+=$(patsubst %,$(builddir)/%, $(built_sources))
119 GstVideo-@GST_API_VERSION@.gir: $(INTROSPECTION_SCANNER) libgstvideo-@GST_API_VERSION@.la
120 $(AM_V_GEN)PKG_CONFIG_PATH="$(GST_PKG_CONFIG_PATH)" GI_SCANNER_DISABLE_CACHE=yes\
121 GST_PLUGIN_SYSTEM_PATH_1_0="" GST_PLUGIN_PATH_1_0="" GST_REGISTRY_DISABLE=yes \
122 CPPFLAGS="$(CPPFLAGS)" CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS)" CC="$(CC)" PKG_CONFIG="$(PKG_CONFIG)" DLLTOOL="$(DLLTOOL)" \
123 $(INTROSPECTION_SCANNER) -v --namespace GstVideo \
124 --nsversion=@GST_API_VERSION@ \
125 --identifier-prefix=Gst \
126 --symbol-prefix=gst \
128 --c-include "gst/video/video.h" \
129 -I$(top_srcdir)/gst-libs \
130 -I$(top_builddir)/gst-libs \
131 --add-include-path=`PKG_CONFIG_PATH="$(GST_PKG_CONFIG_PATH)" $(PKG_CONFIG) --variable=girdir gstreamer-@GST_API_VERSION@` \
132 --add-include-path=`PKG_CONFIG_PATH="$(GST_PKG_CONFIG_PATH)" $(PKG_CONFIG) --variable=girdir gstreamer-base-@GST_API_VERSION@` \
133 --library=libgstvideo-@GST_API_VERSION@.la \
134 --include=Gst-@GST_API_VERSION@ \
135 --include=GstBase-@GST_API_VERSION@ \
136 --libtool="${LIBTOOL}" \
137 --pkg gstreamer-@GST_API_VERSION@ \
138 --pkg gstreamer-base-@GST_API_VERSION@ \
139 --pkg-export gstreamer-video-@GST_API_VERSION@ \
140 --add-init-section="$(INTROSPECTION_INIT)" \
145 # INTROSPECTION_GIRDIR/INTROSPECTION_TYPELIBDIR aren't the right place to
146 # install anything - we need to install inside our prefix.
147 girdir = $(datadir)/gir-1.0
148 gir_DATA = $(BUILT_GIRSOURCES)
150 typelibsdir = $(libdir)/girepository-1.0/
152 typelibs_DATA = $(BUILT_GIRSOURCES:.gir=.typelib)
154 %.typelib: %.gir $(INTROSPECTION_COMPILER)
155 $(AM_V_GEN)PKG_CONFIG_PATH="$(GST_PKG_CONFIG_PATH)" \
156 $(INTROSPECTION_COMPILER) \
157 --includedir=$(srcdir) \
158 --includedir=$(builddir) \
159 --includedir=`PKG_CONFIG_PATH="$(GST_PKG_CONFIG_PATH)" $(PKG_CONFIG) --variable=girdir gstreamer-@GST_API_VERSION@` \
160 --includedir=`PKG_CONFIG_PATH="$(GST_PKG_CONFIG_PATH)" $(PKG_CONFIG) --variable=girdir gstreamer-base-@GST_API_VERSION@` \
161 $(INTROSPECTION_COMPILER_OPTS) $< -o $(@F)
163 CLEANFILES += $(BUILT_GIRSOURCES) $(typelibs_DATA)