mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-03 14:08:56 +00:00
86db423828
Add some guards and fat warnings to the header files with still unstable API, so people who just look at the installed headers know that it actually is unstable API. Merging previous commit into current codebase.
23 lines
629 B
Makefile
23 lines
629 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_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstvp8_la_LIBADD = $(GST_LIBS) $(GST_BASE_LIBS)
|
|
libgstvp8_la_LIBADD += $(GST_PLUGINS_BASE_LIBS) -lgsttag-@GST_MAJORMINOR@ -lgstvideo-@GST_MAJORMINOR@
|
|
libgstvp8_la_LIBADD += $(top_builddir)/gst-libs/gst/video/libgstbasevideo-@GST_MAJORMINOR@.la
|
|
libgstvp8_la_LIBADD += $(VPX_LIBS)
|
|
|
|
noinst_HEADERS = \
|
|
gstvp8utils.h
|