mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
2a4e3d2110
This is using libvpx, which can support more codecs than just VP8 and will likely support future codecs.
30 lines
682 B
Makefile
30 lines
682 B
Makefile
plugin_LTLIBRARIES = \
|
|
libgstvpx.la
|
|
|
|
libgstvpx_la_SOURCES = \
|
|
gstvp8dec.c \
|
|
gstvp8enc.c \
|
|
gstvp8utils.c \
|
|
plugin.c
|
|
|
|
libgstvpx_la_CFLAGS = \
|
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
|
$(GST_BASE_CFLAGS) \
|
|
$(GST_CFLAGS) \
|
|
$(VPX_CFLAGS) \
|
|
-DGST_USE_UNSTABLE_API
|
|
libgstvpx_la_LIBADD = \
|
|
$(GST_PLUGINS_BASE_LIBS) -lgsttag-@GST_API_VERSION@ -lgstvideo-@GST_API_VERSION@ \
|
|
$(GST_BASE_LIBS) $(GST_LIBS) $(VPX_LIBS)
|
|
libgstvpx_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstvpx_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)
|