2012-07-20 14:37:01 +00:00
|
|
|
noinst_PROGRAMS = \
|
|
|
|
test-decode \
|
|
|
|
test-display \
|
|
|
|
test-surfaces \
|
|
|
|
test-windows \
|
|
|
|
test-subpicture \
|
2010-03-16 08:49:16 +00:00
|
|
|
$(NULL)
|
|
|
|
|
2010-03-26 08:10:23 +00:00
|
|
|
if USE_GLX
|
2012-07-20 14:37:01 +00:00
|
|
|
noinst_PROGRAMS += \
|
|
|
|
test-textures \
|
2010-03-25 17:28:49 +00:00
|
|
|
$(NULL)
|
2010-03-26 08:10:23 +00:00
|
|
|
endif
|
2010-03-25 17:28:49 +00:00
|
|
|
|
2012-07-20 14:37:01 +00:00
|
|
|
TEST_CFLAGS = \
|
|
|
|
-DGST_USE_UNSTABLE_API \
|
|
|
|
-I$(top_srcdir)/gst-libs \
|
|
|
|
$(LIBVA_CFLAGS) \
|
|
|
|
$(GST_CFLAGS) \
|
|
|
|
$(NULL)
|
2010-03-16 08:49:16 +00:00
|
|
|
|
|
|
|
TEST_LIBS = \
|
2012-07-20 14:37:01 +00:00
|
|
|
$(LIBVA_LIBS) \
|
|
|
|
$(GST_LIBS) \
|
2010-03-26 08:10:23 +00:00
|
|
|
$(top_builddir)/gst-libs/gst/vaapi/libgstvaapi-@GST_MAJORMINOR@.la
|
|
|
|
|
2012-08-01 13:44:49 +00:00
|
|
|
if USE_DRM
|
|
|
|
TEST_CFLAGS += $(LIBVA_DRM_CFLAGS)
|
|
|
|
TEST_LIBS += \
|
|
|
|
$(LIBVA_DRM_LIBS) \
|
|
|
|
$(top_builddir)/gst-libs/gst/vaapi/libgstvaapi-drm-@GST_MAJORMINOR@.la
|
|
|
|
endif
|
|
|
|
|
2012-07-20 14:37:01 +00:00
|
|
|
if USE_X11
|
|
|
|
TEST_CFLAGS += $(X11_CFLAGS)
|
|
|
|
TEST_LIBS += \
|
|
|
|
$(LIBVA_X11_LIBS) \
|
|
|
|
$(X11_LIBS) \
|
2010-03-26 08:10:23 +00:00
|
|
|
$(top_builddir)/gst-libs/gst/vaapi/libgstvaapi-x11-@GST_MAJORMINOR@.la
|
2012-07-20 14:37:01 +00:00
|
|
|
endif
|
2010-03-16 08:49:16 +00:00
|
|
|
|
2010-03-26 08:10:23 +00:00
|
|
|
if USE_GLX
|
2012-07-20 14:37:01 +00:00
|
|
|
TEST_CFLAGS += $(X11_CFLAGS) $(GL_CFLAGS)
|
|
|
|
TEST_LIBS += \
|
|
|
|
$(LIBVA_GLX_LIBS) \
|
|
|
|
$(X11_LIBS) \
|
|
|
|
$(GL_LIBS) \
|
|
|
|
$(top_builddir)/gst-libs/gst/vaapi/libgstvaapi-glx-@GST_MAJORMINOR@.la
|
2010-03-26 08:10:23 +00:00
|
|
|
endif
|
2010-03-25 17:28:49 +00:00
|
|
|
|
2012-07-23 10:56:33 +00:00
|
|
|
if USE_WAYLAND
|
|
|
|
TEST_CFLAGS += $(WAYLAND_CFLAGS)
|
|
|
|
TEST_LIBS += \
|
|
|
|
$(LIBVA_WAYLAND_LIBS) \
|
|
|
|
$(WAYLAND_LIBS) \
|
|
|
|
$(top_builddir)/gst-libs/gst/vaapi/libgstvaapi-wayland-@GST_MAJORMINOR@.la
|
|
|
|
endif
|
|
|
|
|
2012-07-17 11:44:45 +00:00
|
|
|
test_codecs_source_c = test-mpeg2.c test-h264.c test-vc1.c test-jpeg.c
|
2012-07-23 12:15:42 +00:00
|
|
|
test_codecs_source_h = $(test_codecs_source_c:%.c=%.h) test-decode.h
|
2010-04-23 16:11:55 +00:00
|
|
|
|
2012-07-23 13:17:03 +00:00
|
|
|
test_utils_source_c = image.c output.c $(test_codecs_source_c)
|
|
|
|
test_utils_source_h = image.h output.h $(test_codecs_source_h)
|
2012-07-23 12:11:16 +00:00
|
|
|
|
|
|
|
noinst_LTLIBRARIES = libutils.la
|
|
|
|
libutils_la_SOURCES = $(test_utils_source_c)
|
|
|
|
libutils_la_CFLAGS = $(TEST_CFLAGS)
|
|
|
|
|
2010-04-23 16:11:55 +00:00
|
|
|
test_decode_SOURCES = test-decode.c $(test_codecs_source_c)
|
2012-07-20 14:37:01 +00:00
|
|
|
test_decode_CFLAGS = $(TEST_CFLAGS)
|
2012-07-23 12:11:16 +00:00
|
|
|
test_decode_LDADD = libutils.la $(TEST_LIBS)
|
2010-04-23 16:11:55 +00:00
|
|
|
|
2010-03-16 08:49:16 +00:00
|
|
|
test_display_SOURCES = test-display.c
|
2012-07-20 14:37:01 +00:00
|
|
|
test_display_CFLAGS = $(TEST_CFLAGS)
|
2012-07-23 12:11:16 +00:00
|
|
|
test_display_LDADD = libutils.la $(TEST_LIBS)
|
2010-03-16 08:49:16 +00:00
|
|
|
|
|
|
|
test_surfaces_SOURCES = test-surfaces.c
|
2012-07-20 14:37:01 +00:00
|
|
|
test_surfaces_CFLAGS = $(TEST_CFLAGS)
|
2012-07-23 12:11:16 +00:00
|
|
|
test_surfaces_LDADD = libutils.la $(TEST_LIBS)
|
2010-03-16 08:49:16 +00:00
|
|
|
|
2012-07-23 12:15:42 +00:00
|
|
|
test_subpicture_SOURCES = test-subpicture.c test-subpicture-data.c
|
2012-07-20 14:37:01 +00:00
|
|
|
test_subpicture_CFLAGS = $(TEST_CFLAGS)
|
2012-07-23 12:11:16 +00:00
|
|
|
test_subpicture_LDADD = libutils.la $(TEST_LIBS)
|
2011-10-14 16:00:12 +00:00
|
|
|
|
2012-07-23 12:11:16 +00:00
|
|
|
test_windows_SOURCES = test-windows.c
|
2012-07-20 14:37:01 +00:00
|
|
|
test_windows_CFLAGS = $(TEST_CFLAGS)
|
2012-07-23 12:11:16 +00:00
|
|
|
test_windows_LDADD = libutils.la $(TEST_LIBS)
|
2010-03-25 17:28:49 +00:00
|
|
|
|
2012-07-23 12:11:16 +00:00
|
|
|
test_textures_SOURCES = test-textures.c
|
2012-07-20 14:37:01 +00:00
|
|
|
test_textures_CFLAGS = $(TEST_CFLAGS)
|
2012-07-23 12:11:16 +00:00
|
|
|
test_textures_LDADD = libutils.la $(TEST_LIBS)
|
2010-01-25 15:04:10 +00:00
|
|
|
|
2010-05-03 22:42:46 +00:00
|
|
|
EXTRA_DIST = \
|
2012-01-06 10:18:55 +00:00
|
|
|
test-subpicture-data.h \
|
2012-07-23 12:11:16 +00:00
|
|
|
$(test_utils_source_h) \
|
2010-05-03 22:42:46 +00:00
|
|
|
$(NULL)
|
2010-03-29 14:40:26 +00:00
|
|
|
|
2010-01-25 15:04:10 +00:00
|
|
|
# Extra clean files so that maintainer-clean removes *everything*
|
|
|
|
MAINTAINERCLEANFILES = Makefile.in
|