Commit 94d2a8f3 authored by Archit Tamarapu's avatar Archit Tamarapu
Browse files

[cleanup] removed duplicated scripts folder

parent 78e7e02e
Loading
Loading
Loading
Loading
Loading

lib_rend/lc3plus_codec/.gitignore

deleted100644 → 0
+0 −3
Original line number Diff line number Diff line
ETSI_Release/LC3plus_ETSI_src_va15eb59632b_20230228
package.info
lc3plus_sources.zip
 No newline at end of file

lib_rend/lc3plus_codec/README.md

deleted100644 → 0
+0 −6
Original line number Diff line number Diff line
# Download and unzip LC3plus

1. Download the V1.4.1 version of the LC3plus source code from ETSI: https://www.etsi.org/deliver/etsi_ts/103600_103699/103634/01.04.01_60/ts_103634v010401p0.zip 
2. Unzip it into this folder. After unzipping, the path to the  `Readme.txt` of the LC3plus sources must be: `lib_rend/lc3plus_codec/ETSI_Release/LC3plus_ETSI_src_va15eb59632b_20230228/Readme.txt`
3. Apply the `lc3plus.patch`, for example by using the command `git apply --ignore-whitespace lc3plus.patch`
4. Remove files `ETSI_Release/LC3plus_ETSI_src_va15eb59632b_20230228/src/floating_point/fft.c` `ETSI_Release/LC3plus_ETSI_src_va15eb59632b_20230228/src/floating_point/codec_exe.c`
+0 −9
Original line number Diff line number Diff line
# This script shall only be used by automated continuous integration systems
# Humans shall follow the instructions in lib_rend/lc3plus_codec/README.md
Remove-Item -Force -Recurse ETSI_Release -ErrorAction 'silentlycontinue'
(new-object System.Net.WebClient).DownloadFile('https://www.etsi.org/deliver/etsi_ts/103600_103699/103634/01.04.01_60/ts_103634v010401p0.zip',"$(pwd)\lc3plus_sources.zip")
Expand-Archive -Force -Path .\lc3plus_sources.zip -DestinationPath .
Remove-Item -Force lc3plus_sources.zip
git apply --ignore-whitespace lc3plus.patch
Remove-Item -Force ETSI_Release\LC3plus_ETSI_src_va15eb59632b_20230228\src\floating_point\fft.c
Remove-Item -Force ETSI_Release\LC3plus_ETSI_src_va15eb59632b_20230228\src\floating_point\codec_exe.c
+0 −8
Original line number Diff line number Diff line
# This script shall only be used by automated continuous integration systems
# Humans shall follow the instructions in lib_rend/lc3plus_codec/README.md
rm -rf ETSI_Release
curl -o ./lc3plus_sources.zip https://www.etsi.org/deliver/etsi_ts/103600_103699/103634/01.04.01_60/ts_103634v010401p0.zip
unzip lc3plus_sources.zip -d .
rm -f lc3plus_sources.zip
git apply --ignore-whitespace lc3plus.patch
rm ETSI_Release/LC3plus_ETSI_src_va15eb59632b_20230228/src/floating_point/fft.c ETSI_Release/LC3plus_ETSI_src_va15eb59632b_20230228/src/floating_point/codec_exe.c
+0 −1620

File deleted.

Preview size limit exceeded, changes collapsed.