mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
8102023d0b
Original commit message from CVS: * configure.ac: * gst/deinterlace2/Makefile.am: * gst/deinterlace2/tvtime/greedyh.asm: * gst/deinterlace2/tvtime/tomsmocomp/SearchLoopBottom.inc: Fix compilation on generic x86/amd64 and include deinterlace2 in the build system. Because of several bugs it's still enabled only by --enable-experimental.
46 lines
1.4 KiB
Makefile
46 lines
1.4 KiB
Makefile
plugin_LTLIBRARIES = libgstdeinterlace2.la
|
|
|
|
libgstdeinterlace2_la_SOURCES = \
|
|
gstdeinterlace2.c \
|
|
tvtime/greedy.c \
|
|
tvtime/greedyh.asm \
|
|
tvtime/greedyh.c \
|
|
tvtime/speedy.c \
|
|
tvtime/vfir.c \
|
|
tvtime/x86-64_macros.inc \
|
|
tvtime/tomsmocomp.c \
|
|
tvtime/tomsmocomp/SearchLoop0A.inc \
|
|
tvtime/tomsmocomp/SearchLoopBottom.inc \
|
|
tvtime/tomsmocomp/SearchLoopEdgeA8.inc \
|
|
tvtime/tomsmocomp/SearchLoopEdgeA.inc \
|
|
tvtime/tomsmocomp/SearchLoopOddA2.inc \
|
|
tvtime/tomsmocomp/SearchLoopOddA6.inc \
|
|
tvtime/tomsmocomp/SearchLoopOddAH2.inc \
|
|
tvtime/tomsmocomp/SearchLoopOddAH.inc \
|
|
tvtime/tomsmocomp/SearchLoopOddA.inc \
|
|
tvtime/tomsmocomp/SearchLoopTop.inc \
|
|
tvtime/tomsmocomp/SearchLoopVAH.inc \
|
|
tvtime/tomsmocomp/SearchLoopVA.inc \
|
|
tvtime/tomsmocomp/StrangeBob.inc \
|
|
tvtime/tomsmocomp/TomsMoCompAll2.inc \
|
|
tvtime/tomsmocomp/TomsMoCompAll.inc \
|
|
tvtime/tomsmocomp/tomsmocompmacros.h \
|
|
tvtime/tomsmocomp/WierdBob.inc
|
|
|
|
libgstdeinterlace2_la_CFLAGS = $(GST_CFLAGS) \
|
|
$(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(LIBOIL_CFLAGS) -DHAVE_MMX -DHAVE_SSE
|
|
libgstdeinterlace2_la_LIBADD = $(GST_LIBS) \
|
|
$(GST_PLUGINS_BASE_LIBS) -lgstvideo-$(GST_MAJORMINOR) $(GST_BASE_LIBS) $(LIBOIL_LIBS)
|
|
libgstdeinterlace2_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = \
|
|
gstdeinterlace2.h \
|
|
tvtime/mmx.h \
|
|
tvtime/sse.h \
|
|
tvtime/greedyh.h \
|
|
tvtime/greedyhmacros.h \
|
|
tvtime/plugins.h \
|
|
tvtime/speedtools.h \
|
|
tvtime/speedy.h \
|
|
tvtime/tomsmocomp.h
|
|
|