Commit 83ed86fb authored by Dafydd Harries's avatar Dafydd Harries

fix declaration style

darcs-hash:20070212192034-c9803-4fd196138e4e00a618dca3896022eb438b680e4a.gz
parent dec7018a
...@@ -6,15 +6,24 @@ ...@@ -6,15 +6,24 @@
static GstFlowReturn static GstFlowReturn
gst_nice_src_create ( gst_nice_src_create (
GstBaseSrc *basesrc, guint64 offset, guint length, GstBuffer **buffer); GstBaseSrc *basesrc,
guint64 offset,
guint length,
GstBuffer **buffer);
static void static void
gst_nice_src_set_property ( gst_nice_src_set_property (
GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec); GObject *object,
guint prop_id,
const GValue *value,
GParamSpec *pspec);
static void static void
gst_nice_src_get_property ( gst_nice_src_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_src_details = static const GstElementDetails gst_nice_src_details =
GST_ELEMENT_DETAILS ( GST_ELEMENT_DETAILS (
...@@ -97,8 +106,11 @@ gst_nice_src_init (GstNiceSrc *src, GstNiceSrcClass *g_class) ...@@ -97,8 +106,11 @@ gst_nice_src_init (GstNiceSrc *src, GstNiceSrcClass *g_class)
} }
static GstFlowReturn static GstFlowReturn
gst_nice_src_create (GstBaseSrc *basesrc, guint64 offset, guint length, gst_nice_src_create (
GstBuffer **buffer) GstBaseSrc *basesrc,
guint64 offset,
guint length,
GstBuffer **buffer)
{ {
GstFlowReturn res; GstFlowReturn res;
GstBuffer *buf; GstBuffer *buf;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment