From 21ea46568bc5e808dff87249409c5e8c0f572539 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sebastian=20Dr=C3=B6ge?= Date: Fri, 23 Aug 2013 12:01:32 +0200 Subject: [PATCH] opencv: Fix indention --- ext/opencv/gstopencvutils.c | 6 +++--- ext/opencv/gstsegmentation.cpp | 16 ++++++++-------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/ext/opencv/gstopencvutils.c b/ext/opencv/gstopencvutils.c index de3e268..6655b07 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 a6b3b10..1a48afd 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; -- 2.7.4