From: Stefan Kost Date: Mon, 6 Mar 2006 20:52:25 +0000 (+0000) Subject: ext/gnomevfs/gstgnomevfssink.c: change location param details X-Git-Tag: 1.19.3~511^2~12113 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4a65e3eeae510410edefc64234b7094f35e26d00;p=platform%2Fupstream%2Fgstreamer.git ext/gnomevfs/gstgnomevfssink.c: change location param details 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 --- diff --git a/ChangeLog b/ChangeLog index 35f7e2a..0bc8a61 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 9e2bb55..61fe636 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 8b86b07..4da0180 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);