mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-28 12:41:05 +00:00
53735eaa72
This is initial preset file, currently with only one profile for realtime encoding. Signed-off-by: Oleksij Rempel (Alexey Fisher) <bug-track@fisher-privat.net>
31 lines
765 B
Makefile
31 lines
765 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)
|
|
libgstvp8_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|
|
noinst_HEADERS = \
|
|
gstvp8dec.h \
|
|
gstvp8enc.h \
|
|
gstvp8utils.h
|
|
|
|
presetdir = $(datadir)/gstreamer-$(GST_MAJORMINOR)/presets
|
|
preset_DATA = GstVP8Enc.prs
|
|
|
|
EXTRA_DIST = $(preset_DATA)
|