ext/gnomevfs/gstgnomevfssink.c: change location param details
authorStefan Kost <ensonic@users.sourceforge.net>
Mon, 6 Mar 2006 20:52:25 +0000 (20:52 +0000)
committerStefan Kost <ensonic@users.sourceforge.net>
Mon, 6 Mar 2006 20:52:25 +0000 (20:52 +0000)
Original commit message from CVS:
* ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_class_init):
change location param details
* gst/volume/gstvolume.c: (plugin_init):
correct plugin description

ChangeLog
ext/gnomevfs/gstgnomevfssink.c
gst/volume/gstvolume.c

index 35f7e2a..0bc8a61 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2006-03-06  Stefan Kost  <ensonic@users.sf.net>
+
+       * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_class_init):
+         change location param details
+       * gst/volume/gstvolume.c: (plugin_init):
+         correct plugin description
+
 2006-03-06  Tim-Philipp Müller  <tim at centricular dot net>
 
        * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_class_init),
index 9e2bb55..61fe636 100644 (file)
@@ -178,8 +178,9 @@ gst_gnome_vfs_sink_class_init (GstGnomeVFSSinkClass * klass)
   gobject_class->get_property = gst_gnome_vfs_sink_get_property;
   gobject_class->finalize = gst_gnome_vfs_sink_finalize;
 
-  gst_element_class_install_std_props (GST_ELEMENT_CLASS (klass),
-      "location", ARG_LOCATION, G_PARAM_READWRITE, NULL);
+  g_object_class_install_property (gobject_class, ARG_LOCATION,
+      g_param_spec_string ("location", "File Location",
+          "Location of the file to write", NULL, G_PARAM_READWRITE));
   g_object_class_install_property (gobject_class, ARG_URI,
       g_param_spec_boxed ("uri", "GnomeVFSURI", "URI for GnomeVFS",
           GST_TYPE_GNOME_VFS_URI, G_PARAM_READWRITE));
index 8b86b07..4da0180 100644 (file)
@@ -511,5 +511,5 @@ plugin_init (GstPlugin * plugin)
 GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
     GST_VERSION_MINOR,
     "volume",
-    "element for controlling audio volume",
+    "plugin for controlling audio volume",
     plugin_init, VERSION, GST_LICENSE, GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN);