-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathlc3.py
400 lines (304 loc) · 13.5 KB
/
lc3.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
#
# Copyright 2024 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
import array
import ctypes
import enum
import glob
import os
from ctypes import c_bool, c_byte, c_int, c_uint, c_size_t, c_void_p
from ctypes.util import find_library
class _Base:
def __init__(self, frame_duration, samplerate, nchannels, **kwargs):
self.hrmode = False
self.dt_us = int(frame_duration * 1000)
self.sr_hz = int(samplerate)
self.sr_pcm_hz = self.sr_hz
self.nchannels = nchannels
libpath = None
for k in kwargs.keys():
if k == 'hrmode':
self.hrmode = bool(kwargs[k])
elif k == 'pcm_samplerate':
self.sr_pcm_hz = int(kwargs[k])
elif k == 'libpath':
libpath = kwargs[k]
else:
raise ValueError("Invalid keyword argument: " + k)
if self.dt_us not in [2500, 5000, 7500, 10000]:
raise ValueError(
"Invalid frame duration: %.1f ms" % frame_duration)
allowed_samplerate = [8000, 16000, 24000, 32000, 48000] \
if not self.hrmode else [48000, 96000]
if self.sr_hz not in allowed_samplerate:
raise ValueError("Invalid sample rate: %d Hz" % samplerate)
if libpath is None:
mesonpy_lib = glob.glob(os.path.join(os.path.dirname(__file__), '.lc3.mesonpy.libs', '*lc3*'))
if mesonpy_lib:
libpath = mesonpy_lib[0]
else:
libpath = find_library("lc3")
if not libpath:
raise Exception("LC3 library not found")
lib = ctypes.cdll.LoadLibrary(libpath)
try:
lib.lc3_hr_frame_samples \
and lib.lc3_hr_frame_block_bytes \
and lib.lc3_hr_resolve_bitrate \
and lib.lc3_hr_delay_samples
except AttributeError:
if self.hrmode:
raise Exception('High-Resolution interface not available')
lib.lc3_hr_frame_samples = \
lambda hrmode, dt_us, sr_hz: \
lib.lc3_frame_samples(dt_us, sr_hz)
lib.lc3_hr_frame_block_bytes = \
lambda hrmode, dt_us, sr_hz, nchannels, bitrate: \
nchannels * lib.lc3_frame_bytes(dt_us, bitrate // 2)
lib.lc3_hr_resolve_bitrate = \
lambda hrmode, dt_us, sr_hz, nbytes: \
lib.lc3_resolve_bitrate(dt_us, nbytes)
lib.lc3_hr_delay_samples = \
lambda hrmode, dt_us, sr_hz: \
lib.lc3_delay_samples(dt_us, sr_hz)
lib.lc3_hr_frame_samples.argtypes = [c_bool, c_int, c_int]
lib.lc3_hr_frame_block_bytes.argtypes = \
[c_bool, c_int, c_int, c_int, c_int]
lib.lc3_hr_resolve_bitrate.argtypes = [c_bool, c_int, c_int, c_int]
lib.lc3_hr_delay_samples.argtypes = [c_bool, c_int, c_int]
self.lib = lib
libc = ctypes.cdll.LoadLibrary(find_library("c"))
self.malloc = libc.malloc
self.malloc.argtypes = [c_size_t]
self.malloc.restype = c_void_p
self.free = libc.free
self.free.argtypes = [c_void_p]
def get_frame_samples(self):
"""
Returns the number of PCM samples in an LC3 frame
"""
ret = self.lib.lc3_hr_frame_samples(
self.hrmode, self.dt_us, self.sr_pcm_hz)
if ret < 0:
raise ValueError("Bad parameters")
return ret
def get_frame_bytes(self, bitrate):
"""
Returns the size of LC3 frame blocks, from bitrate in bit per seconds.
A target `bitrate` equals 0 or `INT32_MAX` returns respectively
the minimum and maximum allowed size.
"""
ret = self.lib.lc3_hr_frame_block_bytes(
self.hrmode, self.dt_us, self.sr_hz, self.nchannels, bitrate)
if ret < 0:
raise ValueError("Bad parameters")
return ret
def resolve_bitrate(self, nbytes):
"""
Returns the bitrate in bits per seconds, from the size of LC3 frames.
"""
ret = self.lib.lc3_hr_resolve_bitrate(
self.hrmode, self.dt_us, self.sr_hz, nbytes)
if ret < 0:
raise ValueError("Bad parameters")
return ret
def get_delay_samples(self):
"""
Returns the algorithmic delay, as a number of samples.
"""
ret = self.lib.lc3_hr_delay_samples(
self.hrmode, self.dt_us, self.sr_pcm_hz)
if ret < 0:
raise ValueError("Bad parameters")
return ret
@staticmethod
def _resolve_pcm_format(bitdepth):
PCM_FORMAT_S16 = 0
PCM_FORMAT_S24 = 1
PCM_FORMAT_S24_3LE = 2
PCM_FORMAT_FLOAT = 3
match bitdepth:
case 16: return (PCM_FORMAT_S16, ctypes.c_int16)
case 24: return (PCM_FORMAT_S24_3LE, 3 * ctypes.c_byte)
case None: return (PCM_FORMAT_FLOAT, ctypes.c_float)
case _: raise ValueError("Could not interpret PCM bitdepth")
class Encoder(_Base):
"""
LC3 Encoder wrapper
The `frame_duration` expressed in milliseconds is any of 2.5, 5.0, 7.5
or 10.0. The `samplerate`, in Hertz, is any of 8000, 16000, 24000, 32000
or 48000, unless High-Resolution mode is enabled. In High-Resolution mode,
the `samplerate` is 48000 or 96000.
By default, one channel is processed. When `nchannels` is greater than one,
the PCM input stream is read interleaved and consecutives LC3 frames are
output, for each channel.
Keyword arguments:
hrmode : Enable High-Resolution mode, default is `False`.
sr_pcm_hz : Input PCM samplerate, enable downsampling of input.
libpath : LC3 library path and name
"""
class c_encoder_t(c_void_p):
pass
def __init__(self, frame_duration, samplerate, nchannels=1, **kwargs):
super().__init__(frame_duration, samplerate, nchannels, **kwargs)
lib = self.lib
try:
lib.lc3_hr_encoder_size \
and lib.lc3_hr_setup_encoder
except AttributeError:
assert not self.hrmode
lib.lc3_hr_encoder_size = \
lambda hrmode, dt_us, sr_hz: \
lib.lc3_encoder_size(dt_us, sr_hz)
lib.lc3_hr_setup_encoder = \
lambda hrmode, dt_us, sr_hz, sr_pcm_hz, mem: \
lib.lc3_setup_encoder(dt_us, sr_hz, sr_pcm_hz, mem)
lib.lc3_hr_encoder_size.argtypes = [c_bool, c_int, c_int]
lib.lc3_hr_encoder_size.restype = c_uint
lib.lc3_hr_setup_encoder.argtypes = \
[c_bool, c_int, c_int, c_int, c_void_p]
lib.lc3_hr_setup_encoder.restype = self.c_encoder_t
lib.lc3_encode.argtypes = \
[self.c_encoder_t, c_int, c_void_p, c_int, c_int, c_void_p]
def new_encoder(): return lib.lc3_hr_setup_encoder(
self.hrmode, self.dt_us, self.sr_hz, self.sr_pcm_hz,
self.malloc(lib.lc3_hr_encoder_size(
self.hrmode, self.dt_us, self.sr_pcm_hz)))
self.__encoders = [new_encoder() for i in range(nchannels)]
def __del__(self):
try:
(self.free(encoder) for encoder in self.__encoders)
finally:
return
def encode(self, pcm, nbytes, bitdepth=None):
"""
Encode LC3 frame(s), for each channel.
The `pcm` input is given in two ways. When no `bitdepth` is defined,
it's a vector of floating point values from -1 to 1, coding the sample
levels. When `bitdepth` is defined, `pcm` is interpreted as a byte-like
object, each sample coded on `bitdepth` bits (16 or 24).
The machine endianness, or little endian, is used for 16 or 24 bits
width, respectively.
In both cases, the `pcm` vector data is padded with zeros when
its length is less than the required input samples for the encoder.
Channels concatenation of encoded LC3 frames, of `nbytes`, is returned.
"""
nchannels = self.nchannels
frame_samples = self.get_frame_samples()
(pcm_fmt, pcm_t) = self._resolve_pcm_format(bitdepth)
pcm_len = nchannels * frame_samples
if bitdepth is None:
pcm_buffer = array.array('f', pcm)
# Invert test to catch NaN
if not abs(sum(pcm)) / frame_samples < 2:
raise ValueError("Out of range PCM input")
padding = max(pcm_len - frame_samples, 0)
pcm_buffer.extend(array.array('f', [0] * padding))
else:
padding = max(pcm_len * ctypes.sizeof(pcm_t) - len(pcm), 0)
pcm_buffer = bytearray(pcm) + bytearray(padding)
data_buffer = (c_byte * nbytes)()
data_offset = 0
for (ich, encoder) in enumerate(self.__encoders):
pcm_offset = ich * ctypes.sizeof(pcm_t)
pcm = (pcm_t * (pcm_len - ich)).from_buffer(pcm_buffer, pcm_offset)
data_size = nbytes // nchannels + int(ich < nbytes % nchannels)
data = (c_byte * data_size).from_buffer(data_buffer, data_offset)
data_offset += data_size
ret = self.lib.lc3_encode(
encoder, pcm_fmt, pcm, nchannels, len(data), data)
if ret < 0:
raise ValueError("Bad parameters")
return bytes(data_buffer)
class Decoder(_Base):
"""
LC3 Decoder wrapper
The `frame_duration` expressed in milliseconds is any of 2.5, 5.0, 7.5
or 10.0. The `samplerate`, in Hertz, is any of 8000, 16000, 24000, 32000
or 48000, unless High-Resolution mode is enabled. In High-Resolution
mode, the `samplerate` is 48000 or 96000.
By default, one channel is processed. When `nchannels` is greater than one,
the PCM input stream is read interleaved and consecutives LC3 frames are
output, for each channel.
Keyword arguments:
hrmode : Enable High-Resolution mode, default is `False`.
sr_pcm_hz : Output PCM samplerate, enable upsampling of output.
libpath : LC3 library path and name
"""
class c_decoder_t(c_void_p):
pass
def __init__(self, frame_duration, samplerate, nchannels=1, **kwargs):
super().__init__(frame_duration, samplerate, nchannels, **kwargs)
lib = self.lib
try:
lib.lc3_hr_decoder_size \
and lib.lc3_hr_setup_decoder
except AttributeError:
assert not self.hrmode
lib.lc3_hr_decoder_size = \
lambda hrmode, dt_us, sr_hz: \
lib.lc3_decoder_size(dt_us, sr_hz)
lib.lc3_hr_setup_decoder = \
lambda hrmode, dt_us, sr_hz, sr_pcm_hz, mem: \
lib.lc3_setup_decoder(dt_us, sr_hz, sr_pcm_hz, mem)
lib.lc3_hr_decoder_size.argtypes = [c_bool, c_int, c_int]
lib.lc3_hr_decoder_size.restype = c_uint
lib.lc3_hr_setup_decoder.argtypes = \
[c_bool, c_int, c_int, c_int, c_void_p]
lib.lc3_hr_setup_decoder.restype = self.c_decoder_t
lib.lc3_decode.argtypes = \
[self.c_decoder_t, c_void_p, c_int, c_int, c_void_p, c_int]
def new_decoder(): return lib.lc3_hr_setup_decoder(
self.hrmode, self.dt_us, self.sr_hz, self.sr_pcm_hz,
self.malloc(lib.lc3_hr_decoder_size(
self.hrmode, self.dt_us, self.sr_pcm_hz)))
self.__decoders = [new_decoder() for i in range(nchannels)]
def __del__(self):
try:
(self.free(decoder) for decoder in self.__decoders)
finally:
return
def decode(self, data, bitdepth=None):
"""
Decode an LC3 frame
The input `data` is the channels concatenation of LC3 frames in a
byte-like object. Interleaved PCM samples are returned according to
the `bitdepth` indication.
When no `bitdepth` is defined, it's a vector of floating point values
from -1 to 1, coding the sample levels. When `bitdepth` is defined,
it returns a byte array, each sample coded on `bitdepth` bits.
The machine endianness, or little endian, is used for 16 or 24 bits
width, respectively.
"""
nchannels = self.nchannels
frame_samples = self.get_frame_samples()
(pcm_fmt, pcm_t) = self._resolve_pcm_format(bitdepth)
pcm_len = nchannels * self.get_frame_samples()
pcm_buffer = (pcm_t * pcm_len)()
data_buffer = bytearray(data)
data_offset = 0
for (ich, decoder) in enumerate(self.__decoders):
pcm_offset = ich * ctypes.sizeof(pcm_t)
pcm = (pcm_t * (pcm_len - ich)).from_buffer(pcm_buffer, pcm_offset)
data_size = len(data_buffer) // nchannels + \
int(ich < len(data_buffer) % nchannels)
data = (c_byte * data_size).from_buffer(data_buffer, data_offset)
data_offset += data_size
ret = self.lib.lc3_decode(
decoder, data, len(data), pcm_fmt, pcm, self.nchannels)
if ret < 0:
raise ValueError("Bad parameters")
return array.array('f', pcm_buffer) \
if bitdepth is None else bytes(pcm_buffer)