summaryrefslogtreecommitdiff
path: root/gst/fsrawconference
diff options
context:
space:
mode:
authorOlivier CrĂȘte <olivier.crete@collabora.co.uk>2011-02-07 17:45:04 +0100
committerOlivier CrĂȘte <olivier.crete@collabora.com>2011-10-11 15:37:15 -0400
commit71decc1a43524d7a32e1b75a2bf256a7dba3a33a (patch)
treebe252972d8c52dc0a8025acde37840ff6d73582c /gst/fsrawconference
parentf8af52d65a721585e4b9125a92e1b1f65448f8dd (diff)
downloadfarstream-71decc1a43524d7a32e1b75a2bf256a7dba3a33a.tar.gz
stream: Remove set_remote_candidates() with add_remote_candidates()
Diffstat (limited to 'gst/fsrawconference')
-rw-r--r--gst/fsrawconference/fs-raw-stream.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gst/fsrawconference/fs-raw-stream.c b/gst/fsrawconference/fs-raw-stream.c
index fe7b119d..f8067d84 100644
--- a/gst/fsrawconference/fs-raw-stream.c
+++ b/gst/fsrawconference/fs-raw-stream.c
@@ -177,7 +177,7 @@ static void _state_changed (FsStreamTransmitter *stream_transmitter,
FsStreamState state,
gpointer user_data);
-static gboolean fs_raw_stream_set_remote_candidates (FsStream *stream,
+static gboolean fs_raw_stream_add_remote_candidates (FsStream *stream,
GList *candidates,
GError **error);
static gboolean fs_raw_stream_force_remote_candidates (FsStream *stream,
@@ -201,7 +201,7 @@ fs_raw_stream_class_init (FsRawStreamClass *klass)
gobject_class->dispose = fs_raw_stream_dispose;
gobject_class->finalize = fs_raw_stream_finalize;
- stream_class->set_remote_candidates = fs_raw_stream_set_remote_candidates;
+ stream_class->add_remote_candidates = fs_raw_stream_add_remote_candidates;
stream_class->force_remote_candidates = fs_raw_stream_force_remote_candidates;
stream_class->set_remote_codecs = fs_raw_stream_set_remote_codecs;
@@ -667,10 +667,10 @@ _state_changed (FsStreamTransmitter *stream_transmitter,
}
/**
- * fs_raw_stream_set_remote_candidate:
+ * fs_raw_stream_add_remote_candidate:
*/
static gboolean
-fs_raw_stream_set_remote_candidates (FsStream *stream, GList *candidates,
+fs_raw_stream_add_remote_candidates (FsStream *stream, GList *candidates,
GError **error)
{
FsRawStream *self = FS_RAW_STREAM (stream);