fix sending codecs

This commit is contained in:
Yann Leboulanger 2014-05-30 20:37:19 +02:00
parent e9dd691645
commit 0b2f3b103d
1 changed files with 1 additions and 1 deletions

View File

@ -158,7 +158,7 @@ class JingleRTPContent(JingleContent):
def _fill_content(self, content): def _fill_content(self, content):
content.addChild(nbxmpp.NS_JINGLE_RTP + ' description', 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): def _setup_funnel(self):
self.funnel = Gst.ElementFactory.make('funnel', None) self.funnel = Gst.ElementFactory.make('funnel', None)