mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-15 13:53:19 +00:00
2d20073eb3
Original commit message from CVS: A rather large update: - a new videosink using plain X windows (xvideosink). It uses capsnego to set up it's formats. - gstplay uses the new xvideosink and a gtk_socket. The initial window size is set to 0x0 so you need to resize it before you see something. - got rid of the video metadata include file in favour of properties and caps negotiation - adjusted most plugins to not use the metadata.
31 lines
840 B
Makefile
31 lines
840 B
Makefile
# FIXME FIXME
|
|
|
|
noinst_PROGRAMS = qtest spectrum record wave mp3 teardown buffer mp3parse \
|
|
mpeg2parse mp1parse mp3play ac3parse ac3play dvdcat fake cobin videotest \
|
|
aviparse vidcapture avi2mpg mp2tomp1 mp1tomp1 pipetest \
|
|
vidcapture2 mp2toavi mp3tovorbis mpeg2parse2 xmmstest videotest2
|
|
|
|
SUBDIRS = xml bindings
|
|
|
|
buffer_SOURCES = buffer.c mem.c
|
|
teardown_SOURCES = teardown.c mem.c
|
|
ac3play_SOURCES = ac3play.c mem.c
|
|
|
|
noinst_HEADERS = mem.h
|
|
|
|
if HAVE_LIBXV
|
|
xvlibs=-lXv
|
|
else
|
|
xvlibs=
|
|
endif
|
|
|
|
LDADD = ${xvlibs} -lXxf86vm
|
|
|
|
#LDADD = $(GLIB_LIBS) $(GTK_LIBS) $(top_builddir)/gst/libgst.la \
|
|
# $(top_builddir)/plugins/videosink/libvideosink.la -L/usr/X11/lib -lXxf86dga
|
|
#LDADD = $(GLIB_LIBS) $(GTK_LIBS) $(top_builddir)/gst/libgst.la
|
|
|
|
LIBS += $(GNOME_LIBS) $(GST_LIBS)
|
|
CFLAGS += $(GNOME_CFLAGS) $(GST_CFLAGS)
|
|
|
|
EXTRA_DIST = README
|