mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 22:36:33 +00:00
eb17b711b6
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>
25 lines
467 B
Makefile
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
|