2022-05-22 20:28:55 +00:00
|
|
|
"""
|
|
|
|
Python interface to the C-language codec2 library.
|
|
|
|
"""
|
2021-12-12 20:52:03 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2022-05-11 22:10:59 +00:00
|
|
|
# pylint: disable=invalid-name, line-too-long, c-extension-no-member
|
2022-05-22 20:28:55 +00:00
|
|
|
# pylint: disable=import-outside-toplevel, attribute-defined-outside-init
|
2022-05-11 22:10:59 +00:00
|
|
|
|
2021-12-12 20:52:03 +00:00
|
|
|
import ctypes
|
2022-05-11 22:10:59 +00:00
|
|
|
import glob
|
2022-01-12 06:27:42 +00:00
|
|
|
import os
|
2022-05-11 22:10:59 +00:00
|
|
|
import sys
|
2021-12-13 18:00:38 +00:00
|
|
|
from enum import Enum
|
2021-12-20 21:57:13 +00:00
|
|
|
from threading import Lock
|
2022-05-11 22:10:59 +00:00
|
|
|
|
|
|
|
import numpy as np
|
2022-02-04 15:24:04 +00:00
|
|
|
import structlog
|
|
|
|
|
2022-06-01 00:35:35 +00:00
|
|
|
log = structlog.get_logger("codec2")
|
2021-12-12 20:52:03 +00:00
|
|
|
|
2023-04-21 08:22:34 +00:00
|
|
|
|
2021-12-13 18:00:38 +00:00
|
|
|
# Enum for codec2 modes
|
|
|
|
class FREEDV_MODE(Enum):
|
2022-03-04 15:50:32 +00:00
|
|
|
"""
|
2022-05-11 22:10:59 +00:00
|
|
|
Enumeration for codec2 modes and names
|
2022-03-04 15:50:32 +00:00
|
|
|
"""
|
2023-12-16 09:28:30 +00:00
|
|
|
signalling = 19
|
2022-05-22 20:28:55 +00:00
|
|
|
datac0 = 14
|
|
|
|
datac1 = 10
|
|
|
|
datac3 = 12
|
2023-04-21 08:22:34 +00:00
|
|
|
datac4 = 18
|
|
|
|
datac13 = 19
|
2022-05-11 22:10:59 +00:00
|
|
|
|
2023-05-14 16:05:47 +00:00
|
|
|
|
2023-04-23 13:59:30 +00:00
|
|
|
class FREEDV_MODE_USED_SLOTS(Enum):
|
|
|
|
"""
|
|
|
|
Enumeration for codec2 used slots
|
|
|
|
"""
|
|
|
|
sig0 = [False, False, True, False, False]
|
|
|
|
sig1 = [False, False, True, False, False]
|
|
|
|
datac0 = [False, False, True, False, False]
|
|
|
|
datac1 = [False, True, True, True, False]
|
|
|
|
datac3 = [False, False, True, False, False]
|
|
|
|
datac4 = [False, False, True, False, False]
|
|
|
|
datac13 = [False, False, True, False, False]
|
|
|
|
fsk_ldpc = [False, False, True, False, False]
|
|
|
|
fsk_ldpc_0 = [False, False, True, False, False]
|
|
|
|
fsk_ldpc_1 = [False, False, True, False, False]
|
|
|
|
|
2022-05-11 22:10:59 +00:00
|
|
|
# Function for returning the mode value
|
|
|
|
def freedv_get_mode_value_by_name(mode: str) -> int:
|
2022-03-04 15:50:32 +00:00
|
|
|
"""
|
2022-05-11 22:10:59 +00:00
|
|
|
Get the codec2 mode by entering its string
|
2022-03-04 15:50:32 +00:00
|
|
|
|
2022-05-11 22:10:59 +00:00
|
|
|
Args:
|
2022-05-22 20:28:55 +00:00
|
|
|
mode: String representation of the codec2 mode.
|
2022-03-04 15:50:32 +00:00
|
|
|
|
2022-05-11 22:10:59 +00:00
|
|
|
Returns:
|
|
|
|
int
|
2022-03-04 15:50:32 +00:00
|
|
|
"""
|
2022-05-22 20:28:55 +00:00
|
|
|
return FREEDV_MODE[mode.lower()].value
|
|
|
|
|
2022-01-12 06:27:42 +00:00
|
|
|
|
2022-05-11 22:10:59 +00:00
|
|
|
# Function for returning the mode name
|
|
|
|
def freedv_get_mode_name_by_value(mode: int) -> str:
|
2022-03-04 15:50:32 +00:00
|
|
|
"""
|
2022-05-22 20:28:55 +00:00
|
|
|
Get the codec2 mode name as string
|
2022-03-04 15:50:32 +00:00
|
|
|
Args:
|
2022-05-22 20:28:55 +00:00
|
|
|
mode: Integer value of the codec2 mode.
|
2022-03-04 15:50:32 +00:00
|
|
|
|
2022-05-11 22:10:59 +00:00
|
|
|
Returns:
|
|
|
|
string
|
2022-03-04 15:50:32 +00:00
|
|
|
"""
|
2022-01-15 18:23:28 +00:00
|
|
|
return FREEDV_MODE(mode).name
|
2022-05-09 00:41:49 +00:00
|
|
|
|
2022-05-22 20:28:55 +00:00
|
|
|
|
2022-05-11 22:10:59 +00:00
|
|
|
# Check if we are running in a pyinstaller environment
|
2023-01-22 22:35:52 +00:00
|
|
|
#if hasattr(sys, "_MEIPASS"):
|
|
|
|
# sys.path.append(getattr(sys, "_MEIPASS"))
|
|
|
|
#else:
|
|
|
|
sys.path.append(os.path.abspath("."))
|
2022-01-12 06:27:42 +00:00
|
|
|
|
2023-10-21 20:51:40 +00:00
|
|
|
#log.info("[C2 ] Searching for libcodec2...")
|
2022-05-22 20:28:55 +00:00
|
|
|
if sys.platform == "linux":
|
|
|
|
files = glob.glob(r"**/*libcodec2*", recursive=True)
|
|
|
|
files.append("libcodec2.so")
|
|
|
|
elif sys.platform == "darwin":
|
2023-01-22 22:35:52 +00:00
|
|
|
if hasattr(sys, "_MEIPASS"):
|
|
|
|
files = glob.glob(getattr(sys, "_MEIPASS") + '/**/*libcodec2*', recursive=True)
|
|
|
|
else:
|
|
|
|
files = glob.glob(r"**/*libcodec2*.dylib", recursive=True)
|
2022-05-22 20:28:55 +00:00
|
|
|
elif sys.platform in ["win32", "win64"]:
|
|
|
|
files = glob.glob(r"**\*libcodec2*.dll", recursive=True)
|
2022-01-11 15:53:35 +00:00
|
|
|
else:
|
2022-02-04 15:24:04 +00:00
|
|
|
files = []
|
2022-05-09 00:41:49 +00:00
|
|
|
|
2022-05-11 22:10:59 +00:00
|
|
|
api = None
|
2022-02-04 15:24:04 +00:00
|
|
|
for file in files:
|
2021-12-19 18:45:08 +00:00
|
|
|
try:
|
2022-02-04 15:24:04 +00:00
|
|
|
api = ctypes.CDLL(file)
|
2023-10-21 20:51:40 +00:00
|
|
|
#log.info("[C2 ] Libcodec2 loaded", path=file)
|
2021-12-19 18:45:08 +00:00
|
|
|
break
|
2022-05-26 01:23:30 +00:00
|
|
|
except OSError as err:
|
2024-01-14 20:05:53 +00:00
|
|
|
pass
|
|
|
|
#log.info("[C2 ] Error: Libcodec2 found but not loaded", path=file, e=err)
|
2022-02-04 15:24:04 +00:00
|
|
|
|
2022-05-11 22:10:59 +00:00
|
|
|
# Quit module if codec2 cant be loaded
|
2022-05-22 20:28:55 +00:00
|
|
|
if api is None or "api" not in locals():
|
2023-10-21 20:51:40 +00:00
|
|
|
log.critical("[C2 ] Error: Libcodec2 not loaded - Exiting")
|
2022-05-11 22:10:59 +00:00
|
|
|
sys.exit(1)
|
2024-01-14 20:05:53 +00:00
|
|
|
log.info("[C2 ] Libcodec2 loaded...")
|
2022-05-09 00:41:49 +00:00
|
|
|
# ctypes function init
|
2022-04-11 09:10:32 +00:00
|
|
|
|
2022-05-22 20:28:55 +00:00
|
|
|
# api.freedv_set_tuning_range.restype = ctypes.c_int
|
|
|
|
# api.freedv_set_tuning_range.argype = [ctypes.c_void_p, ctypes.c_float, ctypes.c_float]
|
2022-02-19 19:45:57 +00:00
|
|
|
|
2022-05-22 20:28:55 +00:00
|
|
|
api.freedv_open.argype = [ctypes.c_int] # type: ignore
|
2022-05-11 22:10:59 +00:00
|
|
|
api.freedv_open.restype = ctypes.c_void_p
|
2021-12-12 20:52:03 +00:00
|
|
|
|
2023-04-25 13:46:17 +00:00
|
|
|
api.freedv_set_sync.argype = [ctypes.c_void_p, ctypes.c_int] # type: ignore
|
|
|
|
api.freedv_set_sync.restype = ctypes.c_void_p
|
|
|
|
|
2022-05-22 20:28:55 +00:00
|
|
|
api.freedv_open_advanced.argtype = [ctypes.c_int, ctypes.c_void_p] # type: ignore
|
2022-05-11 22:10:59 +00:00
|
|
|
api.freedv_open_advanced.restype = ctypes.c_void_p
|
2022-03-20 13:51:30 +00:00
|
|
|
|
2022-05-22 20:28:55 +00:00
|
|
|
api.freedv_get_bits_per_modem_frame.argtype = [ctypes.c_void_p] # type: ignore
|
2022-05-11 22:10:59 +00:00
|
|
|
api.freedv_get_bits_per_modem_frame.restype = ctypes.c_int
|
2021-12-12 20:52:03 +00:00
|
|
|
|
2022-10-12 08:45:17 +00:00
|
|
|
api.freedv_get_modem_extended_stats.argtype = [ctypes.c_void_p, ctypes.c_void_p]
|
|
|
|
api.freedv_get_modem_extended_stats.restype = ctypes.c_int
|
|
|
|
|
2022-05-22 20:28:55 +00:00
|
|
|
api.freedv_nin.argtype = [ctypes.c_void_p] # type: ignore
|
2022-05-11 22:10:59 +00:00
|
|
|
api.freedv_nin.restype = ctypes.c_int
|
2021-12-12 20:52:03 +00:00
|
|
|
|
2022-05-22 20:28:55 +00:00
|
|
|
api.freedv_rawdatarx.argtype = [ctypes.c_void_p, ctypes.c_char_p, ctypes.c_char_p] # type: ignore
|
2022-05-11 22:10:59 +00:00
|
|
|
api.freedv_rawdatarx.restype = ctypes.c_int
|
2021-12-12 20:52:03 +00:00
|
|
|
|
2022-05-22 20:28:55 +00:00
|
|
|
api.freedv_rawdatatx.argtype = [ctypes.c_void_p, ctypes.c_char_p, ctypes.c_char_p] # type: ignore
|
2022-05-11 22:10:59 +00:00
|
|
|
api.freedv_rawdatatx.restype = ctypes.c_int
|
2021-12-12 21:00:50 +00:00
|
|
|
|
2022-05-22 20:28:55 +00:00
|
|
|
api.freedv_rawdatapostambletx.argtype = [ctypes.c_void_p, ctypes.c_char_p, ctypes.c_char_p] # type: ignore
|
2022-05-11 22:10:59 +00:00
|
|
|
api.freedv_rawdatapostambletx.restype = ctypes.c_int
|
2021-12-12 21:00:50 +00:00
|
|
|
|
2022-05-22 20:28:55 +00:00
|
|
|
api.freedv_rawdatapreambletx.argtype = [ctypes.c_void_p, ctypes.c_char_p, ctypes.c_char_p] # type: ignore
|
2022-05-11 22:10:59 +00:00
|
|
|
api.freedv_rawdatapreambletx.restype = ctypes.c_int
|
2021-12-12 21:00:50 +00:00
|
|
|
|
2022-05-22 20:28:55 +00:00
|
|
|
api.freedv_get_n_max_modem_samples.argtype = [ctypes.c_void_p] # type: ignore
|
2022-05-11 22:10:59 +00:00
|
|
|
api.freedv_get_n_max_modem_samples.restype = ctypes.c_int
|
2021-12-12 20:52:03 +00:00
|
|
|
|
2022-05-22 20:28:55 +00:00
|
|
|
api.freedv_set_frames_per_burst.argtype = [ctypes.c_void_p, ctypes.c_int] # type: ignore
|
2022-05-11 22:10:59 +00:00
|
|
|
api.freedv_set_frames_per_burst.restype = ctypes.c_void_p
|
2022-05-09 00:41:49 +00:00
|
|
|
|
2022-05-22 20:28:55 +00:00
|
|
|
api.freedv_get_rx_status.argtype = [ctypes.c_void_p] # type: ignore
|
2022-05-11 22:10:59 +00:00
|
|
|
api.freedv_get_rx_status.restype = ctypes.c_int
|
2021-12-12 21:00:50 +00:00
|
|
|
|
2022-05-22 20:28:55 +00:00
|
|
|
api.freedv_get_modem_stats.argtype = [ctypes.c_void_p, ctypes.c_void_p, ctypes.c_void_p] # type: ignore
|
2022-05-11 22:10:59 +00:00
|
|
|
api.freedv_get_modem_stats.restype = ctypes.c_int
|
2021-12-13 20:11:09 +00:00
|
|
|
|
2022-05-22 20:28:55 +00:00
|
|
|
api.freedv_get_n_tx_postamble_modem_samples.argtype = [ctypes.c_void_p] # type: ignore
|
2022-05-11 22:10:59 +00:00
|
|
|
api.freedv_get_n_tx_postamble_modem_samples.restype = ctypes.c_int
|
2021-12-12 21:00:50 +00:00
|
|
|
|
2022-05-22 20:28:55 +00:00
|
|
|
api.freedv_get_n_tx_preamble_modem_samples.argtype = [ctypes.c_void_p] # type: ignore
|
2022-05-11 22:10:59 +00:00
|
|
|
api.freedv_get_n_tx_preamble_modem_samples.restype = ctypes.c_int
|
2021-12-12 21:00:50 +00:00
|
|
|
|
2022-05-22 20:28:55 +00:00
|
|
|
api.freedv_get_n_tx_modem_samples.argtype = [ctypes.c_void_p] # type: ignore
|
2022-05-11 22:10:59 +00:00
|
|
|
api.freedv_get_n_tx_modem_samples.restype = ctypes.c_int
|
2021-12-12 21:00:50 +00:00
|
|
|
|
2022-05-22 20:28:55 +00:00
|
|
|
api.freedv_get_n_max_modem_samples.argtype = [ctypes.c_void_p] # type: ignore
|
2022-05-11 22:10:59 +00:00
|
|
|
api.freedv_get_n_max_modem_samples.restype = ctypes.c_int
|
2021-12-15 19:45:33 +00:00
|
|
|
|
2022-05-22 20:28:55 +00:00
|
|
|
api.FREEDV_FS_8000 = 8000 # type: ignore
|
2023-04-21 08:22:34 +00:00
|
|
|
|
2022-03-20 13:51:30 +00:00
|
|
|
# -------------------------------- FSK LDPC MODE SETTINGS
|
|
|
|
|
2022-05-22 20:28:55 +00:00
|
|
|
|
2022-03-20 13:51:30 +00:00
|
|
|
class ADVANCED(ctypes.Structure):
|
2022-05-22 20:28:55 +00:00
|
|
|
"""Advanced structure for fsk modes"""
|
|
|
|
|
2022-03-20 13:51:30 +00:00
|
|
|
_fields_ = [
|
2022-05-09 00:41:49 +00:00
|
|
|
("interleave_frames", ctypes.c_int),
|
2022-03-20 13:51:30 +00:00
|
|
|
("M", ctypes.c_int),
|
|
|
|
("Rs", ctypes.c_int),
|
|
|
|
("Fs", ctypes.c_int),
|
2022-05-09 00:41:49 +00:00
|
|
|
("first_tone", ctypes.c_int),
|
|
|
|
("tone_spacing", ctypes.c_int),
|
|
|
|
("codename", ctypes.c_char_p),
|
2022-03-20 13:51:30 +00:00
|
|
|
]
|
|
|
|
|
2022-05-22 20:28:55 +00:00
|
|
|
|
|
|
|
# pylint: disable=pointless-string-statement
|
|
|
|
"""
|
2022-03-20 13:51:30 +00:00
|
|
|
adv.interleave_frames = 0 # max amplitude
|
|
|
|
adv.M = 2 # number of fsk tones 2/4
|
|
|
|
adv.Rs = 100 # symbol rate
|
|
|
|
adv.Fs = 8000 # sample rate
|
|
|
|
adv.first_tone = 1500 # first tone freq
|
|
|
|
adv.tone_spacing = 200 # shift between tones
|
2022-05-25 22:27:33 +00:00
|
|
|
adv.codename = "H_128_256_5".encode("utf-8") # code word
|
2022-03-20 13:51:30 +00:00
|
|
|
|
|
|
|
HRA_112_112 rate 0.50 (224,112) BPF: 14 not working
|
|
|
|
HRA_56_56 rate 0.50 (112,56) BPF: 7 not working
|
2022-03-24 19:49:13 +00:00
|
|
|
H_2064_516_sparse rate 0.80 (2580,2064) BPF: 258 working
|
2022-03-20 13:51:30 +00:00
|
|
|
HRAb_396_504 rate 0.79 (504,396) BPF: 49 not working
|
|
|
|
H_256_768_22 rate 0.33 (768,256) BPF: 32 working
|
|
|
|
H_256_512_4 rate 0.50 (512,256) BPF: 32 working
|
|
|
|
HRAa_1536_512 rate 0.75 (2048,1536) BPF: 192 not working
|
|
|
|
H_128_256_5 rate 0.50 (256,128) BPF: 16 working
|
|
|
|
H_4096_8192_3d rate 0.50 (8192,4096) BPF: 512 not working
|
|
|
|
H_16200_9720 rate 0.60 (16200,9720) BPF: 1215 not working
|
2022-03-24 19:49:13 +00:00
|
|
|
H_1024_2048_4f rate 0.50 (2048,1024) BPF: 128 working
|
2022-05-22 20:28:55 +00:00
|
|
|
"""
|
2022-03-24 19:49:13 +00:00
|
|
|
# --------------- 2 FSK H_128_256_5, 16 bytes
|
2022-05-22 20:28:55 +00:00
|
|
|
api.FREEDV_MODE_FSK_LDPC_0_ADV = ADVANCED() # type: ignore
|
2022-03-20 13:51:30 +00:00
|
|
|
api.FREEDV_MODE_FSK_LDPC_0_ADV.interleave_frames = 0
|
2022-04-02 16:40:12 +00:00
|
|
|
api.FREEDV_MODE_FSK_LDPC_0_ADV.M = 4
|
2023-03-04 10:12:04 +00:00
|
|
|
api.FREEDV_MODE_FSK_LDPC_0_ADV.Rs = 500
|
2022-03-20 13:51:30 +00:00
|
|
|
api.FREEDV_MODE_FSK_LDPC_0_ADV.Fs = 8000
|
2023-03-04 10:12:04 +00:00
|
|
|
api.FREEDV_MODE_FSK_LDPC_0_ADV.first_tone = 1150 # 1150 4fsk, 1500 2fsk
|
|
|
|
api.FREEDV_MODE_FSK_LDPC_0_ADV.tone_spacing = 200 # 200
|
2022-05-22 20:28:55 +00:00
|
|
|
api.FREEDV_MODE_FSK_LDPC_0_ADV.codename = "H_128_256_5".encode("utf-8") # code word
|
2022-03-24 19:49:13 +00:00
|
|
|
|
|
|
|
# --------------- 4 H_256_512_4, 7 bytes
|
2022-05-22 20:28:55 +00:00
|
|
|
api.FREEDV_MODE_FSK_LDPC_1_ADV = ADVANCED() # type: ignore
|
2022-03-24 19:49:13 +00:00
|
|
|
api.FREEDV_MODE_FSK_LDPC_1_ADV.interleave_frames = 0
|
|
|
|
api.FREEDV_MODE_FSK_LDPC_1_ADV.M = 4
|
2023-03-04 10:12:04 +00:00
|
|
|
api.FREEDV_MODE_FSK_LDPC_1_ADV.Rs = 1000
|
2022-03-24 19:49:13 +00:00
|
|
|
api.FREEDV_MODE_FSK_LDPC_1_ADV.Fs = 8000
|
2023-03-04 10:12:04 +00:00
|
|
|
api.FREEDV_MODE_FSK_LDPC_1_ADV.first_tone = 1150 # 1250 4fsk, 1500 2fsk
|
2022-03-24 19:49:13 +00:00
|
|
|
api.FREEDV_MODE_FSK_LDPC_1_ADV.tone_spacing = 200
|
2023-03-04 10:12:04 +00:00
|
|
|
api.FREEDV_MODE_FSK_LDPC_1_ADV.codename = "H_4096_8192_3d".encode("utf-8") # code word
|
2022-03-24 19:49:13 +00:00
|
|
|
|
|
|
|
# ------- MODEM STATS STRUCTURES
|
2022-10-12 08:45:17 +00:00
|
|
|
MODEM_STATS_NC_MAX = 50 + 1 * 2
|
2023-04-21 20:23:38 +00:00
|
|
|
MODEM_STATS_NR_MAX = 320 * 2
|
2022-05-22 20:28:55 +00:00
|
|
|
MODEM_STATS_ET_MAX = 8
|
|
|
|
MODEM_STATS_EYE_IND_MAX = 160
|
|
|
|
MODEM_STATS_NSPEC = 512
|
|
|
|
MODEM_STATS_MAX_F_HZ = 4000
|
|
|
|
MODEM_STATS_MAX_F_EST = 4
|
|
|
|
|
|
|
|
|
2022-03-24 19:49:13 +00:00
|
|
|
class MODEMSTATS(ctypes.Structure):
|
2022-05-22 20:28:55 +00:00
|
|
|
"""Modem statistics structure"""
|
|
|
|
|
2022-03-24 19:49:13 +00:00
|
|
|
_fields_ = [
|
|
|
|
("Nc", ctypes.c_int),
|
|
|
|
("snr_est", ctypes.c_float),
|
2022-05-22 20:28:55 +00:00
|
|
|
("rx_symbols", (ctypes.c_float * MODEM_STATS_NR_MAX) * MODEM_STATS_NC_MAX),
|
2022-03-24 19:49:13 +00:00
|
|
|
("nr", ctypes.c_int),
|
|
|
|
("sync", ctypes.c_int),
|
|
|
|
("foff", ctypes.c_float),
|
|
|
|
("rx_timing", ctypes.c_float),
|
|
|
|
("clock_offset", ctypes.c_float),
|
|
|
|
("sync_metric", ctypes.c_float),
|
|
|
|
("pre", ctypes.c_int),
|
|
|
|
("post", ctypes.c_int),
|
|
|
|
("uw_fails", ctypes.c_int),
|
2022-10-12 08:45:17 +00:00
|
|
|
("rx_eye", (ctypes.c_float * MODEM_STATS_ET_MAX) * MODEM_STATS_EYE_IND_MAX),
|
2022-05-22 20:28:55 +00:00
|
|
|
("neyetr", ctypes.c_int), # How many eye traces are plotted
|
|
|
|
("neyesamp", ctypes.c_int), # How many samples in the eye diagram
|
2022-05-23 22:06:33 +00:00
|
|
|
("f_est", (ctypes.c_float * MODEM_STATS_MAX_F_EST)),
|
2022-03-24 19:49:13 +00:00
|
|
|
("fft_buf", (ctypes.c_float * MODEM_STATS_NSPEC * 2)),
|
2022-10-12 08:45:17 +00:00
|
|
|
("fft_cfg", ctypes.c_void_p)
|
2022-03-24 19:49:13 +00:00
|
|
|
]
|
2022-05-09 00:41:49 +00:00
|
|
|
|
2022-06-24 18:55:59 +00:00
|
|
|
|
2021-12-14 20:30:20 +00:00
|
|
|
# Return code flags for freedv_get_rx_status() function
|
2022-05-22 20:28:55 +00:00
|
|
|
api.FREEDV_RX_TRIAL_SYNC = 0x1 # type: ignore # demodulator has trial sync
|
|
|
|
api.FREEDV_RX_SYNC = 0x2 # type: ignore # demodulator has sync
|
|
|
|
api.FREEDV_RX_BITS = 0x4 # type: ignore # data bits have been returned
|
|
|
|
api.FREEDV_RX_BIT_ERRORS = 0x8 # type: ignore # FEC may not have corrected all bit errors (not all parity checks OK)
|
2021-12-14 20:30:20 +00:00
|
|
|
|
2022-05-22 20:28:55 +00:00
|
|
|
api.rx_sync_flags_to_text = [ # type: ignore
|
2021-12-14 20:18:18 +00:00
|
|
|
"----",
|
|
|
|
"---T",
|
|
|
|
"--S-",
|
|
|
|
"--ST",
|
|
|
|
"-B--",
|
|
|
|
"-B-T",
|
|
|
|
"-BS-",
|
|
|
|
"-BST",
|
|
|
|
"E---",
|
|
|
|
"E--T",
|
|
|
|
"E-S-",
|
|
|
|
"E-ST",
|
|
|
|
"EB--",
|
|
|
|
"EB-T",
|
|
|
|
"EBS-",
|
2022-05-22 20:28:55 +00:00
|
|
|
"EBST",
|
|
|
|
]
|
2021-12-13 18:00:38 +00:00
|
|
|
|
2022-05-11 22:10:59 +00:00
|
|
|
# Audio buffer ---------------------------------------------------------
|
2021-12-16 11:10:30 +00:00
|
|
|
class audio_buffer:
|
2022-03-04 15:50:32 +00:00
|
|
|
"""
|
2022-05-26 01:23:30 +00:00
|
|
|
Thread-safe audio buffer, which fits the needs of codec2
|
2022-05-09 00:41:49 +00:00
|
|
|
|
2022-03-04 15:50:32 +00:00
|
|
|
made by David Rowe, VK5DGR
|
|
|
|
"""
|
2022-05-22 20:28:55 +00:00
|
|
|
|
2022-05-11 22:10:59 +00:00
|
|
|
# A buffer of int16 samples, using a fixed length numpy array self.buffer for storage
|
2021-12-16 11:10:30 +00:00
|
|
|
# self.nbuffer is the current number of samples in the buffer
|
|
|
|
def __init__(self, size):
|
2022-05-26 01:23:30 +00:00
|
|
|
log.debug("[C2 ] Creating audio buffer", size=size)
|
2021-12-16 11:10:30 +00:00
|
|
|
self.size = size
|
|
|
|
self.buffer = np.zeros(size, dtype=np.int16)
|
|
|
|
self.nbuffer = 0
|
2021-12-20 21:57:13 +00:00
|
|
|
self.mutex = Lock()
|
2022-05-09 01:27:24 +00:00
|
|
|
|
2022-05-22 20:28:55 +00:00
|
|
|
def push(self, samples):
|
2022-03-04 15:50:32 +00:00
|
|
|
"""
|
|
|
|
Push new data to buffer
|
|
|
|
|
|
|
|
Args:
|
2022-05-11 22:10:59 +00:00
|
|
|
samples:
|
2022-03-04 15:50:32 +00:00
|
|
|
|
|
|
|
Returns:
|
2022-05-11 22:10:59 +00:00
|
|
|
Nothing
|
2022-03-04 15:50:32 +00:00
|
|
|
"""
|
2021-12-20 21:57:13 +00:00
|
|
|
self.mutex.acquire()
|
2022-05-11 22:10:59 +00:00
|
|
|
# Add samples at the end of the buffer
|
2022-05-22 20:28:55 +00:00
|
|
|
assert self.nbuffer + len(samples) <= self.size
|
|
|
|
self.buffer[self.nbuffer : self.nbuffer + len(samples)] = samples
|
2021-12-16 11:10:30 +00:00
|
|
|
self.nbuffer += len(samples)
|
2021-12-20 21:57:13 +00:00
|
|
|
self.mutex.release()
|
2022-05-09 01:27:24 +00:00
|
|
|
|
2022-05-22 20:28:55 +00:00
|
|
|
def pop(self, size):
|
2022-03-04 15:50:32 +00:00
|
|
|
"""
|
|
|
|
get data from buffer in size of NIN
|
|
|
|
Args:
|
2022-05-09 00:41:49 +00:00
|
|
|
size:
|
2022-03-04 15:50:32 +00:00
|
|
|
|
|
|
|
Returns:
|
2022-05-11 22:10:59 +00:00
|
|
|
Nothing
|
2022-03-04 15:50:32 +00:00
|
|
|
"""
|
2021-12-20 21:57:13 +00:00
|
|
|
self.mutex.acquire()
|
2022-05-11 22:10:59 +00:00
|
|
|
# Remove samples from the start of the buffer
|
|
|
|
self.nbuffer -= size
|
2022-05-22 20:28:55 +00:00
|
|
|
self.buffer[: self.nbuffer] = self.buffer[size : size + self.nbuffer]
|
2021-12-16 11:10:30 +00:00
|
|
|
assert self.nbuffer >= 0
|
2021-12-20 21:57:13 +00:00
|
|
|
self.mutex.release()
|
2022-05-09 00:41:49 +00:00
|
|
|
|
2022-05-22 20:28:55 +00:00
|
|
|
|
2022-05-11 22:10:59 +00:00
|
|
|
# Resampler ---------------------------------------------------------
|
2021-12-13 18:00:38 +00:00
|
|
|
|
2022-05-22 20:28:55 +00:00
|
|
|
# Oversampling rate
|
|
|
|
api.FDMDV_OS_48 = 6 # type: ignore
|
|
|
|
# Number of oversampling taps at 48kHz
|
|
|
|
api.FDMDV_OS_TAPS_48K = 48 # type: ignore
|
|
|
|
# Number of oversampling filter taps at 8kHz
|
|
|
|
api.FDMDV_OS_TAPS_48_8K = api.FDMDV_OS_TAPS_48K // api.FDMDV_OS_48 # type: ignore
|
|
|
|
api.fdmdv_8_to_48_short.argtype = [ctypes.c_void_p, ctypes.c_void_p, ctypes.c_int] # type: ignore
|
|
|
|
api.fdmdv_48_to_8_short.argtype = [ctypes.c_void_p, ctypes.c_void_p, ctypes.c_int] # type: ignore
|
|
|
|
|
2021-12-13 18:00:38 +00:00
|
|
|
|
2021-12-16 01:26:39 +00:00
|
|
|
class resampler:
|
2022-03-04 15:50:32 +00:00
|
|
|
"""
|
2022-05-11 22:10:59 +00:00
|
|
|
Re-sampler class
|
2022-03-04 15:50:32 +00:00
|
|
|
"""
|
2022-05-22 20:28:55 +00:00
|
|
|
|
2022-05-11 22:10:59 +00:00
|
|
|
# Re-sample an array of variable length, we just store the filter memories here
|
2021-12-16 01:26:39 +00:00
|
|
|
MEM8 = api.FDMDV_OS_TAPS_48_8K
|
|
|
|
MEM48 = api.FDMDV_OS_TAPS_48K
|
2021-12-16 02:01:35 +00:00
|
|
|
|
|
|
|
def __init__(self):
|
2022-05-26 01:23:30 +00:00
|
|
|
log.debug("[C2 ] Create 48<->8 kHz resampler")
|
2021-12-16 02:01:35 +00:00
|
|
|
self.filter_mem8 = np.zeros(self.MEM8, dtype=np.int16)
|
|
|
|
self.filter_mem48 = np.zeros(self.MEM48)
|
2022-05-09 00:41:49 +00:00
|
|
|
|
2022-05-11 22:10:59 +00:00
|
|
|
def resample48_to_8(self, in48):
|
2022-03-04 15:50:32 +00:00
|
|
|
"""
|
2022-05-11 22:10:59 +00:00
|
|
|
Audio resampler integration from codec2
|
|
|
|
Downsample audio from 48000Hz to 8000Hz
|
2022-03-04 15:50:32 +00:00
|
|
|
Args:
|
2022-05-11 22:10:59 +00:00
|
|
|
in48: input data as np.int16
|
2022-03-04 15:50:32 +00:00
|
|
|
|
2022-05-11 22:10:59 +00:00
|
|
|
Returns:
|
|
|
|
Downsampled 8000Hz data as np.int16
|
2022-03-04 15:50:32 +00:00
|
|
|
"""
|
2021-12-16 01:26:39 +00:00
|
|
|
assert in48.dtype == np.int16
|
2022-05-11 22:10:59 +00:00
|
|
|
# Length of input vector must be an integer multiple of api.FDMDV_OS_48
|
2022-05-22 20:28:55 +00:00
|
|
|
assert len(in48) % api.FDMDV_OS_48 == 0 # type: ignore
|
2021-12-16 02:01:35 +00:00
|
|
|
|
2022-05-11 22:10:59 +00:00
|
|
|
# Concatenate filter memory and input samples
|
2022-05-22 20:28:55 +00:00
|
|
|
in48_mem = np.zeros(self.MEM48 + len(in48), dtype=np.int16)
|
|
|
|
in48_mem[: self.MEM48] = self.filter_mem48
|
|
|
|
in48_mem[self.MEM48 :] = in48
|
2021-12-16 11:10:30 +00:00
|
|
|
|
2021-12-19 23:06:39 +00:00
|
|
|
# In C: pin48=&in48_mem[MEM48]
|
2022-05-11 22:10:59 +00:00
|
|
|
pin48 = ctypes.byref(np.ctypeslib.as_ctypes(in48_mem), 2 * self.MEM48)
|
2022-05-22 20:28:55 +00:00
|
|
|
n8 = int(len(in48) / api.FDMDV_OS_48) # type: ignore
|
2021-12-16 02:01:35 +00:00
|
|
|
out8 = np.zeros(n8, dtype=np.int16)
|
2022-05-22 20:28:55 +00:00
|
|
|
api.fdmdv_48_to_8_short(out8.ctypes, pin48, n8) # type: ignore
|
2021-12-16 11:10:30 +00:00
|
|
|
|
2022-05-11 22:10:59 +00:00
|
|
|
# Store memory for next time
|
2022-05-22 20:28:55 +00:00
|
|
|
self.filter_mem48 = in48_mem[: self.MEM48]
|
2021-12-16 02:01:35 +00:00
|
|
|
|
|
|
|
return out8
|
|
|
|
|
2022-05-11 22:10:59 +00:00
|
|
|
def resample8_to_48(self, in8):
|
2022-03-04 15:50:32 +00:00
|
|
|
"""
|
2022-05-11 22:10:59 +00:00
|
|
|
Audio resampler integration from codec2
|
|
|
|
Re-sample audio from 8000Hz to 48000Hz
|
2022-03-04 15:50:32 +00:00
|
|
|
Args:
|
2022-05-11 22:10:59 +00:00
|
|
|
in8: input data as np.int16
|
2022-03-04 15:50:32 +00:00
|
|
|
|
2022-05-11 22:10:59 +00:00
|
|
|
Returns:
|
|
|
|
48000Hz audio as np.int16
|
2022-03-04 15:50:32 +00:00
|
|
|
"""
|
2021-12-16 01:26:39 +00:00
|
|
|
assert in8.dtype == np.int16
|
2021-12-16 02:01:35 +00:00
|
|
|
|
2022-05-11 22:10:59 +00:00
|
|
|
# Concatenate filter memory and input samples
|
2022-05-22 20:28:55 +00:00
|
|
|
in8_mem = np.zeros(self.MEM8 + len(in8), dtype=np.int16)
|
|
|
|
in8_mem[: self.MEM8] = self.filter_mem8
|
|
|
|
in8_mem[self.MEM8 :] = in8
|
2021-12-16 02:01:35 +00:00
|
|
|
|
2021-12-19 23:06:39 +00:00
|
|
|
# In C: pin8=&in8_mem[MEM8]
|
2022-05-11 22:10:59 +00:00
|
|
|
pin8 = ctypes.byref(np.ctypeslib.as_ctypes(in8_mem), 2 * self.MEM8)
|
2022-05-22 20:28:55 +00:00
|
|
|
out48 = np.zeros(api.FDMDV_OS_48 * len(in8), dtype=np.int16) # type: ignore
|
|
|
|
api.fdmdv_8_to_48_short(out48.ctypes, pin8, len(in8)) # type: ignore
|
2021-12-16 11:10:30 +00:00
|
|
|
|
2022-05-11 22:10:59 +00:00
|
|
|
# Store memory for next time
|
2022-05-22 20:28:55 +00:00
|
|
|
self.filter_mem8 = in8_mem[: self.MEM8]
|
2021-12-16 02:01:35 +00:00
|
|
|
|
|
|
|
return out48
|
2023-11-25 22:14:49 +00:00
|
|
|
|
|
|
|
def open_instance(mode: int) -> ctypes.c_void_p:
|
|
|
|
"""
|
|
|
|
Return a codec2 instance of the type `mode`
|
|
|
|
|
|
|
|
:param mode: Type of codec2 instance to return
|
|
|
|
:type mode: Union[int, str]
|
|
|
|
:return: C-function of the requested codec2 instance
|
|
|
|
:rtype: ctypes.c_void_p
|
|
|
|
"""
|
2023-12-16 13:29:47 +00:00
|
|
|
# if mode in [FREEDV_MODE.fsk_ldpc_0.value]:
|
|
|
|
# return ctypes.cast(
|
|
|
|
# api.freedv_open_advanced(
|
|
|
|
# FREEDV_MODE.fsk_ldpc.value,
|
|
|
|
# ctypes.byref(api.FREEDV_MODE_FSK_LDPC_0_ADV),
|
|
|
|
# ),
|
|
|
|
# ctypes.c_void_p,
|
|
|
|
# )
|
|
|
|
#
|
|
|
|
# if mode in [FREEDV_MODE.fsk_ldpc_1.value]:
|
|
|
|
# return ctypes.cast(
|
|
|
|
# api.freedv_open_advanced(
|
|
|
|
# FREEDV_MODE.fsk_ldpc.value,
|
|
|
|
# ctypes.byref(api.FREEDV_MODE_FSK_LDPC_1_ADV),
|
|
|
|
# ),
|
|
|
|
# ctypes.c_void_p,
|
|
|
|
# )
|
|
|
|
#
|
2023-11-25 22:14:49 +00:00
|
|
|
return ctypes.cast(api.freedv_open(mode), ctypes.c_void_p)
|
|
|
|
|
|
|
|
def get_bytes_per_frame(mode: int) -> int:
|
|
|
|
"""
|
|
|
|
Provide bytes per frame information for accessing from data handler
|
|
|
|
|
|
|
|
:param mode: Codec2 mode to query
|
|
|
|
:type mode: int or str
|
|
|
|
:return: Bytes per frame of the supplied codec2 data mode
|
|
|
|
:rtype: int
|
|
|
|
"""
|
|
|
|
freedv = open_instance(mode)
|
|
|
|
# TODO add close session
|
|
|
|
# get number of bytes per frame for mode
|
|
|
|
return int(api.freedv_get_bits_per_modem_frame(freedv) / 8)
|