fix for moved interfaces
This commit is contained in:
parent
c6985a9533
commit
710491109d
@ -14,7 +14,6 @@ libgstvideofilter_la_CFLAGS = $(GST_CFLAGS) \
|
|||||||
$(GST_PLUGINS_BASE_CFLAGS)
|
$(GST_PLUGINS_BASE_CFLAGS)
|
||||||
libgstvideofilter_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) \
|
libgstvideofilter_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) \
|
||||||
-lgstvideo-@GST_MAJORMINOR@ \
|
-lgstvideo-@GST_MAJORMINOR@ \
|
||||||
-lgstinterfaces-@GST_MAJORMINOR@ \
|
|
||||||
$(GST_BASE_LIBS) $(GST_LIBS)
|
$(GST_BASE_LIBS) $(GST_LIBS)
|
||||||
libgstvideofilter_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(LIBM)
|
libgstvideofilter_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(LIBM)
|
||||||
libgstvideofilter_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstvideofilter_la_LIBTOOLFLAGS = --tag=disable-static
|
||||||
|
@ -49,7 +49,7 @@
|
|||||||
#include "gstvideobalance.h"
|
#include "gstvideobalance.h"
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
#include <gst/interfaces/colorbalance.h>
|
#include <gst/video/colorbalance.h>
|
||||||
|
|
||||||
GST_DEBUG_CATEGORY_STATIC (videobalance_debug);
|
GST_DEBUG_CATEGORY_STATIC (videobalance_debug);
|
||||||
#define GST_CAT_DEFAULT videobalance_debug
|
#define GST_CAT_DEFAULT videobalance_debug
|
||||||
|
@ -25,7 +25,7 @@
|
|||||||
#define __GST_V4L2_COLOR_BALANCE_H__
|
#define __GST_V4L2_COLOR_BALANCE_H__
|
||||||
|
|
||||||
#include <gst/gst.h>
|
#include <gst/gst.h>
|
||||||
#include <gst/interfaces/colorbalance.h>
|
#include <gst/video/colorbalance.h>
|
||||||
#include "v4l2_calls.h"
|
#include "v4l2_calls.h"
|
||||||
|
|
||||||
G_BEGIN_DECLS
|
G_BEGIN_DECLS
|
||||||
|
@ -26,9 +26,9 @@
|
|||||||
#include <X11/X.h>
|
#include <X11/X.h>
|
||||||
|
|
||||||
#include <gst/gst.h>
|
#include <gst/gst.h>
|
||||||
#include <gst/interfaces/videooverlay.h>
|
|
||||||
#include <gst/interfaces/navigation.h>
|
#include <gst/interfaces/navigation.h>
|
||||||
#include <gst/video/gstvideosink.h> /* for GstVideoRectange */
|
#include <gst/video/gstvideosink.h> /* for GstVideoRectange */
|
||||||
|
#include <gst/video/videooverlay.h>
|
||||||
|
|
||||||
#include "gstv4l2object.h"
|
#include "gstv4l2object.h"
|
||||||
|
|
||||||
|
@ -24,7 +24,7 @@
|
|||||||
#define __GST_V4L2_VIDORIENT_H__
|
#define __GST_V4L2_VIDORIENT_H__
|
||||||
|
|
||||||
#include <gst/gst.h>
|
#include <gst/gst.h>
|
||||||
#include <gst/interfaces/videoorientation.h>
|
#include <gst/video/videoorientation.h>
|
||||||
|
|
||||||
#include "gstv4l2object.h"
|
#include "gstv4l2object.h"
|
||||||
|
|
||||||
|
@ -12,7 +12,9 @@ V4L2_TESTS = v4l2src-test
|
|||||||
|
|
||||||
v4l2src_test_SOURCES = v4l2src-test.c
|
v4l2src_test_SOURCES = v4l2src-test.c
|
||||||
v4l2src_test_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS)
|
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
|
else
|
||||||
V4L2_TESTS =
|
V4L2_TESTS =
|
||||||
|
@ -25,8 +25,8 @@
|
|||||||
|
|
||||||
#include <gst/gst.h>
|
#include <gst/gst.h>
|
||||||
#include <gst/interfaces/tuner.h>
|
#include <gst/interfaces/tuner.h>
|
||||||
#include <gst/interfaces/colorbalance.h>
|
#include <gst/video/colorbalance.h>
|
||||||
#include <gst/interfaces/videoorientation.h>
|
#include <gst/video/videoorientation.h>
|
||||||
|
|
||||||
GstElement *pipeline, *source, *sink;
|
GstElement *pipeline, *source, *sink;
|
||||||
GMainLoop *loop;
|
GMainLoop *loop;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user