1plugin_LTLIBRARIES = libgstdeinterlace.la
2
3ORC_SOURCE=tvtime
4include $(top_srcdir)/common/orc.mak
5
6libgstdeinterlace_la_SOURCES = \
7	gstdeinterlace.c \
8	gstdeinterlacemethod.c \
9	tvtime/tomsmocomp.c \
10	tvtime/greedy.c \
11	tvtime/greedyh.c \
12	tvtime/vfir.c \
13	tvtime/weavetff.c \
14	tvtime/weavebff.c \
15	tvtime/weave.c \
16	tvtime/linear.c \
17	tvtime/linearblend.c \
18	tvtime/scalerbob.c
19nodist_libgstdeinterlace_la_SOURCES = $(ORC_NODIST_SOURCES)
20
21libgstdeinterlace_la_CFLAGS = \
22	$(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS) $(ORC_CFLAGS)
23libgstdeinterlace_la_LIBADD = \
24	$(GST_PLUGINS_BASE_LIBS) -lgstvideo-$(GST_API_VERSION) $(GST_BASE_LIBS) $(GST_LIBS) $(ORC_LIBS)
25libgstdeinterlace_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
26
27noinst_HEADERS = \
28	gstdeinterlace.h \
29	gstdeinterlacemethod.h \
30	tvtime/mmx.h \
31	tvtime/sse.h \
32	tvtime/greedyh.asm \
33	tvtime/greedyhmacros.h \
34	tvtime/plugins.h \
35	tvtime/x86-64_macros.inc \
36	tvtime/tomsmocomp/SearchLoop0A.inc \
37	tvtime/tomsmocomp/SearchLoopBottom.inc \
38	tvtime/tomsmocomp/SearchLoopEdgeA8.inc \
39	tvtime/tomsmocomp/SearchLoopEdgeA.inc \
40	tvtime/tomsmocomp/SearchLoopOddA2.inc \
41	tvtime/tomsmocomp/SearchLoopOddA6.inc \
42	tvtime/tomsmocomp/SearchLoopOddAH2.inc \
43	tvtime/tomsmocomp/SearchLoopOddAH.inc \
44	tvtime/tomsmocomp/SearchLoopOddA.inc \
45	tvtime/tomsmocomp/SearchLoopTop.inc \
46	tvtime/tomsmocomp/SearchLoopVAH.inc \
47	tvtime/tomsmocomp/SearchLoopVA.inc \
48	tvtime/tomsmocomp/StrangeBob.inc \
49	tvtime/tomsmocomp/TomsMoCompAll2.inc \
50	tvtime/tomsmocomp/TomsMoCompAll.inc \
51	tvtime/tomsmocomp/tomsmocompmacros.h \
52	tvtime/tomsmocomp/WierdBob.inc
53