diff --git a/ChangeLog b/ChangeLog index 35f7e2a397..0bc8a61ddc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2006-03-06 Stefan Kost + + * 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 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_class_init), diff --git a/ext/gnomevfs/gstgnomevfssink.c b/ext/gnomevfs/gstgnomevfssink.c index 9e2bb55b67..61fe63645f 100644 --- a/ext/gnomevfs/gstgnomevfssink.c +++ b/ext/gnomevfs/gstgnomevfssink.c @@ -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)); diff --git a/gst/volume/gstvolume.c b/gst/volume/gstvolume.c index 8b86b075f6..4da0180573 100644 --- a/gst/volume/gstvolume.c +++ b/gst/volume/gstvolume.c @@ -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);