summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorSebastian Dröge <slomo@circular-chaos.org>2013-08-23 12:01:32 +0200
committerSebastian Dröge <slomo@circular-chaos.org>2013-08-23 12:01:32 +0200
commit21ea46568bc5e808dff87249409c5e8c0f572539 (patch)
treef74a17845a0aca7421f35179fb8cfa160b13ca62 /ext
parent5e25d41b84b61d78e6e48b4a78a253f3ec6ab5ed (diff)
downloadgstreamer-plugins-bad-21ea46568bc5e808dff87249409c5e8c0f572539.tar.gz
opencv: Fix indention
Diffstat (limited to 'ext')
-rw-r--r--ext/opencv/gstopencvutils.c6
-rw-r--r--ext/opencv/gstsegmentation.cpp16
2 files changed, 11 insertions, 11 deletions
diff --git a/ext/opencv/gstopencvutils.c b/ext/opencv/gstopencvutils.c
index de3e2681f..6655b07c4 100644
--- a/ext/opencv/gstopencvutils.c
+++ b/ext/opencv/gstopencvutils.c
@@ -45,9 +45,9 @@ gst_opencv_get_ipl_depth_and_channels (GstStructure * structure,
info = gst_video_format_get_info (format);
if (GST_VIDEO_FORMAT_INFO_IS_RGB (info))
- *channels=3;
+ *channels = 3;
else if (GST_VIDEO_FORMAT_INFO_IS_GRAY (info))
- *channels=1;
+ *channels = 1;
else {
g_set_error (err, GST_CORE_ERROR, GST_CORE_ERROR_NEGOTIATION,
"Unsupported structure %s", gst_structure_get_name (structure));
@@ -113,7 +113,7 @@ gst_opencv_parse_iplimage_params_from_caps (GstCaps * caps, gint * width,
*channels = 1;
else {
g_set_error (err, GST_CORE_ERROR, GST_CORE_ERROR_NEGOTIATION,
- "Unsupported caps %s", gst_caps_to_string(caps));
+ "Unsupported caps %s", gst_caps_to_string (caps));
return FALSE;
}
diff --git a/ext/opencv/gstsegmentation.cpp b/ext/opencv/gstsegmentation.cpp
index a6b3b10ed..1a48afd8c 100644
--- a/ext/opencv/gstsegmentation.cpp
+++ b/ext/opencv/gstsegmentation.cpp
@@ -158,12 +158,12 @@ static void gst_segmentation_get_property (GObject * object, guint prop_id,
GValue * value, GParamSpec * pspec);
static GstFlowReturn gst_segmentation_transform_ip (GstVideoFilter * btrans,
- GstVideoFrame *frame);
+ GstVideoFrame * frame);
static gboolean gst_segmentation_stop (GstBaseTransform * basesrc);
-static gboolean gst_segmentation_set_info(GstVideoFilter *filter,
- GstCaps *incaps, GstVideoInfo *in_info,
- GstCaps *outcaps, GstVideoInfo *out_info);
+static gboolean gst_segmentation_set_info (GstVideoFilter * filter,
+ GstCaps * incaps, GstVideoInfo * in_info,
+ GstCaps * outcaps, GstVideoInfo * out_info);
static void gst_segmentation_release_all_pointers (GstSegmentation * filter);
/* Codebook algorithm + connected components functions*/
@@ -188,7 +188,7 @@ gst_segmentation_class_init (GstSegmentationClass * klass)
GObjectClass *gobject_class;
GstElementClass *element_class = GST_ELEMENT_CLASS (klass);
GstBaseTransformClass *basesrc_class = GST_BASE_TRANSFORM_CLASS (klass);
- GstVideoFilterClass *video_class = (GstVideoFilterClass*) klass;
+ GstVideoFilterClass *video_class = (GstVideoFilterClass *) klass;
gobject_class = (GObjectClass *) klass;
@@ -294,9 +294,9 @@ gst_segmentation_get_property (GObject * object, guint prop_id,
/* GstElement vmethod implementations */
/* this function handles the link with other elements */
static gboolean
-gst_segmentation_set_info(GstVideoFilter *filter,
- GstCaps *incaps, GstVideoInfo *in_info,
- GstCaps *outcaps, GstVideoInfo *out_info)
+gst_segmentation_set_info (GstVideoFilter * filter,
+ GstCaps * incaps, GstVideoInfo * in_info,
+ GstCaps * outcaps, GstVideoInfo * out_info)
{
GstSegmentation *segmentation = GST_SEGMENTATION (filter);
CvSize size;