gstreamer/tests/elements/Makefile.am
Hyunjun Ko eb17b711b6 tests: elements: add an example for ROI
This implements a pipleint to recognize difference between ROI and non-ROI.
See comments in this code in detail.

https://bugzilla.gnome.org/show_bug.cgi?id=768248

Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
2017-05-12 11:12:56 +02:00

25 lines
467 B
Makefile

noinst_PROGRAMS = \
test-vaapisink \
test-roi \
$(NULL)
TEST_CFLAGS = \
-DGST_USE_UNSTABLE_API \
$(GST_CFLAGS) \
$(GST_VIDEO_CFLAGS) \
$(NULL)
TEST_LIBS = \
$(GST_LIBS) \
$(GST_VIDEO_LIBS) \
$(NULL)
test_vaapisink_SOURCES = test-vaapisink.c
test_vaapisink_CFLAGS = $(TEST_CFLAGS)
test_vaapisink_LDADD = $(TEST_LIBS)
test_roi_SOURCES = test-roi.c
test_roi_CFLAGS = $(TEST_CFLAGS)
test_roi_LDADD = $(TEST_LIBS)
-include $(top_srcdir)/git.mk