From 0bc04d8c543b06329a25a752829a6686029bac40 Mon Sep 17 00:00:00 2001 From: Mooneer Salem Date: Fri, 19 Aug 2022 01:24:37 -0700 Subject: [PATCH] Update README.md accordingly. --- README.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 823c8d5..96cf402 100644 --- a/README.md +++ b/README.md @@ -5,12 +5,10 @@ Experimental version of LPCNet that has been used to develop FreeDV 2020 - a HF ## Quickstart ``` -$ git clone https://github.com/drowe67/codec2.git -$ cd codec2 && mkdir build_linux && cd build_linux && cmake ../ && make $ cd ~ $ git clone https://github.com/drowe67/LPCNet.git $ cd LPCNet && mkdir build_linux && cd build_linux -$ cmake -DCODEC2_BUILD_DIR=~/codec2/build_linux .. +$ cmake .. $ 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.: ``` -make -DDISABLE_CPU_OPTIMIZATION=ON -DSSE=ON -DCODEC2_BUILD_DIR=~/codec2/build_linux .. +make -DDISABLE_CPU_OPTIMIZATION=ON -DSSE=ON .. ``` ## CTests