summaryrefslogtreecommitdiff
path: root/telepathy-farstream/content-priv.h
diff options
context:
space:
mode:
authorOlivier CrĂȘte <olivier.crete@collabora.com>2012-02-15 16:19:04 -0500
committerOlivier CrĂȘte <olivier.crete@collabora.com>2012-02-15 16:19:04 -0500
commitbf1bb9987d0f9ad5bdccc42d67fb0a8e78feaf0a (patch)
treecbc9bb66cd97c84cfd58c995d300af4782a59594 /telepathy-farstream/content-priv.h
parentc910be247d3be7b86409fd9a77165d295d94a91f (diff)
Remove mute as it has been removed from the spec
Diffstat (limited to 'telepathy-farstream/content-priv.h')
-rw-r--r--telepathy-farstream/content-priv.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/telepathy-farstream/content-priv.h b/telepathy-farstream/content-priv.h
index 93eadd2b6..ab137da68 100644
--- a/telepathy-farstream/content-priv.h
+++ b/telepathy-farstream/content-priv.h
@@ -13,7 +13,6 @@ struct _TfContent {
GObject parent;
guint sending_count;
- guint sending_muted_count;
};
struct _TfContentClass{
@@ -32,8 +31,8 @@ struct _TfContentClass{
guint handle_count);
};
-gboolean _tf_content_start_sending (TfContent *self, gboolean was_muted);
-void _tf_content_stop_sending (TfContent *self, gboolean mute);
+gboolean _tf_content_start_sending (TfContent *self);
+void _tf_content_stop_sending (TfContent *self);
void _tf_content_mute_to_stop_sending (TfContent *self);
void _tf_content_emit_src_pad_added (TfContent *self, guint handle,
@@ -41,7 +40,7 @@ void _tf_content_emit_src_pad_added (TfContent *self, guint handle,
gboolean _tf_content_start_receiving (TfContent *self, guint *handles,
guint handle_count);
-void _tf_content_stop_receiving (TfContent *self, gboolean mute,
+void _tf_content_stop_receiving (TfContent *self,
guint *handles, guint handle_count);
G_END_DECLS