]> git.sesse.net Git - vlc/blob - modules/video_filter/Modules.am
macosx: move video filter control code to the global libvlccore control object since...
[vlc] / modules / video_filter / Modules.am
1 SOURCES_mosaic = mosaic.c mosaic.h
2 SOURCES_transform = transform.c
3 SOURCES_invert = invert.c
4 SOURCES_mirror = mirror.c
5 SOURCES_adjust = adjust.c adjust_sat_hue.c adjust_sat_hue.h
6 SOURCES_motionblur = motionblur.c
7 SOURCES_logo = logo.c
8 SOURCES_audiobargraph_v = audiobargraph_v.c
9 SOURCES_blend = blend.cpp
10 SOURCES_scale = scale.c
11 SOURCES_marq = marq.c
12 SOURCES_rss = rss.c
13 SOURCES_motiondetect = motiondetect.c
14
15 libdeinterlace_plugin_la_SOURCES = \
16         deinterlace/deinterlace.c deinterlace/deinterlace.h \
17         deinterlace/mmx.h deinterlace/common.h \
18         deinterlace/merge.c deinterlace/merge.h \
19         deinterlace/helpers.c deinterlace/helpers.h \
20         deinterlace/algo_basic.c deinterlace/algo_basic.h \
21         deinterlace/algo_x.c deinterlace/algo_x.h \
22         deinterlace/algo_yadif.c deinterlace/algo_yadif.h \
23         deinterlace/yadif.h deinterlace/yadif_template.h \
24         deinterlace/algo_phosphor.c deinterlace/algo_phosphor.h \
25         deinterlace/algo_ivtc.c deinterlace/algo_ivtc.h
26 # inline ASM doesn't build with -O0
27 libdeinterlace_plugin_la_CFLAGS = $(AM_CFLAGS) -O2
28 if HAVE_NEON
29 libdeinterlace_plugin_la_SOURCES += deinterlace/merge_arm.S
30 libdeinterlace_plugin_la_CFLAGS += -DCAN_COMPILE_ARM
31 endif
32 video_filter_LTLIBRARIES += libdeinterlace_plugin.la
33
34 libdynamicoverlay_plugin_la_SOURCES = \
35         dynamicoverlay/dynamicoverlay_buffer.c \
36         dynamicoverlay/dynamicoverlay_queue.c \
37         dynamicoverlay/dynamicoverlay_list.c \
38         dynamicoverlay/dynamicoverlay_commands.c \
39         dynamicoverlay/dynamicoverlay.c dynamicoverlay/dynamicoverlay.h
40 if !HAVE_WIN32
41 video_filter_LTLIBRARIES += libdynamicoverlay_plugin.la
42 endif
43
44 libremoteosd_plugin_la_SOURCES = remoteosd.c remoteosd_rfbproto.h
45 libremoteosd_plugin_la_CFLAGS = $(AM_CFLAGS) $(GCRYPT_CFLAGS)
46 libremoteosd_plugin_la_LIBADD = $(GCRYPT_LIBS) $(LIBS_remoteosd) $(LIBPTHREAD)
47 if HAVE_GCRYPT
48 video_filter_LTLIBRARIES += libremoteosd_plugin.la
49 endif
50
51 libpuzzle_plugin_la_SOURCES = \
52         puzzle.c puzzle.h \
53         puzzle_bezier.c puzzle_bezier.h \
54         puzzle_lib.c puzzle_lib.h \
55         puzzle_mgt.c puzzle_mgt.h \
56         puzzle_pce.c puzzle_pce.h
57 libpuzzle_plugin_la_LIBADD = $(LIBM)
58 video_filter_LTLIBRARIES += libpuzzle_plugin.la
59
60 SOURCES_magnify = magnify.c
61 SOURCES_wave = wave.c
62 SOURCES_ripple = ripple.c
63 SOURCES_posterize = posterize.c
64 SOURCES_psychedelic = psychedelic.c
65 SOURCES_gradient = gradient.c
66 SOURCES_ball = ball.c
67 SOURCES_opencv_wrapper = opencv_wrapper.c
68 SOURCES_opencv_example = opencv_example.cpp filter_event_info.h
69
70 librotate_plugin_la_SOURCES = rotate.c
71 librotate_plugin_la_LIBADD = ../control/libvlc_motion.la $(LIBM)
72 librotate_plugin_la_LDFLAGS = $(AM_LDFLAGS) -rpath '$(video_filterdir)'
73 if HAVE_DARWIN
74 librotate_plugin_la_LDFLAGS += -Wl,-framework,IOKit,-framework,CoreFoundation
75 endif
76 video_filter_LTLIBRARIES += librotate_plugin.la
77
78 SOURCES_colorthres = colorthres.c
79 SOURCES_extract = extract.c
80 SOURCES_sharpen = sharpen.c
81 SOURCES_erase = erase.c
82 SOURCES_bluescreen = bluescreen.c
83 SOURCES_alphamask = alphamask.c
84 SOURCES_gaussianblur = gaussianblur.c
85 SOURCES_grain = grain.c
86 SOURCES_croppadd = croppadd.c
87 SOURCES_canvas = canvas.c
88 SOURCES_blendbench = blendbench.c
89 SOURCES_postproc = postproc.c
90 SOURCES_scene = scene.c
91 SOURCES_sepia = sepia.c
92 SOURCES_yuvp = yuvp.c
93 SOURCES_antiflicker = antiflicker.c
94 SOURCES_atmo = atmo/atmo.cpp \
95         atmo/AtmoDefs.h \
96         atmo/AtmoCalculations.cpp atmo/AtmoCalculations.h \
97         atmo/AtmoConfig.cpp atmo/AtmoConfig.h \
98         atmo/AtmoConnection.cpp atmo/AtmoConnection.h \
99         atmo/AtmoDynData.cpp atmo/AtmoDynData.h \
100         atmo/AtmoExternalCaptureInput.cpp atmo/AtmoExternalCaptureInput.h \
101         atmo/AtmoInput.cpp atmo/AtmoInput.h \
102         atmo/AtmoLiveView.cpp atmo/AtmoLiveView.h \
103         atmo/AtmoOutputFilter.cpp atmo/AtmoOutputFilter.h \
104         atmo/AtmoThread.cpp atmo/AtmoThread.h \
105         atmo/AtmoTools.cpp atmo/AtmoTools.h \
106         atmo/AtmoZoneDefinition.cpp atmo/AtmoZoneDefinition.h \
107         atmo/AtmoChannelAssignment.cpp atmo/AtmoChannelAssignment.h \
108         atmo/AtmoClassicConnection.cpp atmo/AtmoClassicConnection.h \
109         atmo/AtmoDmxSerialConnection.cpp atmo/AtmoDmxSerialConnection.h \
110         atmo/DmxTools.cpp atmo/DmxTools.h \
111         atmo/AtmoMultiConnection.cpp atmo/AtmoMultiConnection.h \
112         atmo/MoMoConnection.cpp atmo/MoMoConnection.h \
113         atmo/FnordlichtConnection.cpp atmo/FnordlichtConnection.h \
114         atmo/AtmoPacketQueue.cpp atmo/AtmoPacketQueue.h
115 SOURCES_gradfun = gradfun.c gradfun.h
116 SOURCES_subsdelay = subsdelay.c
117 SOURCES_hqdn3d = hqdn3d.c hqdn3d.h
118 SOURCES_anaglyph = anaglyph.c
119 SOURCES_oldmovie = oldmovie.c
120 SOURCES_vhs = vhs.c
121 SOURCES_freeze = freeze.c
122 noinst_HEADERS = filter_picture.h
123
124 video_filter_LTLIBRARIES += \
125         libadjust_plugin.la \
126         libalphamask_plugin.la \
127         libaudiobargraph_v_plugin.la \
128         libball_plugin.la \
129         libblend_plugin.la \
130         libblendbench_plugin.la \
131         libbluescreen_plugin.la \
132         libcanvas_plugin.la \
133         libcolorthres_plugin.la \
134         libcroppadd_plugin.la \
135         liberase_plugin.la \
136         libextract_plugin.la \
137         libgradient_plugin.la \
138         libgrain_plugin.la \
139         libgaussianblur_plugin.la \
140         libinvert_plugin.la \
141         liblogo_plugin.la \
142         libmagnify_plugin.la \
143         libmarq_plugin.la \
144         libmirror_plugin.la \
145         libmosaic_plugin.la \
146         libmotionblur_plugin.la \
147         libmotiondetect_plugin.la \
148         libposterize_plugin.la \
149         libpsychedelic_plugin.la \
150         libripple_plugin.la \
151         librss_plugin.la \
152         libscale_plugin.la \
153         libscene_plugin.la \
154         libsepia_plugin.la \
155         libsharpen_plugin.la \
156         libsubsdelay_plugin.la \
157         libtransform_plugin.la \
158         libwave_plugin.la \
159         libgradfun_plugin.la \
160         libyuvp_plugin.la \
161         libantiflicker_plugin.la \
162         libhqdn3d_plugin.la \
163         libanaglyph_plugin.la \
164         liboldmovie_plugin.la \
165         libvhs_plugin.la \
166         libfreeze_plugin.la
167