summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier CrĂȘte <olivier.crete@collabora.com>2012-03-13 17:18:34 -0400
committerOlivier CrĂȘte <olivier.crete@collabora.com>2012-03-14 18:48:56 -0400
commit05ad14bf449b1da5fd42fe1da97a7fa1e5e79fe5 (patch)
tree282a06f44cbd2f3c6116e5cebd5d31cd81be779c
parent5d59d27433b6d32e2c9ae2a7e3860a776d484e2c (diff)
Don't ignore MediaDescription offer if the answer is the same as the previous one
-rw-r--r--telepathy-farstream/call-content.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/telepathy-farstream/call-content.c b/telepathy-farstream/call-content.c
index e9b5ef0..affafd9 100644
--- a/telepathy-farstream/call-content.c
+++ b/telepathy-farstream/call-content.c
@@ -877,7 +877,7 @@ process_media_description (TfCallContent *self,
}
- g_debug ("Got MediaDescription");
+ g_debug ("Got MediaDescription %s", media_description_objpath);
fscodecs = tpcodecs_to_fscodecs (tf_call_content_get_fs_media_type (self),
codecs, does_avpf, rtcp_fb);
@@ -1943,12 +1943,6 @@ tf_call_content_try_sending_codecs (TfCallContent *self)
if (!codecs)
return;
- if (fs_codec_list_are_equal (codecs, self->last_sent_codecs))
- {
- fs_codec_list_destroy (codecs);
- return;
- }
-
media_description = fscodecs_to_media_descriptions (self, codecs);
if (self->current_media_description)