コード例 #1
0
 async def mock_send_rtp(data):
     if not is_rtcp(data):
         await queue.put(RtpPacket.parse(data))
コード例 #2
0
 async def _send_rtp(self, data):
     if not is_rtcp(data):
         packet = RtpPacket.parse(data)
         await self.queue.put(packet)