mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 11:29:55 +00:00
001a5c637d
Working on bug #744042 I realized that the gstvaapiuploader is practically not used. This patch removes the gstvaapiuploader and add the method gst_vaapi_plugin_base_get_allowed_raw_caps () that returns the raw caps that the system can handle, which is used by vaapisink and vaapipostproc. Signed-off-by: Víctor Manuel Jáquez Leal <victorx.jaquez@intel.com> https://bugzilla.gnome.org/show_bug.cgi?id=752777
268 lines
6.6 KiB
Makefile
268 lines
6.6 KiB
Makefile
plugin_LTLIBRARIES = libgstvaapi.la
|
|
|
|
libgstvaapi_CFLAGS = \
|
|
$(LIBVA_CFLAGS) \
|
|
-DGST_USE_UNSTABLE_API \
|
|
-I$(top_srcdir)/gst-libs \
|
|
-I$(top_builddir)/gst-libs \
|
|
$(NULL)
|
|
|
|
libgstvaapi_LIBS = \
|
|
$(top_builddir)/gst-libs/gst/vaapi/libgstvaapi-$(GST_API_VERSION).la
|
|
|
|
if USE_DRM
|
|
libgstvaapi_LIBS += \
|
|
$(top_builddir)/gst-libs/gst/vaapi/libgstvaapi-drm-$(GST_API_VERSION).la
|
|
endif
|
|
|
|
if USE_X11
|
|
libgstvaapi_LIBS += \
|
|
$(X11_LIBS) \
|
|
$(top_builddir)/gst-libs/gst/vaapi/libgstvaapi-x11-$(GST_API_VERSION).la
|
|
endif
|
|
|
|
if USE_GLX
|
|
libgstvaapi_LIBS += \
|
|
$(top_builddir)/gst-libs/gst/vaapi/libgstvaapi-glx-$(GST_API_VERSION).la
|
|
endif
|
|
|
|
if USE_EGL
|
|
libgstvaapi_LIBS += \
|
|
$(top_builddir)/gst-libs/gst/vaapi/libgstvaapi-egl-$(GST_API_VERSION).la
|
|
endif
|
|
|
|
if USE_WAYLAND
|
|
libgstvaapi_CFLAGS += \
|
|
$(WAYLAND_CFLAGS) \
|
|
$(NULL)
|
|
|
|
libgstvaapi_LIBS += \
|
|
$(top_builddir)/gst-libs/gst/vaapi/libgstvaapi-wayland-$(GST_API_VERSION).la
|
|
endif
|
|
|
|
if USE_GST_GL_HELPERS
|
|
libgstvaapi_CFLAGS += $(GST_GL_CFLAGS)
|
|
libgstvaapi_LIBS += $(GST_GL_LIBS)
|
|
endif
|
|
|
|
libgstvaapi_source_c = \
|
|
gstvaapi.c \
|
|
gstvaapidecode.c \
|
|
gstvaapipluginbase.c \
|
|
gstvaapipluginutil.c \
|
|
gstvaapipostproc.c \
|
|
gstvaapisink.c \
|
|
gstvaapivideobuffer.c \
|
|
gstvaapivideocontext.c \
|
|
gstvaapivideometa.c \
|
|
gstvaapidecodebin.c \
|
|
gstvaapivideobufferpool.c \
|
|
gstvaapivideomemory.c \
|
|
$(NULL)
|
|
|
|
libgstvaapi_source_h = \
|
|
gstcompat.h \
|
|
gstvaapidecode.h \
|
|
gstvaapipluginbase.h \
|
|
gstvaapipluginutil.h \
|
|
gstvaapipostproc.h \
|
|
gstvaapisink.h \
|
|
gstvaapivideobuffer.h \
|
|
gstvaapivideocontext.h \
|
|
gstvaapivideometa.h \
|
|
gstvaapidecodebin.h \
|
|
gstvaapivideobufferpool.h \
|
|
gstvaapivideomemory.h \
|
|
$(NULL)
|
|
|
|
libgstvaapi_enc_source_c = \
|
|
gstvaapiencode.c \
|
|
gstvaapiencode_h264.c \
|
|
gstvaapiencode_mpeg2.c \
|
|
$(NULL)
|
|
|
|
libgstvaapi_enc_source_h = \
|
|
gstvaapiencode.h \
|
|
gstvaapiencode_h264.h \
|
|
gstvaapiencode_mpeg2.h \
|
|
$(NULL)
|
|
|
|
if USE_ENCODERS
|
|
libgstvaapi_source_c += $(libgstvaapi_enc_source_c)
|
|
libgstvaapi_source_h += $(libgstvaapi_enc_source_h)
|
|
endif
|
|
|
|
libgstvaapi_jpegenc_source_c = gstvaapiencode_jpeg.c
|
|
libgstvaapi_jpegenc_source_h = gstvaapiencode_jpeg.h
|
|
if USE_JPEG_ENCODER
|
|
libgstvaapi_source_c += $(libgstvaapi_jpegenc_source_c)
|
|
libgstvaapi_source_h += $(libgstvaapi_jpegenc_source_h)
|
|
endif
|
|
|
|
libgstvaapi_vp8enc_source_c = gstvaapiencode_vp8.c
|
|
libgstvaapi_vp8enc_source_h = gstvaapiencode_vp8.h
|
|
if USE_VP8_ENCODER
|
|
libgstvaapi_source_c += $(libgstvaapi_vp8enc_source_c)
|
|
libgstvaapi_source_h += $(libgstvaapi_vp8enc_source_h)
|
|
endif
|
|
|
|
|
|
libgstvaapi_h265enc_source_c = gstvaapiencode_h265.c
|
|
libgstvaapi_h265enc_source_h = gstvaapiencode_h265.h
|
|
if USE_H265_ENCODER
|
|
libgstvaapi_source_c += $(libgstvaapi_h265enc_source_c)
|
|
libgstvaapi_source_h += $(libgstvaapi_h265enc_source_h)
|
|
endif
|
|
|
|
|
|
|
|
libgstvaapi_egl_source_c =
|
|
libgstvaapi_egl_source_h =
|
|
|
|
if USE_EGL
|
|
libgstvaapi_source_c += $(libgstvaapi_egl_source_c)
|
|
libgstvaapi_source_h += $(libgstvaapi_egl_source_h)
|
|
endif
|
|
|
|
libgstvaapi_1_2p_source_c = \
|
|
gstvaapivideometa_texture.c \
|
|
$(NULL)
|
|
|
|
libgstvaapi_1_2p_source_h = \
|
|
gstvaapivideometa_texture.h \
|
|
$(NULL)
|
|
|
|
if USE_GST_API_1_2p
|
|
libgstvaapi_source_c += $(libgstvaapi_1_2p_source_c)
|
|
libgstvaapi_source_h += $(libgstvaapi_1_2p_source_h)
|
|
endif
|
|
|
|
libgstvaapi_la_SOURCES = $(libgstvaapi_source_c)
|
|
noinst_HEADERS = $(libgstvaapi_source_h)
|
|
|
|
libgstvaapi_la_CFLAGS = \
|
|
$(libgstvaapi_CFLAGS) \
|
|
$(GST_CFLAGS) \
|
|
$(GST_BASE_CFLAGS) \
|
|
$(GST_VIDEO_CFLAGS) \
|
|
$(GST_INTERFACES_CFLAGS) \
|
|
$(GST_BASEVIDEO_CFLAGS) \
|
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
|
$(GST_ALLOCATORS_CFLAGS)
|
|
|
|
libgstvaapi_la_LIBADD = \
|
|
$(libgstvaapi_LIBS) \
|
|
$(GST_LIBS) \
|
|
$(GST_BASE_LIBS) \
|
|
$(GST_VIDEO_LIBS) -lgstpbutils-$(GST_PKG_VERSION) \
|
|
$(GST_INTERFACES_LIBS) \
|
|
$(GST_BASEVIDEO_LIBS) \
|
|
$(GST_PLUGINS_BASE_LIBS) \
|
|
$(GST_ALLOCATORS_LIBS)
|
|
|
|
libgstvaapi_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstvaapi_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|
|
BUILT_SOURCES =
|
|
|
|
if USE_LOCAL_VIDEO_PARSERS
|
|
plugin_LTLIBRARIES += libgstvaapi_parse.la
|
|
|
|
libgstvaapi_parse_gen_source_c = \
|
|
gsth264parse.c \
|
|
$(NULL)
|
|
|
|
libgstvaapi_parse_gen_source_h = \
|
|
gsth264parse.h \
|
|
$(NULL)
|
|
|
|
libgstvaapi_1_4p_parse_gen_source_c = \
|
|
gsth265parse.c \
|
|
$(NULL)
|
|
|
|
libgstvaapi_1_4p_parse_gen_source_h = \
|
|
gsth265parse.h \
|
|
$(NULL)
|
|
|
|
libgstvaapi_parse_gen_sources = \
|
|
$(libgstvaapi_parse_gen_source_c) \
|
|
$(libgstvaapi_parse_gen_source_h) \
|
|
$(NUL)
|
|
|
|
libgstvaapi_parse_gen_sources += $(libgstvaapi_1_4p_parse_gen_source_c)
|
|
libgstvaapi_parse_gen_sources += $(libgstvaapi_1_4p_parse_gen_source_h)
|
|
|
|
libgstvaapi_parse_source_c = gstvaapiparse.c $(libgstvaapi_parse_gen_source_c)
|
|
libgstvaapi_parse_source_h = gstvaapiparse.h $(libgstvaapi_parse_gen_source_h)
|
|
|
|
if USE_GST_API_1_4p
|
|
libgstvaapi_parse_source_c += $(libgstvaapi_1_4p_parse_gen_source_c)
|
|
libgstvaapi_parse_source_h += $(libgstvaapi_1_4p_parse_gen_source_h)
|
|
endif
|
|
|
|
libgstvaapi_parse_la_SOURCES = $(libgstvaapi_parse_source_c)
|
|
noinst_HEADERS += $(libgstvaapi_parse_source_h)
|
|
|
|
libgstvaapi_parse_la_CFLAGS = \
|
|
-DGST_USE_UNSTABLE_API \
|
|
-I$(top_srcdir)/gst-libs \
|
|
-I$(top_builddir)/gst-libs \
|
|
$(GST_CFLAGS) \
|
|
$(GST_BASE_CFLAGS) \
|
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
|
$(GST_VIDEO_CFLAGS)
|
|
|
|
libgstvaapi_parse_la_LIBADD = \
|
|
$(top_builddir)/gst-libs/gst/codecparsers/libgstvaapi-codecparsers.la \
|
|
$(GST_LIBS) \
|
|
$(GST_BASE_LIBS) \
|
|
$(GST_PLUGINS_BASE_LIBS) \
|
|
$(GST_VIDEO_LIBS) -lgstpbutils-$(GST_PKG_VERSION)
|
|
|
|
libgstvaapi_parse_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstvaapi_parse_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|
|
videoparsers_sources_dir = \
|
|
$(top_srcdir)/ext/codecparsers/gst/videoparsers
|
|
videoparsers_patches_dir = \
|
|
$(top_srcdir)/patches/videoparsers
|
|
include $(videoparsers_patches_dir)/series.frag
|
|
videoparsers_patches = \
|
|
$(videoparsers_patches_base:%=$(top_srcdir)/patches/videoparsers/%)
|
|
|
|
videoparsers.prepare.stamp: $(videoparsers_patches)
|
|
@for f in $(libgstvaapi_parse_gen_sources); do \
|
|
cp -f $(videoparsers_sources_dir)/$$f $$f; \
|
|
done
|
|
@for f in $(videoparsers_patches); do \
|
|
patch -p3 < $$f; \
|
|
done
|
|
@touch $@
|
|
|
|
BUILT_SOURCES += videoparsers.prepare.stamp
|
|
endif
|
|
|
|
CLEANFILES = \
|
|
videoparsers.prepare.stamp \
|
|
$(libgstvaapi_parse_gen_sources)
|
|
|
|
EXTRA_DIST = \
|
|
$(libgstvaapi_enc_source_c) \
|
|
$(libgstvaapi_enc_source_h) \
|
|
$(libgstvaapi_jpegenc_source_c) \
|
|
$(libgstvaapi_jpegenc_source_h) \
|
|
$(libgstvaapi_vp8enc_source_c) \
|
|
$(libgstvaapi_vp8enc_source_h) \
|
|
$(libgstvaapi_h265enc_source_c) \
|
|
$(libgstvaapi_h265enc_source_h) \
|
|
$(libgstvaapi_egl_source_c) \
|
|
$(libgstvaapi_egl_source_h) \
|
|
$(libgstvaapi_1_2p_source_c) \
|
|
$(libgstvaapi_1_2p_source_h) \
|
|
$(libgstvaapi_parse_source_c) \
|
|
$(libgstvaapi_parse_source_h) \
|
|
$(libgstvaapi_1_4p_parse_gen_source_c) \
|
|
$(libgstvaapi_1_4p_parse_gen_source_h) \
|
|
$(NULL)
|
|
|
|
-include $(top_srcdir)/git.mk
|