diff --git a/gst/videofilter/Makefile.am b/gst/videofilter/Makefile.am index f974338900..6013f59f0a 100644 --- a/gst/videofilter/Makefile.am +++ b/gst/videofilter/Makefile.am @@ -14,7 +14,6 @@ libgstvideofilter_la_CFLAGS = $(GST_CFLAGS) \ $(GST_PLUGINS_BASE_CFLAGS) libgstvideofilter_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) \ -lgstvideo-@GST_MAJORMINOR@ \ - -lgstinterfaces-@GST_MAJORMINOR@ \ $(GST_BASE_LIBS) $(GST_LIBS) libgstvideofilter_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(LIBM) libgstvideofilter_la_LIBTOOLFLAGS = --tag=disable-static diff --git a/gst/videofilter/gstvideobalance.c b/gst/videofilter/gstvideobalance.c index 3019435353..3c5a31e83f 100644 --- a/gst/videofilter/gstvideobalance.c +++ b/gst/videofilter/gstvideobalance.c @@ -49,7 +49,7 @@ #include "gstvideobalance.h" #include -#include +#include GST_DEBUG_CATEGORY_STATIC (videobalance_debug); #define GST_CAT_DEFAULT videobalance_debug diff --git a/sys/v4l2/gstv4l2colorbalance.h b/sys/v4l2/gstv4l2colorbalance.h index 4b872d0af7..4e6a75e369 100644 --- a/sys/v4l2/gstv4l2colorbalance.h +++ b/sys/v4l2/gstv4l2colorbalance.h @@ -25,7 +25,7 @@ #define __GST_V4L2_COLOR_BALANCE_H__ #include -#include +#include #include "v4l2_calls.h" G_BEGIN_DECLS diff --git a/sys/v4l2/gstv4l2videooverlay.h b/sys/v4l2/gstv4l2videooverlay.h index 958ade53d2..7c044e71d8 100644 --- a/sys/v4l2/gstv4l2videooverlay.h +++ b/sys/v4l2/gstv4l2videooverlay.h @@ -26,9 +26,9 @@ #include #include -#include #include #include /* for GstVideoRectange */ +#include #include "gstv4l2object.h" diff --git a/sys/v4l2/gstv4l2vidorient.h b/sys/v4l2/gstv4l2vidorient.h index 07ab664f51..bf3736f9ba 100644 --- a/sys/v4l2/gstv4l2vidorient.h +++ b/sys/v4l2/gstv4l2vidorient.h @@ -24,7 +24,7 @@ #define __GST_V4L2_VIDORIENT_H__ #include -#include +#include #include "gstv4l2object.h" diff --git a/tests/icles/Makefile.am b/tests/icles/Makefile.am index 8181846e2d..5678294fdc 100644 --- a/tests/icles/Makefile.am +++ b/tests/icles/Makefile.am @@ -12,7 +12,9 @@ V4L2_TESTS = v4l2src-test v4l2src_test_SOURCES = v4l2src-test.c v4l2src_test_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) -v4l2src_test_LDADD = $(GST_PLUGINS_BASE_LIBS) -lgstinterfaces-$(GST_MAJORMINOR) $(GST_LIBS) +v4l2src_test_LDADD = $(GST_PLUGINS_BASE_LIBS) \ + -lgstvideo-$(GST_MAJORMINOR) \ + -lgstinterfaces-$(GST_MAJORMINOR) $(GST_LIBS) else V4L2_TESTS = diff --git a/tests/icles/v4l2src-test.c b/tests/icles/v4l2src-test.c index 4fcf48b726..02d005dca4 100644 --- a/tests/icles/v4l2src-test.c +++ b/tests/icles/v4l2src-test.c @@ -25,8 +25,8 @@ #include #include -#include -#include +#include +#include GstElement *pipeline, *source, *sink; GMainLoop *loop;