mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
26cb95316c
Original commit message from CVS: * configure.ac: * gst/deinterlace2/Makefile.am: * gst/deinterlace2/gstdeinterlace2.c: (gst_deinterlace2_methods_get_type), (gst_deinterlace2_set_method), (gst_deinterlace2_class_init), (gst_deinterlace2_init): * gst/deinterlace2/gstdeinterlace2.h: * gst/deinterlace2/tvtime/greedy.c: (gst_deinterlace_method_greedy_l_class_init): * gst/deinterlace2/tvtime/greedyh.c: (gst_deinterlace_method_greedy_h_class_init): * gst/deinterlace2/tvtime/vfir.c: (gst_deinterlace_method_vfir_class_init): Disable the tomsmocomp algorithm for this release as it's buggy and has no C implementation yet. Build the deinterlace2 plugin on all architectures but still mark it as experimental. Build the x86 inline assembly only if GCC inline assembly is supported and only on x86 or amd64. Fixes bug #543286.
44 lines
1.3 KiB
Makefile
44 lines
1.3 KiB
Makefile
plugin_LTLIBRARIES = libgstdeinterlace2.la
|
|
|
|
libgstdeinterlace2_la_SOURCES = \
|
|
gstdeinterlace2.c \
|
|
tvtime/greedy.c \
|
|
tvtime/greedyh.c \
|
|
tvtime/vfir.c
|
|
|
|
# tvtime/tomsmocomp.c
|
|
|
|
libgstdeinterlace2_la_CFLAGS = $(GST_CFLAGS) \
|
|
$(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(LIBOIL_CFLAGS)
|
|
libgstdeinterlace2_la_LIBADD = $(GST_LIBS) \
|
|
$(GST_PLUGINS_BASE_LIBS) -lgstvideo-$(GST_MAJORMINOR) $(GST_BASE_LIBS) $(LIBOIL_LIBS)
|
|
libgstdeinterlace2_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
EXTRA_DIST = tvtime/tomsmocomp.c
|
|
|
|
noinst_HEADERS = \
|
|
gstdeinterlace2.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
|
|
|