mirror of https://github.com/drowe67/LPCNet.git
Update README.md accordingly.
parent
a5b1996142
commit
0bc04d8c54
|
@ -5,12 +5,10 @@ Experimental version of LPCNet that has been used to develop FreeDV 2020 - a HF
|
||||||
## Quickstart
|
## Quickstart
|
||||||
|
|
||||||
```
|
```
|
||||||
$ git clone https://github.com/drowe67/codec2.git
|
|
||||||
$ cd codec2 && mkdir build_linux && cd build_linux && cmake ../ && make
|
|
||||||
$ cd ~
|
$ cd ~
|
||||||
$ git clone https://github.com/drowe67/LPCNet.git
|
$ git clone https://github.com/drowe67/LPCNet.git
|
||||||
$ cd LPCNet && mkdir build_linux && cd build_linux
|
$ cd LPCNet && mkdir build_linux && cd build_linux
|
||||||
$ cmake -DCODEC2_BUILD_DIR=~/codec2/build_linux ..
|
$ cmake ..
|
||||||
$ make
|
$ make
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -30,7 +28,7 @@ sox ../../wav/wia.wav -t raw -r 16000 - | ./lpcnet_enc -s | ./lpcnet_dec -s | ap
|
||||||
|
|
||||||
Cmake will select the fastest SIMD available (AVX/SSSE/None), however you can manually select e.g.:
|
Cmake will select the fastest SIMD available (AVX/SSSE/None), however you can manually select e.g.:
|
||||||
```
|
```
|
||||||
make -DDISABLE_CPU_OPTIMIZATION=ON -DSSE=ON -DCODEC2_BUILD_DIR=~/codec2/build_linux ..
|
make -DDISABLE_CPU_OPTIMIZATION=ON -DSSE=ON ..
|
||||||
```
|
```
|
||||||
|
|
||||||
## CTests
|
## CTests
|
||||||
|
|
Loading…
Reference in New Issue