Merge pull request #506 from google/gbg/a2dp-fixes

a2dp: emit delay_report
This commit is contained in:
Gilles Boccon-Gibod
2024-07-11 18:46:06 -07:00
committed by GitHub

View File

@@ -2162,6 +2162,9 @@ class LocalStreamEndPoint(StreamEndPoint, EventEmitter):
def on_abort_command(self): def on_abort_command(self):
self.emit('abort') self.emit('abort')
def on_delayreport_command(self, delay: int):
self.emit('delay_report', delay)
def on_rtp_channel_open(self): def on_rtp_channel_open(self):
self.emit('rtp_channel_open') self.emit('rtp_channel_open')