]> git.sesse.net Git - vlc/blobdiff - modules/video_filter/Modules.am
OpenCV example: drop an unused variable
[vlc] / modules / video_filter / Modules.am
index d201db280ca752665ed4bae3da9c9f6016a48425..0585d6f355d95e30b5b3c92072dbe4395b77469c 100644 (file)
@@ -4,36 +4,55 @@ SOURCES_mosaic = mosaic.c mosaic.h
 SOURCES_transform = transform.c
 SOURCES_invert = invert.c
 SOURCES_mirror = mirror.c
-SOURCES_adjust = adjust.c adjust_sat_hue.c
+SOURCES_adjust = adjust.c adjust_sat_hue.c adjust_sat_hue.h
 SOURCES_wall = wall.c
 SOURCES_clone = clone.c
 SOURCES_crop = crop.c
 SOURCES_motionblur = motionblur.c
 SOURCES_logo = logo.c
 SOURCES_audiobargraph_v = audiobargraph_v.c
-SOURCES_deinterlace = deinterlace/deinterlace.c deinterlace/deinterlace.h \
+SOURCES_blend = blend.cpp
+SOURCES_scale = scale.c
+SOURCES_marq = marq.c
+SOURCES_rss = rss.c
+SOURCES_motiondetect = motiondetect.c
+
+libdeinterlace_plugin_la_SOURCES = \
+       deinterlace/deinterlace.c deinterlace/deinterlace.h \
        deinterlace/mmx.h deinterlace/common.h \
        deinterlace/merge.c deinterlace/merge.h \
        deinterlace/helpers.c deinterlace/helpers.h \
        deinterlace/algo_basic.c deinterlace/algo_basic.h \
        deinterlace/algo_x.c deinterlace/algo_x.h \
        deinterlace/algo_yadif.c deinterlace/algo_yadif.h \
-       deinterlace/yadif.h \
+       deinterlace/yadif.h deinterlace/yadif_template.h \
        deinterlace/algo_phosphor.c deinterlace/algo_phosphor.h \
        deinterlace/algo_ivtc.c deinterlace/algo_ivtc.h
-SOURCES_blend = blend.c
-SOURCES_scale = scale.c
-SOURCES_marq = marq.c
-SOURCES_rss = rss.c
-SOURCES_motiondetect = motiondetect.c
+libdeinterlace_plugin_la_CFLAGS = $(AM_CFLAGS)
+libdeinterlace_plugin_la_LIBADD = $(AM_LIBADD)
+libdeinterlace_plugin_la_DEPENDENCIES =
+if HAVE_NEON
+libdeinterlace_plugin_la_SOURCES += deinterlace/merge_arm.S
+libdeinterlace_plugin_la_CFLAGS += -DCAN_COMPILE_ARM
+endif
+libvlc_LTLIBRARIES += libdeinterlace_plugin.la
 
 libosdmenu_plugin_la_SOURCES = osdmenu.c
 libosdmenu_plugin_la_CFLAGS = $(AM_CFLAGS) -DPKGDATADIR=\"$(vlcdatadir)\"
 libosdmenu_plugin_la_LIBADD = $(AM_LIBADD)
 libosdmenu_plugin_la_DEPENDENCIES =
-EXTRA_LTLIBRARIES += libosdmenu_plugin.la
+if BUILD_OSDMENU
+libvlc_LTLIBRARIES += libosdmenu_plugin.la
+endif
+
+libremoteosd_plugin_la_SOURCES = remoteosd.c remoteosd_rfbproto.h
+libremoteosd_plugin_la_CFLAGS = $(AM_CFLAGS) $(GCRYPT_CFLAGS)
+libremoteosd_plugin_la_LIBADD = $(AM_LIBADD) $(GCRYPT_LIBS) $(LIBS_remoteosd)
+libremoteosd_plugin_la_DEPENDENCIES =
+if HAVE_GCRYPT
+libvlc_LTLIBRARIES += libremoteosd_plugin.la
+endif
 
-SOURCES_remoteosd = remoteosd.c remoteosd_rfbproto.h
 SOURCES_magnify = magnify.c
 SOURCES_wave = wave.c
 SOURCES_ripple = ripple.c
@@ -87,6 +106,8 @@ SOURCES_atmo = atmo/atmo.cpp \
        atmo/AtmoPacketQueue.cpp atmo/AtmoPacketQueue.h
 SOURCES_gradfun = gradfun.c gradfun.h
 SOURCES_subsdelay = subsdelay.c
+SOURCES_hqdn3d = hqdn3d.c hqdn3d.h
+SOURCES_anaglyph = anaglyph.c
 noinst_HEADERS = filter_picture.h
 
 libvlc_LTLIBRARIES += \
@@ -102,7 +123,6 @@ libvlc_LTLIBRARIES += \
        libclone_plugin.la \
        libcolorthres_plugin.la \
        libcroppadd_plugin.la \
-       libdeinterlace_plugin.la \
        liberase_plugin.la \
        libextract_plugin.la \
        libgradient_plugin.la \
@@ -132,4 +152,6 @@ libvlc_LTLIBRARIES += \
        libwave_plugin.la \
        libgradfun_plugin.la \
        libyuvp_plugin.la \
-       libantiflicker_plugin.la
+       libantiflicker_plugin.la \
+       libhqdn3d_plugin.la \
+       libanaglyph_plugin.la