rather inject 5 RTP frames instead of 1

Change-Id: I9af656cc28a54d3c1274875ebd5326ddd2fb8f6e
This commit is contained in:
Neels Hofmeyr 2020-03-06 01:51:41 +01:00
parent 41504a63af
commit dee499f7a7
1 changed files with 1 additions and 1 deletions

View File

@ -343,7 +343,7 @@ class GsmCallConnector(pykka.ThreadingActor):
self.call_b.tell({'type':'connect_rtp', 'rtp':self.rtp_a})
def send_rtp(self, rtp):
cmd = ('osmo-gapk', '-i', '/docker/1frame.fr1', '-f', 'gsm', '-g', 'gsm', '-O', '%s/%s' % (rtp.ip_str(), rtp.port))
cmd = ('osmo-gapk', '-i', '/docker/5frames.fr1', '-f', 'gsm', '-g', 'gsm', '-O', '%s/%s' % (rtp.ip_str(), rtp.port))
log.info('Sending RTP: %s' % (' '.join(cmd)))
p = subprocess.Popen(cmd)
log.info('Process started: RTP: %s' % p.pid)