mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
7d73307bc4
Added rate control and profile related configuration. The profile configuration has been copied from vpx. https://bugzilla.gnome.org/show_bug.cgi?id=791674
17 lines
454 B
Makefile
17 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
|