summaryrefslogtreecommitdiff
path: root/gst
diff options
context:
space:
mode:
authorDafydd Harries <dafydd.harries@collabora.co.uk>2007-02-12 19:23:00 +0000
committerDafydd Harries <dafydd.harries@collabora.co.uk>2007-02-12 19:23:00 +0000
commit195844832dc07dbe635dad083793bba31d300391 (patch)
treec0a6fa9490cdded3caca16688056baa8768f85a3 /gst
parent83ed86fbe8bc1fe87bc9f38832fa3cd1e9595241 (diff)
downloadlibnice-195844832dc07dbe635dad083793bba31d300391.tar.gz
fix declaration style
darcs-hash:20070212192345-c9803-4c0863606eabd2bba4404a18f57bdeedb96f7138.gz
Diffstat (limited to 'gst')
-rw-r--r--gst/gstnicesink.c24
1 files changed, 19 insertions, 5 deletions
diff --git a/gst/gstnicesink.c b/gst/gstnicesink.c
index b0c8cd0..dc24458 100644
--- a/gst/gstnicesink.c
+++ b/gst/gstnicesink.c
@@ -9,11 +9,17 @@ gst_nice_sink_render (
static void
gst_nice_sink_set_property (
- GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec);
+ GObject *object,
+ guint prop_id,
+ const GValue *value,
+ GParamSpec *pspec);
static void
gst_nice_sink_get_property (
- GObject *object, guint prop_id, GValue *value, GParamSpec *pspec);
+ GObject *object,
+ guint prop_id,
+ GValue *value,
+ GParamSpec *pspec);
static const GstElementDetails gst_nice_sink_details =
GST_ELEMENT_DETAILS (
@@ -90,7 +96,9 @@ gst_nice_sink_class_init (GstNiceSinkClass *klass)
}
static void
-gst_nice_sink_init (GstNiceSink *sink, GstNiceSinkClass *g_class)
+gst_nice_sink_init (
+ GstNiceSink *sink,
+ GstNiceSinkClass *g_class)
{
}
@@ -110,7 +118,10 @@ gst_nice_sink_render (
static void
gst_nice_sink_set_property (
- GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec)
+ GObject *object,
+ guint prop_id,
+ const GValue *value,
+ GParamSpec *pspec)
{
GstNiceSink *sink = GST_NICE_SINK (object);
@@ -132,7 +143,10 @@ gst_nice_sink_set_property (
static void
gst_nice_sink_get_property (
- GObject *object, guint prop_id, GValue *value, GParamSpec *pspec)
+ GObject *object,
+ guint prop_id,
+ GValue *value,
+ GParamSpec *pspec)
{
GstNiceSink *sink = GST_NICE_SINK (object);