From 0b2f3b103d08985507326f28e43f391ad3ab4507 Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Fri, 30 May 2014 20:37:19 +0200 Subject: [PATCH] fix sending codecs --- src/common/jingle_rtp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/jingle_rtp.py b/src/common/jingle_rtp.py index fe3195bd4..9bd8ff533 100644 --- a/src/common/jingle_rtp.py +++ b/src/common/jingle_rtp.py @@ -158,7 +158,7 @@ class JingleRTPContent(JingleContent): def _fill_content(self, content): content.addChild(nbxmpp.NS_JINGLE_RTP + ' description', - attrs={'media': self.media}, payload=self.iter_codecs()) + attrs={'media': self.media}, payload=list(self.iter_codecs())) def _setup_funnel(self): self.funnel = Gst.ElementFactory.make('funnel', None)