summaryrefslogtreecommitdiff
path: root/src/video_out/Makefile.am
diff options
context:
space:
mode:
Diffstat (limited to 'src/video_out/Makefile.am')
-rw-r--r--src/video_out/Makefile.am15
1 files changed, 14 insertions, 1 deletions
diff --git a/src/video_out/Makefile.am b/src/video_out/Makefile.am
index 956c5c7fa..21afcfe51 100644
--- a/src/video_out/Makefile.am
+++ b/src/video_out/Makefile.am
@@ -20,6 +20,9 @@ syncfb_module = xineplug_vo_out_syncfb.la
if HAVE_XV
xv_module = xineplug_vo_out_xv.la
endif
+if HAVE_XVMC
+xvmc_module = xineplug_vo_out_xvmc.la
+endif
#if HAVE_OPENGL
#opengl_module = xineplug_vo_out_opengl.la
#endif
@@ -59,7 +62,7 @@ endif
#lib_LTLIBRARIES = $(xshm_module) $(xv_module) $(directfb_module) \
# $(syncfb_module) $(fb_module) $(opengl_module) $(sdl_module) $(vidix_module)
-lib_LTLIBRARIES = $(xshm_module) $(xv_module) $(aa_module) $(pgx64_module) \
+lib_LTLIBRARIES = $(xshm_module) $(xv_module) $(xvmc_module) $(aa_module) $(pgx64_module) \
$(vidix_module) $(fb_module) $(sdl_module) $(syncfb_module) \
$(stk_module) $(directfb_module) xineplug_vo_out_none.la
@@ -70,8 +73,18 @@ xineplug_vo_out_xv_la_LIBADD = \
-lXext \
$(XINE_LIB)
+xineplug_vo_out_xvmc_la_SOURCES = deinterlace.c alphablend.c video_out_xvmc.c
+xineplug_vo_out_xvmc_la_LIBADD = \
+ $(XV_LIB) \
+ $(XVMC_LIB) \
+ $(X_LIBS) \
+ -lXext \
+ $(XINE_LIB)
+
xineplug_vo_out_xv_la_LDFLAGS = -avoid-version -module @XINE_PLUGIN_MIN_SYMS@
+xineplug_vo_out_xvmc_la_LDFLAGS = -avoid-version -module @XINE_PLUGIN_MIN_SYMS@
+
xineplug_vo_out_xshm_la_SOURCES = yuv2rgb.c yuv2rgb_mmx.c yuv2rgb_mlib.c \
alphablend.c video_out_xshm.c
xineplug_vo_out_xshm_la_LIBADD = $(X_LIBS) -lXext \