From 00bc9d70707f011e1186379a0b21908af49e8099 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Tue, 18 Jul 2017 01:16:28 +0100 Subject: [PATCH] opencv: mark symbols explicitly for export with GST_EXPORT --- gst-libs/gst/opencv/gstopencvutils.h | 4 ++++ gst-libs/gst/opencv/gstopencvvideofilter.h | 5 ++++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/gst-libs/gst/opencv/gstopencvutils.h b/gst-libs/gst/opencv/gstopencvutils.h index 47d1c06860..d6aa6ca1ea 100644 --- a/gst-libs/gst/opencv/gstopencvutils.h +++ b/gst-libs/gst/opencv/gstopencvutils.h @@ -31,17 +31,21 @@ G_BEGIN_DECLS +GST_EXPORT gboolean gst_opencv_parse_iplimage_params_from_caps (GstCaps * caps, gint * width, gint * height, gint * depth, gint * channels, GError ** err); +GST_EXPORT gboolean gst_opencv_iplimage_params_from_video_info (GstVideoInfo * info, gint * width, gint * height, gint * depth, gint * channels, GError ** err); +GST_EXPORT gboolean gst_opencv_cv_image_type_from_video_format (GstVideoFormat format, int * cv_type, GError ** err); +GST_EXPORT GstCaps * gst_opencv_caps_from_cv_image_type (int cv_type); G_END_DECLS diff --git a/gst-libs/gst/opencv/gstopencvvideofilter.h b/gst-libs/gst/opencv/gstopencvvideofilter.h index e74d4a2f3c..2aa43e96e3 100644 --- a/gst-libs/gst/opencv/gstopencvvideofilter.h +++ b/gst-libs/gst/opencv/gstopencvvideofilter.h @@ -101,10 +101,13 @@ struct _GstOpencvVideoFilterClass GstOpencvVideoFilterSetCaps cv_set_caps; }; +GST_EXPORT GType gst_opencv_video_filter_get_type (void); +GST_EXPORT void gst_opencv_video_filter_set_in_place (GstOpencvVideoFilter * transform, - gboolean ip); + gboolean ip); G_END_DECLS + #endif /* __GST_OPENCV_VIDEO_FILTER_H__ */