mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 05:12:09 +00:00
a3d5d3a62b
Original commit message from CVS: Switched Cr and Cb in YUV2RGB fixed the avi parser (gstriff had wrong size) the system_encoder can now do video only system streams sanitized the colorspace and scaler api. added fast self modifying asm scaler. worked on the typefind stuff. added a cool media player (gstplay) it uses the typefinder to playback avi, mpeg1 (system and video) streams. It is also a testbed and a real app.
48 lines
930 B
Makefile
48 lines
930 B
Makefile
filterdir = $(libdir)/gst
|
|
|
|
filter_LTLIBRARIES = libgstelements.la
|
|
|
|
if HAVE_LIBGHTTP
|
|
GSTHTTPSRC=gsthttpsrc.c
|
|
else
|
|
GSTHTTPSRC=
|
|
endif
|
|
|
|
libgstelements_la_DEPENDENCIES = ../libgst.la
|
|
libgstelements_la_SOURCES = \
|
|
gstelements.c \
|
|
gstfakesrc.c \
|
|
gstidentity.c \
|
|
gstfakesink.c \
|
|
gstdisksrc.c \
|
|
gstasyncdisksrc.c \
|
|
gstfdsrc.c \
|
|
$(GSTHTTPSRC) \
|
|
gstaudiosink.c \
|
|
gstaudiosrc.c \
|
|
gstfdsink.c \
|
|
gstpipefilter.c \
|
|
gstqueue.c \
|
|
gsttypefind.c \
|
|
gstsinesrc.c
|
|
|
|
noinst_HEADERS = \
|
|
gstfakesrc.h \
|
|
gstidentity.h \
|
|
gstfakesink.h \
|
|
gstdisksrc.h \
|
|
gstasyncdisksrc.h \
|
|
gstfdsrc.h \
|
|
gsthttpsrc.h \
|
|
gstaudiosink.h \
|
|
gstaudiosrc.h \
|
|
gstfdsink.h \
|
|
gstpipefilter.h \
|
|
gstqueue.h \
|
|
gsttypefind.h \
|
|
gstsinesrc.h
|
|
|
|
CFLAGS += -O2 -Wall
|
|
|
|
libgstelements_la_LIBADD = $(GLIB_LIBS) $(GTK_LIBS) $(GHTTP_LIBS)
|
|
libgstelements_la_LDFLAGS = -version-info $(STREAMER_CURRENT):$(STREAMER_REVISION):$(STREAMER_AGE)
|