mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 14:56:36 +00:00
92d4e11782
Original commit message from CVS: Initial revision
20 lines
419 B
Makefile
20 lines
419 B
Makefile
filterdir = $(libdir)/gst
|
|
|
|
filter_LTLIBRARIES = libgstvideoscale.la
|
|
|
|
if HAVE_CPU_I386
|
|
ARCHSRCS = \
|
|
videoscale_x86.c \
|
|
videoscale_x86_asm.s
|
|
else
|
|
ARCHSRCS =
|
|
endif
|
|
|
|
libgstvideoscale_la_SOURCES = \
|
|
gstvideoscale.c \
|
|
videoscale.c \
|
|
$(ARCHSRCS)
|
|
libvideoscale_la_CFLAGS = -O2 $(FOMIT_FRAME_POINTER) -funroll-all-loops -finline-functions -ffast-math $(GST_CFLAGS)
|
|
|
|
noinst_HEADERS = gstvideoscale.h videoscale_x86.h
|
|
|