mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 03:19:40 +00:00
build: link libgstvaapi_parse against codec parser
GST_CODEC_PARSER_* variables are defined if builtin codec parsers are disabled when running configure. Right now, libgstcodecparsers links only to libgstvaapi, but libgstvaapi_parse need it if builtin codec parsers are disabled. This patch adds GST_CODEC_PARSER_* variables to libgstvaapi_parse compilation. If builtin codec parsers are enable, this variable is null, so it should work using libgstvaapi, as normal. Signed-off-by: Víctor Manuel Jáquez Leal <victorx.jaquez@intel.com> https://bugzilla.gnome.org/show_bug.cgi?id=754845
This commit is contained in:
parent
ccc9ce7101
commit
2aaafe96b7
1 changed files with 6 additions and 2 deletions
|
@ -210,14 +210,18 @@ libgstvaapi_parse_la_CFLAGS = \
|
|||
$(GST_CFLAGS) \
|
||||
$(GST_BASE_CFLAGS) \
|
||||
$(GST_PLUGINS_BASE_CFLAGS) \
|
||||
$(GST_VIDEO_CFLAGS)
|
||||
$(GST_VIDEO_CFLAGS) \
|
||||
$(GST_CODEC_PARSERS_CFLAGS) \
|
||||
$(NULL)
|
||||
|
||||
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)
|
||||
$(GST_VIDEO_LIBS) -lgstpbutils-$(GST_PKG_VERSION) \
|
||||
$(GST_CODEC_PARSERS_LIBS) \
|
||||
$(NULL)
|
||||
|
||||
libgstvaapi_parse_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstvaapi_parse_la_LIBTOOLFLAGS = --tag=disable-static
|
||||
|
|
Loading…
Reference in a new issue