-
Notifications
You must be signed in to change notification settings - Fork 224
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3099 from ann0see/updateOpus
- Loading branch information
Showing
205 changed files
with
20,412 additions
and
52,451 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
image: Visual Studio 2015 | ||
configuration: | ||
- Debug | ||
- DebugDLL | ||
- DebugDLL_fixed | ||
- Release | ||
- ReleaseDLL | ||
- ReleaseDLL_fixed | ||
|
||
platform: | ||
- Win32 | ||
- x64 | ||
|
||
environment: | ||
api_key: | ||
secure: kR3Ac0NjGwFnTmXdFrR8d6VXjdk5F7L4F/BilC4nvaM= | ||
|
||
build: | ||
project: win32\VS2015\opus.sln | ||
parallel: true | ||
verbosity: minimal | ||
|
||
after_build: | ||
- cd %APPVEYOR_BUILD_FOLDER% | ||
- 7z a opus.zip win32\VS2015\%PLATFORM%\%CONFIGURATION%\opus.??? include\*.h | ||
|
||
test_script: | ||
- cd %APPVEYOR_BUILD_FOLDER%\win32\VS2015\%PLATFORM%\%CONFIGURATION% | ||
- test_opus_api.exe | ||
- test_opus_decode.exe | ||
- test_opus_encode.exe | ||
|
||
artifacts: | ||
- path: opus.zip | ||
|
||
on_success: | ||
- ps: if ($env:api_key -and "$env:configuration/$env:platform" -eq "ReleaseDLL_fixed/x64") { Start-AppveyorBuild -ApiKey $env:api_key -ProjectSlug 'opus-tools' } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
.gitignore export-ignore | ||
.gitattributes export-ignore | ||
|
||
update_version export-ignore | ||
|
||
*.bat eol=crlf | ||
*.sln eol=crlf | ||
*.vcxproj eol=crlf | ||
*.vcxproj.filters eol=crlf | ||
common.props eol=crlf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
Doxyfile | ||
Makefile | ||
Makefile.in | ||
TAGS | ||
aclocal.m4 | ||
autom4te.cache | ||
*.kdevelop.pcs | ||
*.kdevses | ||
compile | ||
config.guess | ||
config.h | ||
config.h.in | ||
config.log | ||
config.status | ||
config.sub | ||
configure | ||
depcomp | ||
INSTALL | ||
install-sh | ||
.deps | ||
.libs | ||
.dirstamp | ||
*.a | ||
*.exe | ||
*.la | ||
*-gnu.S | ||
testcelt | ||
libtool | ||
ltmain.sh | ||
missing | ||
m4/libtool.m4 | ||
m4/ltoptions.m4 | ||
m4/ltsugar.m4 | ||
m4/ltversion.m4 | ||
m4/lt~obsolete.m4 | ||
opus_compare | ||
opus_demo | ||
repacketizer_demo | ||
stamp-h1 | ||
test-driver | ||
trivial_example | ||
*.sw* | ||
*.o | ||
*.lo | ||
*.pc | ||
*.tar.gz | ||
*~ | ||
tests/*test | ||
tests/test_opus_api | ||
tests/test_opus_decode | ||
tests/test_opus_encode | ||
tests/test_opus_padding | ||
tests/test_opus_projection | ||
celt/arm/armopts.s | ||
celt/dump_modes/dump_modes | ||
celt/tests/test_unit_cwrs32 | ||
celt/tests/test_unit_dft | ||
celt/tests/test_unit_entropy | ||
celt/tests/test_unit_laplace | ||
celt/tests/test_unit_mathops | ||
celt/tests/test_unit_mdct | ||
celt/tests/test_unit_rotation | ||
celt/tests/test_unit_types | ||
doc/doxygen_sqlite3.db | ||
doc/doxygen-build.stamp | ||
doc/html | ||
doc/latex | ||
doc/man | ||
package_version | ||
version.h | ||
celt/Debug | ||
celt/Release | ||
celt/x64 | ||
silk/Debug | ||
silk/Release | ||
silk/x64 | ||
silk/fixed/Debug | ||
silk/fixed/Release | ||
silk/fixed/x64 | ||
silk/float/Debug | ||
silk/float/Release | ||
silk/float/x64 | ||
silk/tests/test_unit_LPC_inv_pred_gain | ||
src/Debug | ||
src/Release | ||
src/x64 | ||
/*[Bb]uild*/ | ||
.vs/ | ||
.vscode/ | ||
CMakeSettings.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
include: | ||
- template: 'Workflows/Branch-Pipelines.gitlab-ci.yml' | ||
|
||
default: | ||
tags: | ||
- docker | ||
# Image from https://hub.docker.com/_/gcc/ based on Debian | ||
image: gcc:9 | ||
|
||
whitespace: | ||
stage: test | ||
script: | ||
- git diff-tree --check origin/master HEAD | ||
|
||
autoconf: | ||
stage: build | ||
before_script: | ||
- apt-get update && | ||
apt-get install -y zip doxygen | ||
script: | ||
- ./autogen.sh | ||
- ./configure | ||
- make -j4 | ||
- make distcheck | ||
cache: | ||
paths: | ||
- "src/*.o" | ||
- "src/.libs/*.o" | ||
- "silk/*.o" | ||
- "silk/.libs/*.o" | ||
- "celt/*.o" | ||
- "celt/.libs/*.o" | ||
|
||
cmake: | ||
stage: build | ||
before_script: | ||
- apt-get update && | ||
apt-get install -y cmake ninja-build | ||
script: | ||
- mkdir build | ||
- cmake -S . -B build -G "Ninja" -DCMAKE_BUILD_TYPE=Release -DOPUS_BUILD_TESTING=ON -DOPUS_BUILD_PROGRAMS=ON | ||
- cmake --build build | ||
- cd build && ctest --output-on-failure | ||
|
||
meson: | ||
stage: build | ||
before_script: | ||
- apt-get update && | ||
apt-get install -y python3-pip ninja-build doxygen | ||
- export XDG_CACHE_HOME=$PWD/pip-cache | ||
- pip3 install --user meson | ||
script: | ||
- export PATH=$PATH:$HOME/.local/bin | ||
- mkdir builddir | ||
- meson setup --werror -Dtests=enabled -Ddocs=enabled -Dbuildtype=release builddir | ||
- meson compile -C builddir | ||
- meson test -C builddir | ||
#- meson dist --no-tests -C builddir | ||
cache: | ||
paths: | ||
- 'pip-cache/*' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
language: c | ||
|
||
compiler: | ||
- gcc | ||
- clang | ||
|
||
os: | ||
- linux | ||
- osx | ||
|
||
env: | ||
- CONFIG="" | ||
- CONFIG="--enable-assertions" | ||
- CONFIG="--enable-fixed-point" | ||
- CONFIG="--enable-fixed-point --disable-float-api" | ||
- CONFIG="--enable-fixed-point --enable-assertions" | ||
|
||
script: | ||
- ./autogen.sh | ||
- ./configure $CONFIG | ||
- make distcheck |
Oops, something went wrong.