mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
3e1e367954
Original commit message from CVS: This is a major update to the dparams api - I think it is now much cleaner and the app-side is much easier to use. highlights are: - GParamSpecs are now used throughout to define dparams - currently limited to supporting types gfloat, gint and gint64. this should cover 99% of cases and new types can be added in the future - application-side api is now based almost entirely on setting object properties - the smoothing dparam is now a subclass of GstDParam - array-mode is not yet implemented but is not forgotton time to start documenting
22 lines
516 B
Makefile
22 lines
516 B
Makefile
librarydir = $(libdir)/gst
|
|
|
|
library_LTLIBRARIES = libgstcontrol.la
|
|
|
|
libgstcontrolincludedir = $(includedir)/gst/control
|
|
libgstcontrolinclude_HEADERS = \
|
|
control.h \
|
|
dparammanager.h \
|
|
dparam.h \
|
|
dparam_smooth.h \
|
|
dparamcommon.h \
|
|
dplinearinterp.h
|
|
|
|
libgstcontrol_la_SOURCES = \
|
|
control.c \
|
|
dparammanager.c \
|
|
dparam.c \
|
|
dparam_smooth.c \
|
|
dplinearinterp.c
|
|
|
|
libgstcontrol_la_CFLAGS = $(GST_CFLAGS) -finline-functions -ffast-math
|
|
libgstcontrol_la_LDFLAGS = @GST_PLUGIN_LDFLAGS@
|