mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 22:36:33 +00:00
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
This commit is contained in:
parent
1e3f394a97
commit
4a65e3eeae
3 changed files with 11 additions and 3 deletions
|
@ -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),
|
||||
|
|
|
@ -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));
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue