mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-25 01:30:38 +00:00
ext/gnomevfs/gstgnomevfssink.c: Fix some docs.
Original commit message from CVS: * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_class_init): Fix some docs.
This commit is contained in:
parent
f6e07c542f
commit
01bd84d06c
2 changed files with 22 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
2006-02-28 Wim Taymans <wim@fluendo.com>
|
||||
|
||||
* ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_class_init):
|
||||
Fix some docs.
|
||||
|
||||
2006-02-28 Edward Hervey <edward@fluendo.com>
|
||||
|
||||
* ext/alsa/gstalsasrc.c:
|
||||
|
|
|
@ -50,8 +50,14 @@
|
|||
* The above pipeline will re-encode an mp3 file into FLAC format and store
|
||||
* it on a remote host using the Samba protocol.
|
||||
* </para>
|
||||
* <para>
|
||||
* Applications can connect to the allow-overwrite signal to receive a callback when an
|
||||
* existing file will be overwritten. The return value of the signal will determine if
|
||||
* gnomevfssink will overwrite the resource or abort with an error.
|
||||
* </para>
|
||||
* </refsect2>
|
||||
*
|
||||
* Last reviewed on 2006-02-28 (0.10.4)
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
|
@ -182,6 +188,17 @@ gst_gnome_vfs_sink_class_init (GstGnomeVFSSinkClass * klass)
|
|||
"GnomeVFSHandle", "Handle for GnomeVFS",
|
||||
GST_TYPE_GNOME_VFS_HANDLE, G_PARAM_READWRITE));
|
||||
|
||||
/**
|
||||
* GstGnomeVFSSink::allow-overwrite
|
||||
* @sink: the object which received the signal
|
||||
* @uri: the URI to be overwritten
|
||||
*
|
||||
* This signal is fired when gnomevfssink is about to overwrite an
|
||||
* existing resource. The application can connect to this signal and ask
|
||||
* the user if the resource may be overwritten.
|
||||
*
|
||||
* Returns: A boolean indicating that the resource may be overwritten.
|
||||
*/
|
||||
gst_gnome_vfs_sink_signals[SIGNAL_ERASE_ASK] =
|
||||
g_signal_new ("allow-overwrite", G_TYPE_FROM_CLASS (klass),
|
||||
G_SIGNAL_RUN_CLEANUP, G_STRUCT_OFFSET (GstGnomeVFSSinkClass, erase_ask),
|
||||
|
|
Loading…
Reference in a new issue