mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +00:00
31 lines
769 B
Makefile
31 lines
769 B
Makefile
plugin_LTLIBRARIES = \
|
|
libgstvp8.la
|
|
|
|
libgstvp8_la_SOURCES = \
|
|
gstvp8dec.c \
|
|
gstvp8enc.c \
|
|
gstvp8utils.c \
|
|
plugin.c
|
|
|
|
libgstvp8_la_CFLAGS = \
|
|
$(GST_PLUGINS_BAD_CFLAGS) \
|
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
|
$(GST_BASE_CFLAGS) \
|
|
$(GST_CFLAGS) \
|
|
-DGST_USE_UNSTABLE_API
|
|
libgstvp8_la_LIBADD = \
|
|
$(top_builddir)/gst-libs/gst/video/libgstbasevideo-@GST_API_VERSION@.la \
|
|
$(GST_PLUGINS_BASE_LIBS) -lgsttag-@GST_API_VERSION@ -lgstvideo-@GST_API_VERSION@ \
|
|
$(GST_BASE_LIBS) $(GST_LIBS) $(VPX_LIBS)
|
|
libgstvp8_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstvp8_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|
|
noinst_HEADERS = \
|
|
gstvp8dec.h \
|
|
gstvp8enc.h \
|
|
gstvp8utils.h
|
|
|
|
presetdir = $(datadir)/gstreamer-$(GST_API_VERSION)/presets
|
|
preset_DATA = GstVP8Enc.prs
|
|
|
|
EXTRA_DIST = $(preset_DATA)
|