gstreamer/ext/aom/Makefile.am
Wonchul Lee 7d73307bc4 av1enc: Add configurations
Added rate control and profile related configuration. The profile
configuration has been copied from vpx.

https://bugzilla.gnome.org/show_bug.cgi?id=791674
2018-10-10 15:44:34 -04:00

18 lines
454 B
Makefile

plugin_LTLIBRARIES = libgstaom.la
libgstaom_la_SOURCES = \
gstaom.c \
gstav1enc.c \
gstav1dec.c \
gstav1utils.c
libgstaom_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS) $(AOM_CFLAGS)
libgstaom_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) $(GST_BASE_LIBS) $(GST_LIBS) -lgstvideo-$(GST_API_VERSION) $(AOM_LIBS)
libgstaom_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
noinst_HEADERS = \
gstaom.h \
gstav1dec.h \
gstav1enc.h \
gstav1utils.h