AMBE Audio Dumping

This commit is contained in:
Cort Buffington 2015-03-24 14:22:03 -05:00
parent fb72151c8f
commit 52793877e1
1 changed files with 6 additions and 1 deletions

View File

@ -46,7 +46,12 @@ class ambeIPSC(IPSC):
def group_voice(self, _network, _src_sub, _dst_sub, _ts, _end, _peerid, _data):
# THIS FUNCTION IS NOT COMPLETE!!!!
_payload_type = _data[30:31]
_ambe_frames = _data[33:51]
_ambe_frames = _data[33:52]
if _payload_type == BURST_DATA_TYPE['VOICE_HEAD']:
print('Voice Transmission Start')
if _payload_type == BURST_DATA_TYPE['VOICE_TERM']:
print('Voice Transmission End')
if _payload_type == BURST_DATA_TYPE['SLOT1_VOICE']:
print(h(_ambe_frames))
if _payload_type == BURST_DATA_TYPE['SLOT2_VOICE']: