mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
25 lines
599 B
Makefile
25 lines
599 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_MAJORMINOR@.la \
|
|
$(GST_PLUGINS_BASE_LIBS) -lgsttag-@GST_MAJORMINOR@ -lgstvideo-@GST_MAJORMINOR@ \
|
|
$(GST_BASE_LIBS) $(GST_LIBS) $(VPX_LIBS)
|
|
libgstvp8_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = \
|
|
gstvp8dec.h \
|
|
gstvp8enc.h \
|
|
gstvp8utils.h
|