mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 07:47:17 +00:00
b38d9a945b
Original commit message from CVS: A rather large patch: - changed the API for the padtemplates: - remove the factories (array of pointers) for the padtemplates, properties and caps. The static array was a nice idea but converting all the property values to a gpointer was not a good idea. float properties were not possible, and casting a gint to a pointer is not very portable. The new API just uses the _padtemplate_new, _caps_new and _props_new functions to create the templates. This has the added benefit that the API is now uniform for static and dynamic templates and that the code can be made cleaner. - lots of cleanups in the way the capabilities are constructed (va_list) - lots of updates for all the plugins (new API) - docs updates (new API) - removed the videoraw docs.
42 lines
892 B
Makefile
42 lines
892 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
# FIXME FIXME
|
|
|
|
LIBADD += $(GNOME_LIBS) $(GST_LIBS)
|
|
CFLAGS += $(GNOME_CFLAGS) $(GST_CFLAGS) -DDATADIR=\""$(gladedir)/"\"
|
|
|
|
bin_PROGRAMS = gstmediaplay
|
|
|
|
lib_LTLIBRARIES = libgstmediaplay.la
|
|
|
|
man_MANS = gstmediaplay.1
|
|
|
|
gladedir = $(datadir)/gstmediaplay
|
|
glade_DATA = gstmediaplay.glade play.xpm stop.xpm pause.xpm
|
|
|
|
EXTRA_DIST = $(glade_DATA) $(man_MANS)
|
|
|
|
libgstmediaplay_la_SOURCES = \
|
|
gstplay.c \
|
|
gstmediaplay.c \
|
|
gststatusarea.c \
|
|
callbacks.c
|
|
|
|
gstmediaplay_SOURCES = \
|
|
main.c
|
|
|
|
libgstmediaplayincludedir = $(includedir)/gstplay
|
|
libgstmediaplayinclude_HEADERS = \
|
|
gstplay.h
|
|
|
|
noinst_HEADERS = \
|
|
gstmediaplay.h \
|
|
gststatusarea.h \
|
|
callbacks.h \
|
|
gstplayprivate.h
|
|
|
|
|
|
libgstmediaplay_la_LDFLAGS = -rdynamic
|
|
|
|
gstmediaplay_CFLAGS = $(LIBGLADE_GNOME_CFLAGS)
|
|
gstmediaplay_LDADD = $(GST_LIBS) $(LIBGLADE_GNOME_LIBS) libgstmediaplay.la
|