mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
b68d936ae0
Static and dynamic plugins now have the same interface. The standard --enable-static/--enable-shared toggle are sufficient.
52 lines
1.6 KiB
Makefile
52 lines
1.6 KiB
Makefile
plugin_LTLIBRARIES = libgstdeinterlace.la
|
|
|
|
ORC_SOURCE=tvtime
|
|
include $(top_srcdir)/common/orc.mak
|
|
|
|
libgstdeinterlace_la_SOURCES = \
|
|
gstdeinterlace.c \
|
|
gstdeinterlacemethod.c \
|
|
tvtime/tomsmocomp.c \
|
|
tvtime/greedy.c \
|
|
tvtime/greedyh.c \
|
|
tvtime/vfir.c \
|
|
tvtime/weavetff.c \
|
|
tvtime/weavebff.c \
|
|
tvtime/weave.c \
|
|
tvtime/linear.c \
|
|
tvtime/linearblend.c \
|
|
tvtime/scalerbob.c
|
|
nodist_libgstdeinterlace_la_SOURCES = $(ORC_NODIST_SOURCES)
|
|
|
|
libgstdeinterlace_la_CFLAGS = \
|
|
$(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS) $(ORC_CFLAGS)
|
|
libgstdeinterlace_la_LIBADD = \
|
|
$(GST_PLUGINS_BASE_LIBS) -lgstvideo-$(GST_API_VERSION) $(GST_BASE_LIBS) $(GST_LIBS) $(ORC_LIBS)
|
|
libgstdeinterlace_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = \
|
|
gstdeinterlace.h \
|
|
gstdeinterlacemethod.h \
|
|
tvtime/mmx.h \
|
|
tvtime/sse.h \
|
|
tvtime/greedyh.asm \
|
|
tvtime/greedyhmacros.h \
|
|
tvtime/plugins.h \
|
|
tvtime/x86-64_macros.inc \
|
|
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
|