mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 16:21:17 +00:00
91fbd42094
This add a new example which animates a target recangle for the video.
54 lines
1.8 KiB
Makefile
54 lines
1.8 KiB
Makefile
if USE_X
|
|
X_TESTS = stress-xoverlay
|
|
|
|
stress_xoverlay_SOURCES = stress-xoverlay.c
|
|
stress_xoverlay_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) $(X_CFLAGS)
|
|
stress_xoverlay_LDADD = $(GST_LIBS) $(X_LIBS) $(LIBM) \
|
|
$(top_builddir)/gst-libs/gst/interfaces/libgstinterfaces-$(GST_MAJORMINOR).la
|
|
|
|
if HAVE_GTK_X11
|
|
X_TESTS += test-colorkey test-xoverlay
|
|
|
|
test_colorkey_SOURCES = test-colorkey.c
|
|
test_colorkey_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) $(X_CFLAGS) $(GTK_CFLAGS)
|
|
test_colorkey_LDADD = $(GST_LIBS) $(X_LIBS) $(LIBM) $(GTK_LIBS) \
|
|
$(top_builddir)/gst-libs/gst/interfaces/libgstinterfaces-$(GST_MAJORMINOR).la
|
|
|
|
test_xoverlay_SOURCES = test-xoverlay.c
|
|
test_xoverlay_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) $(X_CFLAGS) $(GTK_CFLAGS)
|
|
test_xoverlay_LDADD = $(GST_LIBS) $(X_LIBS) $(LIBM) $(GTK_LIBS) \
|
|
$(top_builddir)/gst-libs/gst/interfaces/libgstinterfaces-$(GST_MAJORMINOR).la
|
|
endif
|
|
|
|
else
|
|
X_TESTS =
|
|
endif
|
|
|
|
if USE_PANGO
|
|
PANGO_TESTS = test-textoverlay
|
|
|
|
test_textoverlay_SOURCES = test-textoverlay.c
|
|
test_textoverlay_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS)
|
|
test_textoverlay_LDADD = $(GST_LIBS) $(LIBM)
|
|
|
|
else
|
|
PANGO_TESTS =
|
|
endif
|
|
|
|
stress_playbin_SOURCES = stress-playbin.c
|
|
stress_playbin_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS)
|
|
stress_playbin_LDADD = $(GST_LIBS) $(LIBM)
|
|
|
|
test_scale_SOURCES = test-scale.c
|
|
test_scale_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS)
|
|
test_scale_LDADD = $(GST_LIBS) $(LIBM)
|
|
|
|
test_box_SOURCES = test-box.c
|
|
test_box_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS)
|
|
test_box_LDADD = $(GST_LIBS) $(LIBM)
|
|
|
|
playbin_text_SOURCES = playbin-text.c
|
|
playbin_text_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS)
|
|
playbin_text_LDADD = $(GST_LIBS) $(LIBM)
|
|
|
|
noinst_PROGRAMS = $(X_TESTS) $(PANGO_TESTS) stress-playbin test-scale test-box playbin-text
|