Merge branch 'master' into 0.11
[platform/upstream/gstreamer.git] / gst / gstparamspecs.h
index 992b65b..0e22f40 100644 (file)
@@ -1,4 +1,4 @@
-/* GStreamer - GParamSpecs for for some of our types
+/* GStreamer - GParamSpecs for some of our types
  * Copyright (C) 2007 Tim-Philipp Müller  <tim centricular net>
  *
  * This library is free software; you can redistribute it and/or
@@ -20,7 +20,6 @@
 #ifndef __GST_PARAMSPECS_H__
 #define __GST_PARAMSPECS_H__
 
-#include <gst/gstelement.h>
 #include <gst/gstvalue.h>
 
 G_BEGIN_DECLS
@@ -106,7 +105,7 @@ typedef struct _GstParamSpecFraction GstParamSpecFraction;
  */
 struct _GstParamSpecFraction {
   GParamSpec    parent_instance;
-  
+
   gint          min_num, min_den;
   gint          max_num, max_den;
   gint          def_num, def_den;
@@ -121,10 +120,7 @@ GParamSpec  * gst_param_spec_fraction (const gchar * name,
                                        gint min_num, gint min_denom,
                                        gint max_num, gint max_denom,
                                        gint default_num, gint default_denom,
-                                       GParamFlags flags);
-
-gboolean gst_param_spec_is_mutable (GParamSpec *param_spec,
-    GstElement *element);
+                                       GParamFlags flags) G_GNUC_MALLOC;
 
 G_END_DECLS