mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 02:01:12 +00:00
cbb196fd31
Original commit message from CVS: Rewrote the mpeg1 system stream parser. Fixed a motion compensation bug (was a bug on Intels site) Faster/Better/more accurate motion detection in the mpeg encoder Added an audio resampler (convert 48000 kHz to 44100 for example) does not work Fixed rate control in the mpeg2 encoder.
39 lines
1.7 KiB
Makefile
39 lines
1.7 KiB
Makefile
#noinst_PROGRAMS = basic m types a r plugin w s args mpg123 mcut push qtest
|
|
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
|
|
|
|
SUBDIRS = xml cothreads bindings
|
|
|
|
spectrum_CFLAGS = $(shell gnome-config --cflags gnomeui)
|
|
spectrum_LDFLAGS = $(shell gnome-config --libs gnomeui)
|
|
wave_CFLAGS = $(shell gnome-config --cflags gnomeui)
|
|
wave_LDFLAGS = $(shell gnome-config --libs gnomeui)
|
|
videotest_CFLAGS = $(shell gnome-config --cflags gnomeui)
|
|
videotest_LDFLAGS = $(shell gnome-config --libs gnomeui)
|
|
aviparse_CFLAGS = $(shell gnome-config --cflags gnomeui)
|
|
aviparse_LDFLAGS = $(shell gnome-config --libs gnomeui)
|
|
mp1parse_CFLAGS = $(shell gnome-config --cflags gnomeui)
|
|
mp1parse_LDFLAGS = $(shell gnome-config --libs gnomeui)
|
|
mpeg2parse_CFLAGS = $(shell gnome-config --cflags gnomeui)
|
|
mpeg2parse_LDFLAGS = $(shell gnome-config --libs gnomeui)
|
|
mp2tomp1_CFLAGS = $(shell gnome-config --cflags gnomeui)
|
|
mp2tomp1_LDFLAGS = $(shell gnome-config --libs gnomeui)
|
|
mp1tomp1_CFLAGS = $(shell gnome-config --cflags gnomeui)
|
|
mp1tomp1_LDFLAGS = $(shell gnome-config --libs gnomeui)
|
|
|
|
buffer_SOURCES = buffer.c mem.c
|
|
teardown_SOURCES = teardown.c mem.c
|
|
ac3play_SOURCES = ac3play.c mem.c
|
|
|
|
noinst_HEADERS = mem.h
|
|
|
|
#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
|
|
|
|
|
|
INCLUDES = $(GLIB_CFLAGS) $(GTK_CFLAGS) -I$(top_srcdir) \
|
|
$(shell gnome-config --cflags gnomeui)
|
|
|
|
EXTRA_DIST = README
|