diff options
author | Nicolas Dufresne <nicolas.dufresne@collabora.com> | 2014-03-15 11:13:05 +0100 |
---|---|---|
committer | Nicolas Dufresne <nicolas.dufresne@collabora.com> | 2014-03-15 13:54:47 +0100 |
commit | 418a4940a8c41411cef33a0054879cbd4c9bd181 (patch) | |
tree | 153f48f0406919873990158399de8f6dfe22b538 /tests | |
parent | 5d06735dbd8d0a2dbfea97088879130a0d7bbf55 (diff) |
v4l2: Use a copy of videodev2.h header
With years the amount of ifdef have grown up and we are not even sure if the
old code path compiles. Each time we need to update the v4l2 framework to add
the new feature, we break compilation on older kernel. With exception of two
controls in the video orientation control, this patch get rid of all ifdef by
including the latest version of videodev2.h inside GStreamer.
Fixes https://bugzilla.gnome.org/show_bug.cgi?id=723446
Diffstat (limited to 'tests')
-rw-r--r-- | tests/icles/Makefile.am | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/icles/Makefile.am b/tests/icles/Makefile.am index 706a5bd0d..9ff34a9c5 100644 --- a/tests/icles/Makefile.am +++ b/tests/icles/Makefile.am @@ -7,7 +7,6 @@ else GTK_TESTS = endif -if USE_GST_V4L2 V4L2_TESTS = v4l2src-test v4l2src_test_SOURCES = v4l2src-test.c @@ -15,10 +14,6 @@ v4l2src_test_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) v4l2src_test_LDADD = $(GST_PLUGINS_BASE_LIBS) \ -lgstvideo-$(GST_API_VERSION) -else -V4L2_TESTS = -endif - if USE_OSS4 OSS4_TESTS=test-oss4 |