|
@@ -375,12 +375,16 @@ class MyCall(pj.Call):
|
|
|
|
|
|
def release(self):
|
|
|
self.logger.info('liuwei::debugger::release:: come in ')
|
|
|
+ if self.audio_player and self.aud_media:
|
|
|
+ try:
|
|
|
+ self.audio_player.stopTransmit(self.aud_media)
|
|
|
+ self.audio_player = None # 或调用播放器停止方法
|
|
|
+ print("Success to stopTransmit:")
|
|
|
+ except pj.Error as e:
|
|
|
+ print("Failed to stopTransmit:", e)
|
|
|
if self.audio_port:
|
|
|
# self.audio_port.stopTransmit()
|
|
|
self.audio_port = None # 或调用相关销毁方法
|
|
|
- if self.audio_player:
|
|
|
- self.audio_player.stopTransmit(self.aud_media)
|
|
|
- self.audio_player = None # 或调用播放器停止方法
|
|
|
if self.aud_media:
|
|
|
# self.audio_media.stopTransmit()
|
|
|
self.aud_media = None
|