mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-15 13:53:19 +00:00
58a66780d8
Original commit message from CVS: slightly changed the Makefile.am in videoscale libs. v4lsrc works again A little modification to the videotest programm to use a tee element. added support for multiple paths in --gst-plugin_path=. added ab ENV variable GST_PLUGIN_PATH to specify extra directories to look for plugins.
19 lines
552 B
Makefile
19 lines
552 B
Makefile
filterdir = $(libdir)/gst
|
|
|
|
filter_LTLIBRARIES = libgstvideoscale.la
|
|
|
|
if HAVE_CPU_I386
|
|
SCALER = gstscale_x86.c gstscale_x86_asm.s
|
|
else
|
|
SCALER =
|
|
endif
|
|
|
|
libgstvideoscale_la_SOURCES = gstvideoscale.c $(SCALER)
|
|
|
|
libgstvideoscaleincludedir = $(includedir)/gst/libs/gstvideoscale
|
|
libgstvideoscaleinclude_HEADERS = gstvideoscale.h
|
|
|
|
noinst_HEADERS = gstscale_x86.h
|
|
|
|
#CFLAGS += -S -O1 $(FOMIT_FRAME_POINTER) -funroll-all-loops -finline-functions -ffast-math
|
|
CFLAGS = $(GLIB_CFLAGS) $(GTK_CFLAGS) $(GST_CFLAGS) $(XML_CFLAGS) -O5 -fomit-frame-pointer -ffast-math
|