| commit | 82db8e05ae2c61e01f2eee16df9b4d456aa28f34 | [log] [tgz] |
|---|---|---|
| author | Antoine Soulier <asoulier@google.com> | Fri Apr 14 14:47:31 2023 -0700 |
| committer | Antoine Soulier <asoulier@google.com> | Fri Apr 28 09:33:44 2023 -0700 |
| tree | 74c31aad7ee2a1c0952b37c854cd21e482de29c2 | |
| parent | 2ce884d8efedef7f41ebf41591b270c4e27cee8d [diff] |
wip: MDCT, SNS in fixed point
The LC3 is an efficient low latency audio codec.
Low Complexity Communication Codec
The directory layout is as follows :
The default toolchain used is GCC. Invoke make to build the library.
$ make -j
Compiled library liblc3.a will be found in bin directory.
The cc, as, ld and ar can be selected with respective Makefile variables CC, AS, LD and AR. The AS and LD selections are optionnal, and fallback to CC selection when not defined.
The LIBC must be set to bionic for android cross-compilation. This switch prevent link with pthread and rt libraries, that is included in the bionic libc.
Following example build for android, using NDK toolset.
$ make -j CC=path_to_android_ndk_prebuilt/toolchain-prefix-clang LIBC=bionic
Compiled library will be found in bin directory.
Tools can be all compiled, while involking make as follows :
$ make tools
The standalone encoder elc3 take a wave file as input and encode it according given parameter. The LC3 binary file format used is the non standard format described by the reference encoder / decoder tools. The standalone decoder dlc3 do the inverse operation.
Refer to elc3 -h or dlc3 -h for options.
Note that elc3 output bitstream to standard output when output file is omitted. On the other side dlc3 read from standard input when input output file are omitted. In such way you can easly test encoding / decoding loop with :
$ ./elc3 <in.wav> -b <bitrate> | ./dlc3 > <out.wav>
Adding Linux aplay tools, you will be able to instant hear the result :
$ ./elc3 <in.wav> -b <bitrate> | ./dlc3 | aplay
A python implementation of the encoder is provided in test diretory. The C implementation is unitary validated against this implementation and intermediate values given in Appendix C of the specification.
# apt install python3 python3-dev python3-pip $ pip3 install scipy numpy
$ make test
The proposed encoder and decoder implementation have been fully tested and validated.
For more detail on conformance, refer to Bluetooth Conformance Documents and scripts
The codec was here subjectively evaluated in a blind listening test.
Meson build system is also available to build and install lc3 codec in Linux environment.
$ meson build
$ cd build
$ ninja
$ sudo ninja install