mirror of
https://github.com/musix-org/musix-oss
synced 2024-11-10 02:00:20 +00:00
modules
This commit is contained in:
parent
963e464072
commit
f69d3c6de2
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,4 +1,3 @@
|
|||||||
node_modules/
|
|
||||||
dev/
|
dev/
|
||||||
.env
|
.env
|
||||||
.vscode/
|
.vscode/
|
||||||
|
15
node_modules/.bin/compileProtos
generated
vendored
15
node_modules/.bin/compileProtos
generated
vendored
@ -1,15 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
||||||
|
|
||||||
case `uname` in
|
|
||||||
*CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
if [ -x "$basedir/node" ]; then
|
|
||||||
"$basedir/node" "$basedir/../google-gax/build/tools/compileProtos.js" "$@"
|
|
||||||
ret=$?
|
|
||||||
else
|
|
||||||
node "$basedir/../google-gax/build/tools/compileProtos.js" "$@"
|
|
||||||
ret=$?
|
|
||||||
fi
|
|
||||||
exit $ret
|
|
17
node_modules/.bin/compileProtos.cmd
generated
vendored
17
node_modules/.bin/compileProtos.cmd
generated
vendored
@ -1,17 +0,0 @@
|
|||||||
@ECHO off
|
|
||||||
SETLOCAL
|
|
||||||
CALL :find_dp0
|
|
||||||
|
|
||||||
IF EXIST "%dp0%\node.exe" (
|
|
||||||
SET "_prog=%dp0%\node.exe"
|
|
||||||
) ELSE (
|
|
||||||
SET "_prog=node"
|
|
||||||
SET PATHEXT=%PATHEXT:;.JS;=;%
|
|
||||||
)
|
|
||||||
|
|
||||||
"%_prog%" "%dp0%\..\google-gax\build\tools\compileProtos.js" %*
|
|
||||||
ENDLOCAL
|
|
||||||
EXIT /b %errorlevel%
|
|
||||||
:find_dp0
|
|
||||||
SET dp0=%~dp0
|
|
||||||
EXIT /b
|
|
18
node_modules/.bin/compileProtos.ps1
generated
vendored
18
node_modules/.bin/compileProtos.ps1
generated
vendored
@ -1,18 +0,0 @@
|
|||||||
#!/usr/bin/env pwsh
|
|
||||||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
|
||||||
|
|
||||||
$exe=""
|
|
||||||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
|
||||||
# Fix case when both the Windows and Linux builds of Node
|
|
||||||
# are installed in the same directory
|
|
||||||
$exe=".exe"
|
|
||||||
}
|
|
||||||
$ret=0
|
|
||||||
if (Test-Path "$basedir/node$exe") {
|
|
||||||
& "$basedir/node$exe" "$basedir/../google-gax/build/tools/compileProtos.js" $args
|
|
||||||
$ret=$LASTEXITCODE
|
|
||||||
} else {
|
|
||||||
& "node$exe" "$basedir/../google-gax/build/tools/compileProtos.js" $args
|
|
||||||
$ret=$LASTEXITCODE
|
|
||||||
}
|
|
||||||
exit $ret
|
|
15
node_modules/.bin/detect-libc
generated
vendored
15
node_modules/.bin/detect-libc
generated
vendored
@ -1,15 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
||||||
|
|
||||||
case `uname` in
|
|
||||||
*CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
if [ -x "$basedir/node" ]; then
|
|
||||||
"$basedir/node" "$basedir/../detect-libc/bin/detect-libc.js" "$@"
|
|
||||||
ret=$?
|
|
||||||
else
|
|
||||||
node "$basedir/../detect-libc/bin/detect-libc.js" "$@"
|
|
||||||
ret=$?
|
|
||||||
fi
|
|
||||||
exit $ret
|
|
17
node_modules/.bin/detect-libc.cmd
generated
vendored
17
node_modules/.bin/detect-libc.cmd
generated
vendored
@ -1,17 +0,0 @@
|
|||||||
@ECHO off
|
|
||||||
SETLOCAL
|
|
||||||
CALL :find_dp0
|
|
||||||
|
|
||||||
IF EXIST "%dp0%\node.exe" (
|
|
||||||
SET "_prog=%dp0%\node.exe"
|
|
||||||
) ELSE (
|
|
||||||
SET "_prog=node"
|
|
||||||
SET PATHEXT=%PATHEXT:;.JS;=;%
|
|
||||||
)
|
|
||||||
|
|
||||||
"%_prog%" "%dp0%\..\detect-libc\bin\detect-libc.js" %*
|
|
||||||
ENDLOCAL
|
|
||||||
EXIT /b %errorlevel%
|
|
||||||
:find_dp0
|
|
||||||
SET dp0=%~dp0
|
|
||||||
EXIT /b
|
|
18
node_modules/.bin/detect-libc.ps1
generated
vendored
18
node_modules/.bin/detect-libc.ps1
generated
vendored
@ -1,18 +0,0 @@
|
|||||||
#!/usr/bin/env pwsh
|
|
||||||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
|
||||||
|
|
||||||
$exe=""
|
|
||||||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
|
||||||
# Fix case when both the Windows and Linux builds of Node
|
|
||||||
# are installed in the same directory
|
|
||||||
$exe=".exe"
|
|
||||||
}
|
|
||||||
$ret=0
|
|
||||||
if (Test-Path "$basedir/node$exe") {
|
|
||||||
& "$basedir/node$exe" "$basedir/../detect-libc/bin/detect-libc.js" $args
|
|
||||||
$ret=$LASTEXITCODE
|
|
||||||
} else {
|
|
||||||
& "node$exe" "$basedir/../detect-libc/bin/detect-libc.js" $args
|
|
||||||
$ret=$LASTEXITCODE
|
|
||||||
}
|
|
||||||
exit $ret
|
|
15
node_modules/.bin/gcs-upload
generated
vendored
15
node_modules/.bin/gcs-upload
generated
vendored
@ -1,15 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
||||||
|
|
||||||
case `uname` in
|
|
||||||
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
if [ -x "$basedir/node" ]; then
|
|
||||||
"$basedir/node" "$basedir/../gcs-resumable-upload/build/src/cli.js" "$@"
|
|
||||||
ret=$?
|
|
||||||
else
|
|
||||||
node "$basedir/../gcs-resumable-upload/build/src/cli.js" "$@"
|
|
||||||
ret=$?
|
|
||||||
fi
|
|
||||||
exit $ret
|
|
7
node_modules/.bin/gcs-upload.cmd
generated
vendored
7
node_modules/.bin/gcs-upload.cmd
generated
vendored
@ -1,7 +0,0 @@
|
|||||||
@IF EXIST "%~dp0\node.exe" (
|
|
||||||
"%~dp0\node.exe" "%~dp0\..\gcs-resumable-upload\build\src\cli.js" %*
|
|
||||||
) ELSE (
|
|
||||||
@SETLOCAL
|
|
||||||
@SET PATHEXT=%PATHEXT:;.JS;=;%
|
|
||||||
node "%~dp0\..\gcs-resumable-upload\build\src\cli.js" %*
|
|
||||||
)
|
|
18
node_modules/.bin/gcs-upload.ps1
generated
vendored
18
node_modules/.bin/gcs-upload.ps1
generated
vendored
@ -1,18 +0,0 @@
|
|||||||
#!/usr/bin/env pwsh
|
|
||||||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
|
||||||
|
|
||||||
$exe=""
|
|
||||||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
|
||||||
# Fix case when both the Windows and Linux builds of Node
|
|
||||||
# are installed in the same directory
|
|
||||||
$exe=".exe"
|
|
||||||
}
|
|
||||||
$ret=0
|
|
||||||
if (Test-Path "$basedir/node$exe") {
|
|
||||||
& "$basedir/node$exe" "$basedir/../gcs-resumable-upload/build/src/cli.js" $args
|
|
||||||
$ret=$LASTEXITCODE
|
|
||||||
} else {
|
|
||||||
& "node$exe" "$basedir/../gcs-resumable-upload/build/src/cli.js" $args
|
|
||||||
$ret=$LASTEXITCODE
|
|
||||||
}
|
|
||||||
exit $ret
|
|
15
node_modules/.bin/gp12-pem
generated
vendored
15
node_modules/.bin/gp12-pem
generated
vendored
@ -1,15 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
||||||
|
|
||||||
case `uname` in
|
|
||||||
*CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
if [ -x "$basedir/node" ]; then
|
|
||||||
"$basedir/node" "$basedir/../google-p12-pem/build/src/bin/gp12-pem.js" "$@"
|
|
||||||
ret=$?
|
|
||||||
else
|
|
||||||
node "$basedir/../google-p12-pem/build/src/bin/gp12-pem.js" "$@"
|
|
||||||
ret=$?
|
|
||||||
fi
|
|
||||||
exit $ret
|
|
17
node_modules/.bin/gp12-pem.cmd
generated
vendored
17
node_modules/.bin/gp12-pem.cmd
generated
vendored
@ -1,17 +0,0 @@
|
|||||||
@ECHO off
|
|
||||||
SETLOCAL
|
|
||||||
CALL :find_dp0
|
|
||||||
|
|
||||||
IF EXIST "%dp0%\node.exe" (
|
|
||||||
SET "_prog=%dp0%\node.exe"
|
|
||||||
) ELSE (
|
|
||||||
SET "_prog=node"
|
|
||||||
SET PATHEXT=%PATHEXT:;.JS;=;%
|
|
||||||
)
|
|
||||||
|
|
||||||
"%_prog%" "%dp0%\..\google-p12-pem\build\src\bin\gp12-pem.js" %*
|
|
||||||
ENDLOCAL
|
|
||||||
EXIT /b %errorlevel%
|
|
||||||
:find_dp0
|
|
||||||
SET dp0=%~dp0
|
|
||||||
EXIT /b
|
|
18
node_modules/.bin/gp12-pem.ps1
generated
vendored
18
node_modules/.bin/gp12-pem.ps1
generated
vendored
@ -1,18 +0,0 @@
|
|||||||
#!/usr/bin/env pwsh
|
|
||||||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
|
||||||
|
|
||||||
$exe=""
|
|
||||||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
|
||||||
# Fix case when both the Windows and Linux builds of Node
|
|
||||||
# are installed in the same directory
|
|
||||||
$exe=".exe"
|
|
||||||
}
|
|
||||||
$ret=0
|
|
||||||
if (Test-Path "$basedir/node$exe") {
|
|
||||||
& "$basedir/node$exe" "$basedir/../google-p12-pem/build/src/bin/gp12-pem.js" $args
|
|
||||||
$ret=$LASTEXITCODE
|
|
||||||
} else {
|
|
||||||
& "node$exe" "$basedir/../google-p12-pem/build/src/bin/gp12-pem.js" $args
|
|
||||||
$ret=$LASTEXITCODE
|
|
||||||
}
|
|
||||||
exit $ret
|
|
15
node_modules/.bin/he
generated
vendored
15
node_modules/.bin/he
generated
vendored
@ -1,15 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
||||||
|
|
||||||
case `uname` in
|
|
||||||
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
if [ -x "$basedir/node" ]; then
|
|
||||||
"$basedir/node" "$basedir/../he/bin/he" "$@"
|
|
||||||
ret=$?
|
|
||||||
else
|
|
||||||
node "$basedir/../he/bin/he" "$@"
|
|
||||||
ret=$?
|
|
||||||
fi
|
|
||||||
exit $ret
|
|
7
node_modules/.bin/he.cmd
generated
vendored
7
node_modules/.bin/he.cmd
generated
vendored
@ -1,7 +0,0 @@
|
|||||||
@IF EXIST "%~dp0\node.exe" (
|
|
||||||
"%~dp0\node.exe" "%~dp0\..\he\bin\he" %*
|
|
||||||
) ELSE (
|
|
||||||
@SETLOCAL
|
|
||||||
@SET PATHEXT=%PATHEXT:;.JS;=;%
|
|
||||||
node "%~dp0\..\he\bin\he" %*
|
|
||||||
)
|
|
15
node_modules/.bin/lzmajs
generated
vendored
15
node_modules/.bin/lzmajs
generated
vendored
@ -1,15 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
||||||
|
|
||||||
case `uname` in
|
|
||||||
*CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
if [ -x "$basedir/node" ]; then
|
|
||||||
"$basedir/node" "$basedir/../lzma-native/bin/lzmajs" "$@"
|
|
||||||
ret=$?
|
|
||||||
else
|
|
||||||
node "$basedir/../lzma-native/bin/lzmajs" "$@"
|
|
||||||
ret=$?
|
|
||||||
fi
|
|
||||||
exit $ret
|
|
17
node_modules/.bin/lzmajs.cmd
generated
vendored
17
node_modules/.bin/lzmajs.cmd
generated
vendored
@ -1,17 +0,0 @@
|
|||||||
@ECHO off
|
|
||||||
SETLOCAL
|
|
||||||
CALL :find_dp0
|
|
||||||
|
|
||||||
IF EXIST "%dp0%\node.exe" (
|
|
||||||
SET "_prog=%dp0%\node.exe"
|
|
||||||
) ELSE (
|
|
||||||
SET "_prog=node"
|
|
||||||
SET PATHEXT=%PATHEXT:;.JS;=;%
|
|
||||||
)
|
|
||||||
|
|
||||||
"%_prog%" "%dp0%\..\lzma-native\bin\lzmajs" %*
|
|
||||||
ENDLOCAL
|
|
||||||
EXIT /b %errorlevel%
|
|
||||||
:find_dp0
|
|
||||||
SET dp0=%~dp0
|
|
||||||
EXIT /b
|
|
18
node_modules/.bin/lzmajs.ps1
generated
vendored
18
node_modules/.bin/lzmajs.ps1
generated
vendored
@ -1,18 +0,0 @@
|
|||||||
#!/usr/bin/env pwsh
|
|
||||||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
|
||||||
|
|
||||||
$exe=""
|
|
||||||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
|
||||||
# Fix case when both the Windows and Linux builds of Node
|
|
||||||
# are installed in the same directory
|
|
||||||
$exe=".exe"
|
|
||||||
}
|
|
||||||
$ret=0
|
|
||||||
if (Test-Path "$basedir/node$exe") {
|
|
||||||
& "$basedir/node$exe" "$basedir/../lzma-native/bin/lzmajs" $args
|
|
||||||
$ret=$LASTEXITCODE
|
|
||||||
} else {
|
|
||||||
& "node$exe" "$basedir/../lzma-native/bin/lzmajs" $args
|
|
||||||
$ret=$LASTEXITCODE
|
|
||||||
}
|
|
||||||
exit $ret
|
|
15
node_modules/.bin/mime
generated
vendored
15
node_modules/.bin/mime
generated
vendored
@ -1,15 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
||||||
|
|
||||||
case `uname` in
|
|
||||||
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
if [ -x "$basedir/node" ]; then
|
|
||||||
"$basedir/node" "$basedir/../mime/cli.js" "$@"
|
|
||||||
ret=$?
|
|
||||||
else
|
|
||||||
node "$basedir/../mime/cli.js" "$@"
|
|
||||||
ret=$?
|
|
||||||
fi
|
|
||||||
exit $ret
|
|
7
node_modules/.bin/mime.cmd
generated
vendored
7
node_modules/.bin/mime.cmd
generated
vendored
@ -1,7 +0,0 @@
|
|||||||
@IF EXIST "%~dp0\node.exe" (
|
|
||||||
"%~dp0\node.exe" "%~dp0\..\mime\cli.js" %*
|
|
||||||
) ELSE (
|
|
||||||
@SETLOCAL
|
|
||||||
@SET PATHEXT=%PATHEXT:;.JS;=;%
|
|
||||||
node "%~dp0\..\mime\cli.js" %*
|
|
||||||
)
|
|
15
node_modules/.bin/mkdirp
generated
vendored
15
node_modules/.bin/mkdirp
generated
vendored
@ -1,15 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
||||||
|
|
||||||
case `uname` in
|
|
||||||
*CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
if [ -x "$basedir/node" ]; then
|
|
||||||
"$basedir/node" "$basedir/../mkdirp/bin/cmd.js" "$@"
|
|
||||||
ret=$?
|
|
||||||
else
|
|
||||||
node "$basedir/../mkdirp/bin/cmd.js" "$@"
|
|
||||||
ret=$?
|
|
||||||
fi
|
|
||||||
exit $ret
|
|
17
node_modules/.bin/mkdirp.cmd
generated
vendored
17
node_modules/.bin/mkdirp.cmd
generated
vendored
@ -1,17 +0,0 @@
|
|||||||
@ECHO off
|
|
||||||
SETLOCAL
|
|
||||||
CALL :find_dp0
|
|
||||||
|
|
||||||
IF EXIST "%dp0%\node.exe" (
|
|
||||||
SET "_prog=%dp0%\node.exe"
|
|
||||||
) ELSE (
|
|
||||||
SET "_prog=node"
|
|
||||||
SET PATHEXT=%PATHEXT:;.JS;=;%
|
|
||||||
)
|
|
||||||
|
|
||||||
"%_prog%" "%dp0%\..\mkdirp\bin\cmd.js" %*
|
|
||||||
ENDLOCAL
|
|
||||||
EXIT /b %errorlevel%
|
|
||||||
:find_dp0
|
|
||||||
SET dp0=%~dp0
|
|
||||||
EXIT /b
|
|
18
node_modules/.bin/mkdirp.ps1
generated
vendored
18
node_modules/.bin/mkdirp.ps1
generated
vendored
@ -1,18 +0,0 @@
|
|||||||
#!/usr/bin/env pwsh
|
|
||||||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
|
||||||
|
|
||||||
$exe=""
|
|
||||||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
|
||||||
# Fix case when both the Windows and Linux builds of Node
|
|
||||||
# are installed in the same directory
|
|
||||||
$exe=".exe"
|
|
||||||
}
|
|
||||||
$ret=0
|
|
||||||
if (Test-Path "$basedir/node$exe") {
|
|
||||||
& "$basedir/node$exe" "$basedir/../mkdirp/bin/cmd.js" $args
|
|
||||||
$ret=$LASTEXITCODE
|
|
||||||
} else {
|
|
||||||
& "node$exe" "$basedir/../mkdirp/bin/cmd.js" $args
|
|
||||||
$ret=$LASTEXITCODE
|
|
||||||
}
|
|
||||||
exit $ret
|
|
15
node_modules/.bin/needle
generated
vendored
15
node_modules/.bin/needle
generated
vendored
@ -1,15 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
||||||
|
|
||||||
case `uname` in
|
|
||||||
*CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
if [ -x "$basedir/node" ]; then
|
|
||||||
"$basedir/node" "$basedir/../needle/bin/needle" "$@"
|
|
||||||
ret=$?
|
|
||||||
else
|
|
||||||
node "$basedir/../needle/bin/needle" "$@"
|
|
||||||
ret=$?
|
|
||||||
fi
|
|
||||||
exit $ret
|
|
17
node_modules/.bin/needle.cmd
generated
vendored
17
node_modules/.bin/needle.cmd
generated
vendored
@ -1,17 +0,0 @@
|
|||||||
@ECHO off
|
|
||||||
SETLOCAL
|
|
||||||
CALL :find_dp0
|
|
||||||
|
|
||||||
IF EXIST "%dp0%\node.exe" (
|
|
||||||
SET "_prog=%dp0%\node.exe"
|
|
||||||
) ELSE (
|
|
||||||
SET "_prog=node"
|
|
||||||
SET PATHEXT=%PATHEXT:;.JS;=;%
|
|
||||||
)
|
|
||||||
|
|
||||||
"%_prog%" "%dp0%\..\needle\bin\needle" %*
|
|
||||||
ENDLOCAL
|
|
||||||
EXIT /b %errorlevel%
|
|
||||||
:find_dp0
|
|
||||||
SET dp0=%~dp0
|
|
||||||
EXIT /b
|
|
18
node_modules/.bin/needle.ps1
generated
vendored
18
node_modules/.bin/needle.ps1
generated
vendored
@ -1,18 +0,0 @@
|
|||||||
#!/usr/bin/env pwsh
|
|
||||||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
|
||||||
|
|
||||||
$exe=""
|
|
||||||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
|
||||||
# Fix case when both the Windows and Linux builds of Node
|
|
||||||
# are installed in the same directory
|
|
||||||
$exe=".exe"
|
|
||||||
}
|
|
||||||
$ret=0
|
|
||||||
if (Test-Path "$basedir/node$exe") {
|
|
||||||
& "$basedir/node$exe" "$basedir/../needle/bin/needle" $args
|
|
||||||
$ret=$LASTEXITCODE
|
|
||||||
} else {
|
|
||||||
& "node$exe" "$basedir/../needle/bin/needle" $args
|
|
||||||
$ret=$LASTEXITCODE
|
|
||||||
}
|
|
||||||
exit $ret
|
|
15
node_modules/.bin/node-pre-gyp
generated
vendored
15
node_modules/.bin/node-pre-gyp
generated
vendored
@ -1,15 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
||||||
|
|
||||||
case `uname` in
|
|
||||||
*CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
if [ -x "$basedir/node" ]; then
|
|
||||||
"$basedir/node" "$basedir/../node-pre-gyp/bin/node-pre-gyp" "$@"
|
|
||||||
ret=$?
|
|
||||||
else
|
|
||||||
node "$basedir/../node-pre-gyp/bin/node-pre-gyp" "$@"
|
|
||||||
ret=$?
|
|
||||||
fi
|
|
||||||
exit $ret
|
|
17
node_modules/.bin/node-pre-gyp.cmd
generated
vendored
17
node_modules/.bin/node-pre-gyp.cmd
generated
vendored
@ -1,17 +0,0 @@
|
|||||||
@ECHO off
|
|
||||||
SETLOCAL
|
|
||||||
CALL :find_dp0
|
|
||||||
|
|
||||||
IF EXIST "%dp0%\node.exe" (
|
|
||||||
SET "_prog=%dp0%\node.exe"
|
|
||||||
) ELSE (
|
|
||||||
SET "_prog=node"
|
|
||||||
SET PATHEXT=%PATHEXT:;.JS;=;%
|
|
||||||
)
|
|
||||||
|
|
||||||
"%_prog%" "%dp0%\..\node-pre-gyp\bin\node-pre-gyp" %*
|
|
||||||
ENDLOCAL
|
|
||||||
EXIT /b %errorlevel%
|
|
||||||
:find_dp0
|
|
||||||
SET dp0=%~dp0
|
|
||||||
EXIT /b
|
|
18
node_modules/.bin/node-pre-gyp.ps1
generated
vendored
18
node_modules/.bin/node-pre-gyp.ps1
generated
vendored
@ -1,18 +0,0 @@
|
|||||||
#!/usr/bin/env pwsh
|
|
||||||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
|
||||||
|
|
||||||
$exe=""
|
|
||||||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
|
||||||
# Fix case when both the Windows and Linux builds of Node
|
|
||||||
# are installed in the same directory
|
|
||||||
$exe=".exe"
|
|
||||||
}
|
|
||||||
$ret=0
|
|
||||||
if (Test-Path "$basedir/node$exe") {
|
|
||||||
& "$basedir/node$exe" "$basedir/../node-pre-gyp/bin/node-pre-gyp" $args
|
|
||||||
$ret=$LASTEXITCODE
|
|
||||||
} else {
|
|
||||||
& "node$exe" "$basedir/../node-pre-gyp/bin/node-pre-gyp" $args
|
|
||||||
$ret=$LASTEXITCODE
|
|
||||||
}
|
|
||||||
exit $ret
|
|
15
node_modules/.bin/nopt
generated
vendored
15
node_modules/.bin/nopt
generated
vendored
@ -1,15 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
||||||
|
|
||||||
case `uname` in
|
|
||||||
*CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
if [ -x "$basedir/node" ]; then
|
|
||||||
"$basedir/node" "$basedir/../nopt/bin/nopt.js" "$@"
|
|
||||||
ret=$?
|
|
||||||
else
|
|
||||||
node "$basedir/../nopt/bin/nopt.js" "$@"
|
|
||||||
ret=$?
|
|
||||||
fi
|
|
||||||
exit $ret
|
|
17
node_modules/.bin/nopt.cmd
generated
vendored
17
node_modules/.bin/nopt.cmd
generated
vendored
@ -1,17 +0,0 @@
|
|||||||
@ECHO off
|
|
||||||
SETLOCAL
|
|
||||||
CALL :find_dp0
|
|
||||||
|
|
||||||
IF EXIST "%dp0%\node.exe" (
|
|
||||||
SET "_prog=%dp0%\node.exe"
|
|
||||||
) ELSE (
|
|
||||||
SET "_prog=node"
|
|
||||||
SET PATHEXT=%PATHEXT:;.JS;=;%
|
|
||||||
)
|
|
||||||
|
|
||||||
"%_prog%" "%dp0%\..\nopt\bin\nopt.js" %*
|
|
||||||
ENDLOCAL
|
|
||||||
EXIT /b %errorlevel%
|
|
||||||
:find_dp0
|
|
||||||
SET dp0=%~dp0
|
|
||||||
EXIT /b
|
|
18
node_modules/.bin/nopt.ps1
generated
vendored
18
node_modules/.bin/nopt.ps1
generated
vendored
@ -1,18 +0,0 @@
|
|||||||
#!/usr/bin/env pwsh
|
|
||||||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
|
||||||
|
|
||||||
$exe=""
|
|
||||||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
|
||||||
# Fix case when both the Windows and Linux builds of Node
|
|
||||||
# are installed in the same directory
|
|
||||||
$exe=".exe"
|
|
||||||
}
|
|
||||||
$ret=0
|
|
||||||
if (Test-Path "$basedir/node$exe") {
|
|
||||||
& "$basedir/node$exe" "$basedir/../nopt/bin/nopt.js" $args
|
|
||||||
$ret=$LASTEXITCODE
|
|
||||||
} else {
|
|
||||||
& "node$exe" "$basedir/../nopt/bin/nopt.js" $args
|
|
||||||
$ret=$LASTEXITCODE
|
|
||||||
}
|
|
||||||
exit $ret
|
|
15
node_modules/.bin/pbjs
generated
vendored
15
node_modules/.bin/pbjs
generated
vendored
@ -1,15 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
||||||
|
|
||||||
case `uname` in
|
|
||||||
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
if [ -x "$basedir/node" ]; then
|
|
||||||
"$basedir/node" "$basedir/../protobufjs/bin/pbjs" "$@"
|
|
||||||
ret=$?
|
|
||||||
else
|
|
||||||
node "$basedir/../protobufjs/bin/pbjs" "$@"
|
|
||||||
ret=$?
|
|
||||||
fi
|
|
||||||
exit $ret
|
|
7
node_modules/.bin/pbjs.cmd
generated
vendored
7
node_modules/.bin/pbjs.cmd
generated
vendored
@ -1,7 +0,0 @@
|
|||||||
@IF EXIST "%~dp0\node.exe" (
|
|
||||||
"%~dp0\node.exe" "%~dp0\..\protobufjs\bin\pbjs" %*
|
|
||||||
) ELSE (
|
|
||||||
@SETLOCAL
|
|
||||||
@SET PATHEXT=%PATHEXT:;.JS;=;%
|
|
||||||
node "%~dp0\..\protobufjs\bin\pbjs" %*
|
|
||||||
)
|
|
15
node_modules/.bin/pbts
generated
vendored
15
node_modules/.bin/pbts
generated
vendored
@ -1,15 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
||||||
|
|
||||||
case `uname` in
|
|
||||||
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
if [ -x "$basedir/node" ]; then
|
|
||||||
"$basedir/node" "$basedir/../protobufjs/bin/pbts" "$@"
|
|
||||||
ret=$?
|
|
||||||
else
|
|
||||||
node "$basedir/../protobufjs/bin/pbts" "$@"
|
|
||||||
ret=$?
|
|
||||||
fi
|
|
||||||
exit $ret
|
|
7
node_modules/.bin/pbts.cmd
generated
vendored
7
node_modules/.bin/pbts.cmd
generated
vendored
@ -1,7 +0,0 @@
|
|||||||
@IF EXIST "%~dp0\node.exe" (
|
|
||||||
"%~dp0\node.exe" "%~dp0\..\protobufjs\bin\pbts" %*
|
|
||||||
) ELSE (
|
|
||||||
@SETLOCAL
|
|
||||||
@SET PATHEXT=%PATHEXT:;.JS;=;%
|
|
||||||
node "%~dp0\..\protobufjs\bin\pbts" %*
|
|
||||||
)
|
|
15
node_modules/.bin/rc
generated
vendored
15
node_modules/.bin/rc
generated
vendored
@ -1,15 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
||||||
|
|
||||||
case `uname` in
|
|
||||||
*CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
if [ -x "$basedir/node" ]; then
|
|
||||||
"$basedir/node" "$basedir/../rc/cli.js" "$@"
|
|
||||||
ret=$?
|
|
||||||
else
|
|
||||||
node "$basedir/../rc/cli.js" "$@"
|
|
||||||
ret=$?
|
|
||||||
fi
|
|
||||||
exit $ret
|
|
17
node_modules/.bin/rc.cmd
generated
vendored
17
node_modules/.bin/rc.cmd
generated
vendored
@ -1,17 +0,0 @@
|
|||||||
@ECHO off
|
|
||||||
SETLOCAL
|
|
||||||
CALL :find_dp0
|
|
||||||
|
|
||||||
IF EXIST "%dp0%\node.exe" (
|
|
||||||
SET "_prog=%dp0%\node.exe"
|
|
||||||
) ELSE (
|
|
||||||
SET "_prog=node"
|
|
||||||
SET PATHEXT=%PATHEXT:;.JS;=;%
|
|
||||||
)
|
|
||||||
|
|
||||||
"%_prog%" "%dp0%\..\rc\cli.js" %*
|
|
||||||
ENDLOCAL
|
|
||||||
EXIT /b %errorlevel%
|
|
||||||
:find_dp0
|
|
||||||
SET dp0=%~dp0
|
|
||||||
EXIT /b
|
|
18
node_modules/.bin/rc.ps1
generated
vendored
18
node_modules/.bin/rc.ps1
generated
vendored
@ -1,18 +0,0 @@
|
|||||||
#!/usr/bin/env pwsh
|
|
||||||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
|
||||||
|
|
||||||
$exe=""
|
|
||||||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
|
||||||
# Fix case when both the Windows and Linux builds of Node
|
|
||||||
# are installed in the same directory
|
|
||||||
$exe=".exe"
|
|
||||||
}
|
|
||||||
$ret=0
|
|
||||||
if (Test-Path "$basedir/node$exe") {
|
|
||||||
& "$basedir/node$exe" "$basedir/../rc/cli.js" $args
|
|
||||||
$ret=$LASTEXITCODE
|
|
||||||
} else {
|
|
||||||
& "node$exe" "$basedir/../rc/cli.js" $args
|
|
||||||
$ret=$LASTEXITCODE
|
|
||||||
}
|
|
||||||
exit $ret
|
|
15
node_modules/.bin/rimraf
generated
vendored
15
node_modules/.bin/rimraf
generated
vendored
@ -1,15 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
||||||
|
|
||||||
case `uname` in
|
|
||||||
*CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
if [ -x "$basedir/node" ]; then
|
|
||||||
"$basedir/node" "$basedir/../rimraf/bin.js" "$@"
|
|
||||||
ret=$?
|
|
||||||
else
|
|
||||||
node "$basedir/../rimraf/bin.js" "$@"
|
|
||||||
ret=$?
|
|
||||||
fi
|
|
||||||
exit $ret
|
|
17
node_modules/.bin/rimraf.cmd
generated
vendored
17
node_modules/.bin/rimraf.cmd
generated
vendored
@ -1,17 +0,0 @@
|
|||||||
@ECHO off
|
|
||||||
SETLOCAL
|
|
||||||
CALL :find_dp0
|
|
||||||
|
|
||||||
IF EXIST "%dp0%\node.exe" (
|
|
||||||
SET "_prog=%dp0%\node.exe"
|
|
||||||
) ELSE (
|
|
||||||
SET "_prog=node"
|
|
||||||
SET PATHEXT=%PATHEXT:;.JS;=;%
|
|
||||||
)
|
|
||||||
|
|
||||||
"%_prog%" "%dp0%\..\rimraf\bin.js" %*
|
|
||||||
ENDLOCAL
|
|
||||||
EXIT /b %errorlevel%
|
|
||||||
:find_dp0
|
|
||||||
SET dp0=%~dp0
|
|
||||||
EXIT /b
|
|
18
node_modules/.bin/rimraf.ps1
generated
vendored
18
node_modules/.bin/rimraf.ps1
generated
vendored
@ -1,18 +0,0 @@
|
|||||||
#!/usr/bin/env pwsh
|
|
||||||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
|
||||||
|
|
||||||
$exe=""
|
|
||||||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
|
||||||
# Fix case when both the Windows and Linux builds of Node
|
|
||||||
# are installed in the same directory
|
|
||||||
$exe=".exe"
|
|
||||||
}
|
|
||||||
$ret=0
|
|
||||||
if (Test-Path "$basedir/node$exe") {
|
|
||||||
& "$basedir/node$exe" "$basedir/../rimraf/bin.js" $args
|
|
||||||
$ret=$LASTEXITCODE
|
|
||||||
} else {
|
|
||||||
& "node$exe" "$basedir/../rimraf/bin.js" $args
|
|
||||||
$ret=$LASTEXITCODE
|
|
||||||
}
|
|
||||||
exit $ret
|
|
15
node_modules/.bin/semver
generated
vendored
15
node_modules/.bin/semver
generated
vendored
@ -1,15 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
||||||
|
|
||||||
case `uname` in
|
|
||||||
*CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
if [ -x "$basedir/node" ]; then
|
|
||||||
"$basedir/node" "$basedir/../semver/bin/semver.js" "$@"
|
|
||||||
ret=$?
|
|
||||||
else
|
|
||||||
node "$basedir/../semver/bin/semver.js" "$@"
|
|
||||||
ret=$?
|
|
||||||
fi
|
|
||||||
exit $ret
|
|
17
node_modules/.bin/semver.cmd
generated
vendored
17
node_modules/.bin/semver.cmd
generated
vendored
@ -1,17 +0,0 @@
|
|||||||
@ECHO off
|
|
||||||
SETLOCAL
|
|
||||||
CALL :find_dp0
|
|
||||||
|
|
||||||
IF EXIST "%dp0%\node.exe" (
|
|
||||||
SET "_prog=%dp0%\node.exe"
|
|
||||||
) ELSE (
|
|
||||||
SET "_prog=node"
|
|
||||||
SET PATHEXT=%PATHEXT:;.JS;=;%
|
|
||||||
)
|
|
||||||
|
|
||||||
"%_prog%" "%dp0%\..\semver\bin\semver.js" %*
|
|
||||||
ENDLOCAL
|
|
||||||
EXIT /b %errorlevel%
|
|
||||||
:find_dp0
|
|
||||||
SET dp0=%~dp0
|
|
||||||
EXIT /b
|
|
18
node_modules/.bin/semver.ps1
generated
vendored
18
node_modules/.bin/semver.ps1
generated
vendored
@ -1,18 +0,0 @@
|
|||||||
#!/usr/bin/env pwsh
|
|
||||||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
|
||||||
|
|
||||||
$exe=""
|
|
||||||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
|
||||||
# Fix case when both the Windows and Linux builds of Node
|
|
||||||
# are installed in the same directory
|
|
||||||
$exe=".exe"
|
|
||||||
}
|
|
||||||
$ret=0
|
|
||||||
if (Test-Path "$basedir/node$exe") {
|
|
||||||
& "$basedir/node$exe" "$basedir/../semver/bin/semver.js" $args
|
|
||||||
$ret=$LASTEXITCODE
|
|
||||||
} else {
|
|
||||||
& "node$exe" "$basedir/../semver/bin/semver.js" $args
|
|
||||||
$ret=$LASTEXITCODE
|
|
||||||
}
|
|
||||||
exit $ret
|
|
15
node_modules/.bin/sshpk-conv
generated
vendored
15
node_modules/.bin/sshpk-conv
generated
vendored
@ -1,15 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
||||||
|
|
||||||
case `uname` in
|
|
||||||
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
if [ -x "$basedir/node" ]; then
|
|
||||||
"$basedir/node" "$basedir/../sshpk/bin/sshpk-conv" "$@"
|
|
||||||
ret=$?
|
|
||||||
else
|
|
||||||
node "$basedir/../sshpk/bin/sshpk-conv" "$@"
|
|
||||||
ret=$?
|
|
||||||
fi
|
|
||||||
exit $ret
|
|
7
node_modules/.bin/sshpk-conv.cmd
generated
vendored
7
node_modules/.bin/sshpk-conv.cmd
generated
vendored
@ -1,7 +0,0 @@
|
|||||||
@IF EXIST "%~dp0\node.exe" (
|
|
||||||
"%~dp0\node.exe" "%~dp0\..\sshpk\bin\sshpk-conv" %*
|
|
||||||
) ELSE (
|
|
||||||
@SETLOCAL
|
|
||||||
@SET PATHEXT=%PATHEXT:;.JS;=;%
|
|
||||||
node "%~dp0\..\sshpk\bin\sshpk-conv" %*
|
|
||||||
)
|
|
15
node_modules/.bin/sshpk-sign
generated
vendored
15
node_modules/.bin/sshpk-sign
generated
vendored
@ -1,15 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
||||||
|
|
||||||
case `uname` in
|
|
||||||
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
if [ -x "$basedir/node" ]; then
|
|
||||||
"$basedir/node" "$basedir/../sshpk/bin/sshpk-sign" "$@"
|
|
||||||
ret=$?
|
|
||||||
else
|
|
||||||
node "$basedir/../sshpk/bin/sshpk-sign" "$@"
|
|
||||||
ret=$?
|
|
||||||
fi
|
|
||||||
exit $ret
|
|
7
node_modules/.bin/sshpk-sign.cmd
generated
vendored
7
node_modules/.bin/sshpk-sign.cmd
generated
vendored
@ -1,7 +0,0 @@
|
|||||||
@IF EXIST "%~dp0\node.exe" (
|
|
||||||
"%~dp0\node.exe" "%~dp0\..\sshpk\bin\sshpk-sign" %*
|
|
||||||
) ELSE (
|
|
||||||
@SETLOCAL
|
|
||||||
@SET PATHEXT=%PATHEXT:;.JS;=;%
|
|
||||||
node "%~dp0\..\sshpk\bin\sshpk-sign" %*
|
|
||||||
)
|
|
15
node_modules/.bin/sshpk-verify
generated
vendored
15
node_modules/.bin/sshpk-verify
generated
vendored
@ -1,15 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
||||||
|
|
||||||
case `uname` in
|
|
||||||
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
if [ -x "$basedir/node" ]; then
|
|
||||||
"$basedir/node" "$basedir/../sshpk/bin/sshpk-verify" "$@"
|
|
||||||
ret=$?
|
|
||||||
else
|
|
||||||
node "$basedir/../sshpk/bin/sshpk-verify" "$@"
|
|
||||||
ret=$?
|
|
||||||
fi
|
|
||||||
exit $ret
|
|
7
node_modules/.bin/sshpk-verify.cmd
generated
vendored
7
node_modules/.bin/sshpk-verify.cmd
generated
vendored
@ -1,7 +0,0 @@
|
|||||||
@IF EXIST "%~dp0\node.exe" (
|
|
||||||
"%~dp0\node.exe" "%~dp0\..\sshpk\bin\sshpk-verify" %*
|
|
||||||
) ELSE (
|
|
||||||
@SETLOCAL
|
|
||||||
@SET PATHEXT=%PATHEXT:;.JS;=;%
|
|
||||||
node "%~dp0\..\sshpk\bin\sshpk-verify" %*
|
|
||||||
)
|
|
15
node_modules/.bin/uuid
generated
vendored
15
node_modules/.bin/uuid
generated
vendored
@ -1,15 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
||||||
|
|
||||||
case `uname` in
|
|
||||||
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
if [ -x "$basedir/node" ]; then
|
|
||||||
"$basedir/node" "$basedir/../uuid/bin/uuid" "$@"
|
|
||||||
ret=$?
|
|
||||||
else
|
|
||||||
node "$basedir/../uuid/bin/uuid" "$@"
|
|
||||||
ret=$?
|
|
||||||
fi
|
|
||||||
exit $ret
|
|
7
node_modules/.bin/uuid.cmd
generated
vendored
7
node_modules/.bin/uuid.cmd
generated
vendored
@ -1,7 +0,0 @@
|
|||||||
@IF EXIST "%~dp0\node.exe" (
|
|
||||||
"%~dp0\node.exe" "%~dp0\..\uuid\bin\uuid" %*
|
|
||||||
) ELSE (
|
|
||||||
@SETLOCAL
|
|
||||||
@SET PATHEXT=%PATHEXT:;.JS;=;%
|
|
||||||
node "%~dp0\..\uuid\bin\uuid" %*
|
|
||||||
)
|
|
15
node_modules/.bin/window-size
generated
vendored
15
node_modules/.bin/window-size
generated
vendored
@ -1,15 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
||||||
|
|
||||||
case `uname` in
|
|
||||||
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
if [ -x "$basedir/node" ]; then
|
|
||||||
"$basedir/node" "$basedir/../window-size/cli.js" "$@"
|
|
||||||
ret=$?
|
|
||||||
else
|
|
||||||
node "$basedir/../window-size/cli.js" "$@"
|
|
||||||
ret=$?
|
|
||||||
fi
|
|
||||||
exit $ret
|
|
7
node_modules/.bin/window-size.cmd
generated
vendored
7
node_modules/.bin/window-size.cmd
generated
vendored
@ -1,7 +0,0 @@
|
|||||||
@IF EXIST "%~dp0\node.exe" (
|
|
||||||
"%~dp0\node.exe" "%~dp0\..\window-size\cli.js" %*
|
|
||||||
) ELSE (
|
|
||||||
@SETLOCAL
|
|
||||||
@SET PATHEXT=%PATHEXT:;.JS;=;%
|
|
||||||
node "%~dp0\..\window-size\cli.js" %*
|
|
||||||
)
|
|
190
node_modules/@discordjs/collection/LICENSE
generated
vendored
190
node_modules/@discordjs/collection/LICENSE
generated
vendored
@ -1,190 +0,0 @@
|
|||||||
Apache License
|
|
||||||
Version 2.0, January 2004
|
|
||||||
http://www.apache.org/licenses/
|
|
||||||
|
|
||||||
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
||||||
|
|
||||||
1. Definitions.
|
|
||||||
|
|
||||||
"License" shall mean the terms and conditions for use, reproduction,
|
|
||||||
and distribution as defined by Sections 1 through 9 of this document.
|
|
||||||
|
|
||||||
"Licensor" shall mean the copyright owner or entity authorized by
|
|
||||||
the copyright owner that is granting the License.
|
|
||||||
|
|
||||||
"Legal Entity" shall mean the union of the acting entity and all
|
|
||||||
other entities that control, are controlled by, or are under common
|
|
||||||
control with that entity. For the purposes of this definition,
|
|
||||||
"control" means (i) the power, direct or indirect, to cause the
|
|
||||||
direction or management of such entity, whether by contract or
|
|
||||||
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
||||||
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
||||||
|
|
||||||
"You" (or "Your") shall mean an individual or Legal Entity
|
|
||||||
exercising permissions granted by this License.
|
|
||||||
|
|
||||||
"Source" form shall mean the preferred form for making modifications,
|
|
||||||
including but not limited to software source code, documentation
|
|
||||||
source, and configuration files.
|
|
||||||
|
|
||||||
"Object" form shall mean any form resulting from mechanical
|
|
||||||
transformation or translation of a Source form, including but
|
|
||||||
not limited to compiled object code, generated documentation,
|
|
||||||
and conversions to other media types.
|
|
||||||
|
|
||||||
"Work" shall mean the work of authorship, whether in Source or
|
|
||||||
Object form, made available under the License, as indicated by a
|
|
||||||
copyright notice that is included in or attached to the work
|
|
||||||
(an example is provided in the Appendix below).
|
|
||||||
|
|
||||||
"Derivative Works" shall mean any work, whether in Source or Object
|
|
||||||
form, that is based on (or derived from) the Work and for which the
|
|
||||||
editorial revisions, annotations, elaborations, or other modifications
|
|
||||||
represent, as a whole, an original work of authorship. For the purposes
|
|
||||||
of this License, Derivative Works shall not include works that remain
|
|
||||||
separable from, or merely link (or bind by name) to the interfaces of,
|
|
||||||
the Work and Derivative Works thereof.
|
|
||||||
|
|
||||||
"Contribution" shall mean any work of authorship, including
|
|
||||||
the original version of the Work and any modifications or additions
|
|
||||||
to that Work or Derivative Works thereof, that is intentionally
|
|
||||||
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
||||||
or by an individual or Legal Entity authorized to submit on behalf of
|
|
||||||
the copyright owner. For the purposes of this definition, "submitted"
|
|
||||||
means any form of electronic, verbal, or written communication sent
|
|
||||||
to the Licensor or its representatives, including but not limited to
|
|
||||||
communication on electronic mailing lists, source code control systems,
|
|
||||||
and issue tracking systems that are managed by, or on behalf of, the
|
|
||||||
Licensor for the purpose of discussing and improving the Work, but
|
|
||||||
excluding communication that is conspicuously marked or otherwise
|
|
||||||
designated in writing by the copyright owner as "Not a Contribution."
|
|
||||||
|
|
||||||
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
||||||
on behalf of whom a Contribution has been received by Licensor and
|
|
||||||
subsequently incorporated within the Work.
|
|
||||||
|
|
||||||
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
||||||
this License, each Contributor hereby grants to You a perpetual,
|
|
||||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
||||||
copyright license to reproduce, prepare Derivative Works of,
|
|
||||||
publicly display, publicly perform, sublicense, and distribute the
|
|
||||||
Work and such Derivative Works in Source or Object form.
|
|
||||||
|
|
||||||
3. Grant of Patent License. Subject to the terms and conditions of
|
|
||||||
this License, each Contributor hereby grants to You a perpetual,
|
|
||||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
||||||
(except as stated in this section) patent license to make, have made,
|
|
||||||
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
||||||
where such license applies only to those patent claims licensable
|
|
||||||
by such Contributor that are necessarily infringed by their
|
|
||||||
Contribution(s) alone or by combination of their Contribution(s)
|
|
||||||
with the Work to which such Contribution(s) was submitted. If You
|
|
||||||
institute patent litigation against any entity (including a
|
|
||||||
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
||||||
or a Contribution incorporated within the Work constitutes direct
|
|
||||||
or contributory patent infringement, then any patent licenses
|
|
||||||
granted to You under this License for that Work shall terminate
|
|
||||||
as of the date such litigation is filed.
|
|
||||||
|
|
||||||
4. Redistribution. You may reproduce and distribute copies of the
|
|
||||||
Work or Derivative Works thereof in any medium, with or without
|
|
||||||
modifications, and in Source or Object form, provided that You
|
|
||||||
meet the following conditions:
|
|
||||||
|
|
||||||
(a) You must give any other recipients of the Work or
|
|
||||||
Derivative Works a copy of this License; and
|
|
||||||
|
|
||||||
(b) You must cause any modified files to carry prominent notices
|
|
||||||
stating that You changed the files; and
|
|
||||||
|
|
||||||
(c) You must retain, in the Source form of any Derivative Works
|
|
||||||
that You distribute, all copyright, patent, trademark, and
|
|
||||||
attribution notices from the Source form of the Work,
|
|
||||||
excluding those notices that do not pertain to any part of
|
|
||||||
the Derivative Works; and
|
|
||||||
|
|
||||||
(d) If the Work includes a "NOTICE" text file as part of its
|
|
||||||
distribution, then any Derivative Works that You distribute must
|
|
||||||
include a readable copy of the attribution notices contained
|
|
||||||
within such NOTICE file, excluding those notices that do not
|
|
||||||
pertain to any part of the Derivative Works, in at least one
|
|
||||||
of the following places: within a NOTICE text file distributed
|
|
||||||
as part of the Derivative Works; within the Source form or
|
|
||||||
documentation, if provided along with the Derivative Works; or,
|
|
||||||
within a display generated by the Derivative Works, if and
|
|
||||||
wherever such third-party notices normally appear. The contents
|
|
||||||
of the NOTICE file are for informational purposes only and
|
|
||||||
do not modify the License. You may add Your own attribution
|
|
||||||
notices within Derivative Works that You distribute, alongside
|
|
||||||
or as an addendum to the NOTICE text from the Work, provided
|
|
||||||
that such additional attribution notices cannot be construed
|
|
||||||
as modifying the License.
|
|
||||||
|
|
||||||
You may add Your own copyright statement to Your modifications and
|
|
||||||
may provide additional or different license terms and conditions
|
|
||||||
for use, reproduction, or distribution of Your modifications, or
|
|
||||||
for any such Derivative Works as a whole, provided Your use,
|
|
||||||
reproduction, and distribution of the Work otherwise complies with
|
|
||||||
the conditions stated in this License.
|
|
||||||
|
|
||||||
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
||||||
any Contribution intentionally submitted for inclusion in the Work
|
|
||||||
by You to the Licensor shall be under the terms and conditions of
|
|
||||||
this License, without any additional terms or conditions.
|
|
||||||
Notwithstanding the above, nothing herein shall supersede or modify
|
|
||||||
the terms of any separate license agreement you may have executed
|
|
||||||
with Licensor regarding such Contributions.
|
|
||||||
|
|
||||||
6. Trademarks. This License does not grant permission to use the trade
|
|
||||||
names, trademarks, service marks, or product names of the Licensor,
|
|
||||||
except as required for reasonable and customary use in describing the
|
|
||||||
origin of the Work and reproducing the content of the NOTICE file.
|
|
||||||
|
|
||||||
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
||||||
agreed to in writing, Licensor provides the Work (and each
|
|
||||||
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
||||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
||||||
implied, including, without limitation, any warranties or conditions
|
|
||||||
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
||||||
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
||||||
appropriateness of using or redistributing the Work and assume any
|
|
||||||
risks associated with Your exercise of permissions under this License.
|
|
||||||
|
|
||||||
8. Limitation of Liability. In no event and under no legal theory,
|
|
||||||
whether in tort (including negligence), contract, or otherwise,
|
|
||||||
unless required by applicable law (such as deliberate and grossly
|
|
||||||
negligent acts) or agreed to in writing, shall any Contributor be
|
|
||||||
liable to You for damages, including any direct, indirect, special,
|
|
||||||
incidental, or consequential damages of any character arising as a
|
|
||||||
result of this License or out of the use or inability to use the
|
|
||||||
Work (including but not limited to damages for loss of goodwill,
|
|
||||||
work stoppage, computer failure or malfunction, or any and all
|
|
||||||
other commercial damages or losses), even if such Contributor
|
|
||||||
has been advised of the possibility of such damages.
|
|
||||||
|
|
||||||
9. Accepting Warranty or Additional Liability. While redistributing
|
|
||||||
the Work or Derivative Works thereof, You may choose to offer,
|
|
||||||
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
||||||
or other liability obligations and/or rights consistent with this
|
|
||||||
License. However, in accepting such obligations, You may act only
|
|
||||||
on Your own behalf and on Your sole responsibility, not on behalf
|
|
||||||
of any other Contributor, and only if You agree to indemnify,
|
|
||||||
defend, and hold each Contributor harmless for any liability
|
|
||||||
incurred by, or claims asserted against, such Contributor by reason
|
|
||||||
of your accepting any such warranty or additional liability.
|
|
||||||
|
|
||||||
END OF TERMS AND CONDITIONS
|
|
||||||
|
|
||||||
Copyright 2015 - 2019 Amish Shah
|
|
||||||
|
|
||||||
Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
you may not use this file except in compliance with the License.
|
|
||||||
You may obtain a copy of the License at
|
|
||||||
|
|
||||||
http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
|
|
||||||
Unless required by applicable law or agreed to in writing, software
|
|
||||||
distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
See the License for the specific language governing permissions and
|
|
||||||
limitations under the License.
|
|
3
node_modules/@discordjs/collection/README.md
generated
vendored
3
node_modules/@discordjs/collection/README.md
generated
vendored
@ -1,3 +0,0 @@
|
|||||||
# Collection
|
|
||||||
|
|
||||||
Utility data structure used in Discord.js.
|
|
317
node_modules/@discordjs/collection/dist/index.d.ts
generated
vendored
317
node_modules/@discordjs/collection/dist/index.d.ts
generated
vendored
@ -1,317 +0,0 @@
|
|||||||
export interface CollectionConstructor {
|
|
||||||
new (): Collection<unknown, unknown>;
|
|
||||||
new <K, V>(entries?: ReadonlyArray<readonly [K, V]> | null): Collection<K, V>;
|
|
||||||
new <K, V>(iterable: Iterable<readonly [K, V]>): Collection<K, V>;
|
|
||||||
readonly prototype: Collection<unknown, unknown>;
|
|
||||||
readonly [Symbol.species]: CollectionConstructor;
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* A Map with additional utility methods. This is used throughout discord.js rather than Arrays for anything that has
|
|
||||||
* an ID, for significantly improved performance and ease-of-use.
|
|
||||||
* @extends {Map}
|
|
||||||
* @property {number} size - The amount of elements in this collection.
|
|
||||||
*/
|
|
||||||
declare class Collection<K, V> extends Map<K, V> {
|
|
||||||
private _array;
|
|
||||||
private _keyArray;
|
|
||||||
static readonly default: typeof Collection;
|
|
||||||
['constructor']: typeof Collection;
|
|
||||||
constructor(entries?: ReadonlyArray<readonly [K, V]> | null);
|
|
||||||
/**
|
|
||||||
* Identical to [Map.get()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map/get).
|
|
||||||
* Gets an element with the specified key, and returns its value, or `undefined` if the element does not exist.
|
|
||||||
* @param {*} key - The key to get from this collection
|
|
||||||
* @returns {* | undefined}
|
|
||||||
*/
|
|
||||||
get(key: K): V | undefined;
|
|
||||||
/**
|
|
||||||
* Identical to [Map.set()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map/set).
|
|
||||||
* Sets a new element in the collection with the specified key and value.
|
|
||||||
* @param {*} key - The key of the element to add
|
|
||||||
* @param {*} value - The value of the element to add
|
|
||||||
* @returns {Collection}
|
|
||||||
*/
|
|
||||||
set(key: K, value: V): this;
|
|
||||||
/**
|
|
||||||
* Identical to [Map.has()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map/has).
|
|
||||||
* Checks if an element exists in the collection.
|
|
||||||
* @param {*} key - The key of the element to check for
|
|
||||||
* @returns {boolean} `true` if the element exists, `false` if it does not exist.
|
|
||||||
*/
|
|
||||||
has(key: K): boolean;
|
|
||||||
/**
|
|
||||||
* Identical to [Map.delete()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map/delete).
|
|
||||||
* Deletes an element from the collection.
|
|
||||||
* @param {*} key - The key to delete from the collection
|
|
||||||
* @returns {boolean} `true` if the element was removed, `false` if the element does not exist.
|
|
||||||
*/
|
|
||||||
delete(key: K): boolean;
|
|
||||||
/**
|
|
||||||
* Identical to [Map.clear()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map/clear).
|
|
||||||
* Removes all elements from the collection.
|
|
||||||
* @returns {undefined}
|
|
||||||
*/
|
|
||||||
clear(): void;
|
|
||||||
/**
|
|
||||||
* Creates an ordered array of the values of this collection, and caches it internally. The array will only be
|
|
||||||
* reconstructed if an item is added to or removed from the collection, or if you change the length of the array
|
|
||||||
* itself. If you don't want this caching behavior, use `[...collection.values()]` or
|
|
||||||
* `Array.from(collection.values())` instead.
|
|
||||||
* @returns {Array}
|
|
||||||
*/
|
|
||||||
array(): V[];
|
|
||||||
/**
|
|
||||||
* Creates an ordered array of the keys of this collection, and caches it internally. The array will only be
|
|
||||||
* reconstructed if an item is added to or removed from the collection, or if you change the length of the array
|
|
||||||
* itself. If you don't want this caching behavior, use `[...collection.keys()]` or
|
|
||||||
* `Array.from(collection.keys())` instead.
|
|
||||||
* @returns {Array}
|
|
||||||
*/
|
|
||||||
keyArray(): K[];
|
|
||||||
/**
|
|
||||||
* Obtains the first value(s) in this collection.
|
|
||||||
* @param {number} [amount] Amount of values to obtain from the beginning
|
|
||||||
* @returns {*|Array<*>} A single value if no amount is provided or an array of values, starting from the end if
|
|
||||||
* amount is negative
|
|
||||||
*/
|
|
||||||
first(): V | undefined;
|
|
||||||
first(amount: number): V[];
|
|
||||||
/**
|
|
||||||
* Obtains the first key(s) in this collection.
|
|
||||||
* @param {number} [amount] Amount of keys to obtain from the beginning
|
|
||||||
* @returns {*|Array<*>} A single key if no amount is provided or an array of keys, starting from the end if
|
|
||||||
* amount is negative
|
|
||||||
*/
|
|
||||||
firstKey(): K | undefined;
|
|
||||||
firstKey(amount: number): K[];
|
|
||||||
/**
|
|
||||||
* Obtains the last value(s) in this collection. This relies on {@link Collection#array}, and thus the caching
|
|
||||||
* mechanism applies here as well.
|
|
||||||
* @param {number} [amount] Amount of values to obtain from the end
|
|
||||||
* @returns {*|Array<*>} A single value if no amount is provided or an array of values, starting from the start if
|
|
||||||
* amount is negative
|
|
||||||
*/
|
|
||||||
last(): V | undefined;
|
|
||||||
last(amount: number): V[];
|
|
||||||
/**
|
|
||||||
* Obtains the last key(s) in this collection. This relies on {@link Collection#keyArray}, and thus the caching
|
|
||||||
* mechanism applies here as well.
|
|
||||||
* @param {number} [amount] Amount of keys to obtain from the end
|
|
||||||
* @returns {*|Array<*>} A single key if no amount is provided or an array of keys, starting from the start if
|
|
||||||
* amount is negative
|
|
||||||
*/
|
|
||||||
lastKey(): K | undefined;
|
|
||||||
lastKey(amount: number): K[];
|
|
||||||
/**
|
|
||||||
* Obtains unique random value(s) from this collection. This relies on {@link Collection#array}, and thus the caching
|
|
||||||
* mechanism applies here as well.
|
|
||||||
* @param {number} [amount] Amount of values to obtain randomly
|
|
||||||
* @returns {*|Array<*>} A single value if no amount is provided or an array of values
|
|
||||||
*/
|
|
||||||
random(): V;
|
|
||||||
random(amount: number): V[];
|
|
||||||
/**
|
|
||||||
* Obtains unique random key(s) from this collection. This relies on {@link Collection#keyArray}, and thus the caching
|
|
||||||
* mechanism applies here as well.
|
|
||||||
* @param {number} [amount] Amount of keys to obtain randomly
|
|
||||||
* @returns {*|Array<*>} A single key if no amount is provided or an array
|
|
||||||
*/
|
|
||||||
randomKey(): K;
|
|
||||||
randomKey(amount: number): K[];
|
|
||||||
/**
|
|
||||||
* Searches for a single item where the given function returns a truthy value. This behaves like
|
|
||||||
* [Array.find()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/find).
|
|
||||||
* <warn>All collections used in Discord.js are mapped using their `id` property, and if you want to find by id you
|
|
||||||
* should use the `get` method. See
|
|
||||||
* [MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map/get) for details.</warn>
|
|
||||||
* @param {Function} fn The function to test with (should return boolean)
|
|
||||||
* @param {*} [thisArg] Value to use as `this` when executing function
|
|
||||||
* @returns {*}
|
|
||||||
* @example collection.find(user => user.username === 'Bob');
|
|
||||||
*/
|
|
||||||
find(fn: (value: V, key: K, collection: this) => boolean): V | undefined;
|
|
||||||
find<T>(fn: (this: T, value: V, key: K, collection: this) => boolean, thisArg: T): V | undefined;
|
|
||||||
/**
|
|
||||||
* Searches for the key of a single item where the given function returns a truthy value. This behaves like
|
|
||||||
* [Array.findIndex()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/findIndex),
|
|
||||||
* but returns the key rather than the positional index.
|
|
||||||
* @param {Function} fn The function to test with (should return boolean)
|
|
||||||
* @param {*} [thisArg] Value to use as `this` when executing function
|
|
||||||
* @returns {*}
|
|
||||||
* @example collection.findKey(user => user.username === 'Bob');
|
|
||||||
*/
|
|
||||||
findKey(fn: (value: V, key: K, collection: this) => boolean): K | undefined;
|
|
||||||
findKey<T>(fn: (this: T, value: V, key: K, collection: this) => boolean, thisArg: T): K | undefined;
|
|
||||||
/**
|
|
||||||
* Removes items that satisfy the provided filter function.
|
|
||||||
* @param {Function} fn Function used to test (should return a boolean)
|
|
||||||
* @param {*} [thisArg] Value to use as `this` when executing function
|
|
||||||
* @returns {number} The number of removed entries
|
|
||||||
*/
|
|
||||||
sweep(fn: (value: V, key: K, collection: this) => boolean): number;
|
|
||||||
sweep<T>(fn: (this: T, value: V, key: K, collection: this) => boolean, thisArg: T): number;
|
|
||||||
/**
|
|
||||||
* Identical to
|
|
||||||
* [Array.filter()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/filter),
|
|
||||||
* but returns a Collection instead of an Array.
|
|
||||||
* @param {Function} fn The function to test with (should return boolean)
|
|
||||||
* @param {*} [thisArg] Value to use as `this` when executing function
|
|
||||||
* @returns {Collection}
|
|
||||||
* @example collection.filter(user => user.username === 'Bob');
|
|
||||||
*/
|
|
||||||
filter(fn: (value: V, key: K, collection: this) => boolean): this;
|
|
||||||
filter<T>(fn: (this: T, value: V, key: K, collection: this) => boolean, thisArg: T): this;
|
|
||||||
/**
|
|
||||||
* Partitions the collection into two collections where the first collection
|
|
||||||
* contains the items that passed and the second contains the items that failed.
|
|
||||||
* @param {Function} fn Function used to test (should return a boolean)
|
|
||||||
* @param {*} [thisArg] Value to use as `this` when executing function
|
|
||||||
* @returns {Collection[]}
|
|
||||||
* @example const [big, small] = collection.partition(guild => guild.memberCount > 250);
|
|
||||||
*/
|
|
||||||
partition(fn: (value: V, key: K, collection: this) => boolean): [this, this];
|
|
||||||
partition<T>(fn: (this: T, value: V, key: K, collection: this) => boolean, thisArg: T): [this, this];
|
|
||||||
/**
|
|
||||||
* Maps each item into a Collection, then joins the results into a single Collection. Identical in behavior to
|
|
||||||
* [Array.flatMap()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/flatMap).
|
|
||||||
* @param {Function} fn Function that produces a new Collection
|
|
||||||
* @param {*} [thisArg] Value to use as `this` when executing function
|
|
||||||
* @returns {Collection}
|
|
||||||
* @example collection.flatMap(guild => guild.members);
|
|
||||||
*/
|
|
||||||
flatMap<T>(fn: (value: V, key: K, collection: this) => Collection<K, T>): Collection<K, T>;
|
|
||||||
flatMap<T, This>(fn: (this: This, value: V, key: K, collection: this) => Collection<K, T>, thisArg: This): Collection<K, T>;
|
|
||||||
/**
|
|
||||||
* Maps each item to another value into an array. Identical in behavior to
|
|
||||||
* [Array.map()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/map).
|
|
||||||
* @param {Function} fn Function that produces an element of the new array, taking three arguments
|
|
||||||
* @param {*} [thisArg] Value to use as `this` when executing function
|
|
||||||
* @returns {Array}
|
|
||||||
* @example collection.map(user => user.tag);
|
|
||||||
*/
|
|
||||||
map<T>(fn: (value: V, key: K, collection: this) => T): T[];
|
|
||||||
map<This, T>(fn: (this: This, value: V, key: K, collection: this) => T, thisArg: This): T[];
|
|
||||||
/**
|
|
||||||
* Maps each item to another value into a collection. Identical in behavior to
|
|
||||||
* [Array.map()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/map).
|
|
||||||
* @param {Function} fn Function that produces an element of the new collection, taking three arguments
|
|
||||||
* @param {*} [thisArg] Value to use as `this` when executing function
|
|
||||||
* @returns {Collection}
|
|
||||||
* @example collection.mapValues(user => user.tag);
|
|
||||||
*/
|
|
||||||
mapValues<T>(fn: (value: V, key: K, collection: this) => T): Collection<K, T>;
|
|
||||||
mapValues<This, T>(fn: (this: This, value: V, key: K, collection: this) => T, thisArg: This): Collection<K, T>;
|
|
||||||
/**
|
|
||||||
* Checks if there exists an item that passes a test. Identical in behavior to
|
|
||||||
* [Array.some()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/some).
|
|
||||||
* @param {Function} fn Function used to test (should return a boolean)
|
|
||||||
* @param {*} [thisArg] Value to use as `this` when executing function
|
|
||||||
* @returns {boolean}
|
|
||||||
* @example collection.some(user => user.discriminator === '0000');
|
|
||||||
*/
|
|
||||||
some(fn: (value: V, key: K, collection: this) => boolean): boolean;
|
|
||||||
some<T>(fn: (this: T, value: V, key: K, collection: this) => boolean, thisArg: T): boolean;
|
|
||||||
/**
|
|
||||||
* Checks if all items passes a test. Identical in behavior to
|
|
||||||
* [Array.every()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/every).
|
|
||||||
* @param {Function} fn Function used to test (should return a boolean)
|
|
||||||
* @param {*} [thisArg] Value to use as `this` when executing function
|
|
||||||
* @returns {boolean}
|
|
||||||
* @example collection.every(user => !user.bot);
|
|
||||||
*/
|
|
||||||
every(fn: (value: V, key: K, collection: this) => boolean): boolean;
|
|
||||||
every<T>(fn: (this: T, value: V, key: K, collection: this) => boolean, thisArg: T): boolean;
|
|
||||||
/**
|
|
||||||
* Applies a function to produce a single value. Identical in behavior to
|
|
||||||
* [Array.reduce()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/reduce).
|
|
||||||
* @param {Function} fn Function used to reduce, taking four arguments; `accumulator`, `currentValue`, `currentKey`,
|
|
||||||
* and `collection`
|
|
||||||
* @param {*} [initialValue] Starting value for the accumulator
|
|
||||||
* @returns {*}
|
|
||||||
* @example collection.reduce((acc, guild) => acc + guild.memberCount, 0);
|
|
||||||
*/
|
|
||||||
reduce<T>(fn: (accumulator: T, value: V, key: K, collection: this) => T, initialValue?: T): T;
|
|
||||||
/**
|
|
||||||
* Identical to
|
|
||||||
* [Map.forEach()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map/forEach),
|
|
||||||
* but returns the collection instead of undefined.
|
|
||||||
* @param {Function} fn Function to execute for each element
|
|
||||||
* @param {*} [thisArg] Value to use as `this` when executing function
|
|
||||||
* @returns {Collection}
|
|
||||||
* @example
|
|
||||||
* collection
|
|
||||||
* .each(user => console.log(user.username))
|
|
||||||
* .filter(user => user.bot)
|
|
||||||
* .each(user => console.log(user.username));
|
|
||||||
*/
|
|
||||||
each(fn: (value: V, key: K, collection: this) => void): this;
|
|
||||||
each<T>(fn: (this: T, value: V, key: K, collection: this) => void, thisArg: T): this;
|
|
||||||
/**
|
|
||||||
* Runs a function on the collection and returns the collection.
|
|
||||||
* @param {Function} fn Function to execute
|
|
||||||
* @param {*} [thisArg] Value to use as `this` when executing function
|
|
||||||
* @returns {Collection}
|
|
||||||
* @example
|
|
||||||
* collection
|
|
||||||
* .tap(coll => console.log(coll.size))
|
|
||||||
* .filter(user => user.bot)
|
|
||||||
* .tap(coll => console.log(coll.size))
|
|
||||||
*/
|
|
||||||
tap(fn: (collection: this) => void): this;
|
|
||||||
tap<T>(fn: (this: T, collection: this) => void, thisArg: T): this;
|
|
||||||
/**
|
|
||||||
* Creates an identical shallow copy of this collection.
|
|
||||||
* @returns {Collection}
|
|
||||||
* @example const newColl = someColl.clone();
|
|
||||||
*/
|
|
||||||
clone(): this;
|
|
||||||
/**
|
|
||||||
* Combines this collection with others into a new collection. None of the source collections are modified.
|
|
||||||
* @param {...Collection} collections Collections to merge
|
|
||||||
* @returns {Collection}
|
|
||||||
* @example const newColl = someColl.concat(someOtherColl, anotherColl, ohBoyAColl);
|
|
||||||
*/
|
|
||||||
concat(...collections: Collection<K, V>[]): this;
|
|
||||||
/**
|
|
||||||
* Checks if this collection shares identical items with another.
|
|
||||||
* This is different to checking for equality using equal-signs, because
|
|
||||||
* the collections may be different objects, but contain the same data.
|
|
||||||
* @param {Collection} collection Collection to compare with
|
|
||||||
* @returns {boolean} Whether the collections have identical contents
|
|
||||||
*/
|
|
||||||
equals(collection: Collection<K, V>): boolean;
|
|
||||||
/**
|
|
||||||
* The sort method sorts the items of a collection in place and returns it.
|
|
||||||
* The sort is not necessarily stable. The default sort order is according to string Unicode code points.
|
|
||||||
* @param {Function} [compareFunction] Specifies a function that defines the sort order.
|
|
||||||
* If omitted, the collection is sorted according to each character's Unicode code point value,
|
|
||||||
* according to the string conversion of each element.
|
|
||||||
* @returns {Collection}
|
|
||||||
* @example collection.sort((userA, userB) => userA.createdTimestamp - userB.createdTimestamp);
|
|
||||||
*/
|
|
||||||
sort(compareFunction?: (firstValue: V, secondValue: V, firstKey: K, secondKey: K) => number): this;
|
|
||||||
/**
|
|
||||||
* The intersect method returns a new structure containing items where the keys are present in both original structures.
|
|
||||||
* @param {Collection} other The other Collection to filter against
|
|
||||||
* @returns {Collection}
|
|
||||||
*/
|
|
||||||
intersect(other: Collection<K, V>): Collection<K, V>;
|
|
||||||
/**
|
|
||||||
* The difference method returns a new structure containing items where the key is present in one of the original structures but not the other.
|
|
||||||
* @param {Collection} other The other Collection to filter against
|
|
||||||
* @returns {Collection}
|
|
||||||
*/
|
|
||||||
difference(other: Collection<K, V>): Collection<K, V>;
|
|
||||||
/**
|
|
||||||
* The sorted method sorts the items of a collection and returns it.
|
|
||||||
* The sort is not necessarily stable. The default sort order is according to string Unicode code points.
|
|
||||||
* @param {Function} [compareFunction] Specifies a function that defines the sort order.
|
|
||||||
* If omitted, the collection is sorted according to each character's Unicode code point value,
|
|
||||||
* according to the string conversion of each element.
|
|
||||||
* @returns {Collection}
|
|
||||||
* @example collection.sorted((userA, userB) => userA.createdTimestamp - userB.createdTimestamp);
|
|
||||||
*/
|
|
||||||
sorted(compareFunction?: (firstValue: V, secondValue: V, firstKey: K, secondKey: K) => number): this;
|
|
||||||
}
|
|
||||||
export { Collection };
|
|
||||||
export default Collection;
|
|
389
node_modules/@discordjs/collection/dist/index.js
generated
vendored
389
node_modules/@discordjs/collection/dist/index.js
generated
vendored
File diff suppressed because one or more lines are too long
78
node_modules/@discordjs/collection/package.json
generated
vendored
78
node_modules/@discordjs/collection/package.json
generated
vendored
@ -1,78 +0,0 @@
|
|||||||
{
|
|
||||||
"_from": "@discordjs/collection@^0.1.5",
|
|
||||||
"_id": "@discordjs/collection@0.1.5",
|
|
||||||
"_inBundle": false,
|
|
||||||
"_integrity": "sha512-CU1q0UXQUpFNzNB7gufgoisDHP7n+T3tkqTsp3MNUkVJ5+hS3BCvME8uCXAUFlz+6T2FbTCu75A+yQ7HMKqRKw==",
|
|
||||||
"_location": "/@discordjs/collection",
|
|
||||||
"_phantomChildren": {},
|
|
||||||
"_requested": {
|
|
||||||
"type": "range",
|
|
||||||
"registry": true,
|
|
||||||
"raw": "@discordjs/collection@^0.1.5",
|
|
||||||
"name": "@discordjs/collection",
|
|
||||||
"escapedName": "@discordjs%2fcollection",
|
|
||||||
"scope": "@discordjs",
|
|
||||||
"rawSpec": "^0.1.5",
|
|
||||||
"saveSpec": null,
|
|
||||||
"fetchSpec": "^0.1.5"
|
|
||||||
},
|
|
||||||
"_requiredBy": [
|
|
||||||
"/discord.js"
|
|
||||||
],
|
|
||||||
"_resolved": "https://registry.npmjs.org/@discordjs/collection/-/collection-0.1.5.tgz",
|
|
||||||
"_shasum": "1781c620b4c88d619bd0373a1548e5a6025e3d3a",
|
|
||||||
"_spec": "@discordjs/collection@^0.1.5",
|
|
||||||
"_where": "C:\\Users\\matia\\Documents\\GitHub\\Musix-V3\\node_modules\\discord.js",
|
|
||||||
"author": {
|
|
||||||
"name": "Amish Shah",
|
|
||||||
"email": "amishshah.2k@gmail.com"
|
|
||||||
},
|
|
||||||
"bugs": {
|
|
||||||
"url": "https://github.com/discordjs/collection/issues"
|
|
||||||
},
|
|
||||||
"bundleDependencies": false,
|
|
||||||
"deprecated": false,
|
|
||||||
"description": "Utility data structure used in Discord.js",
|
|
||||||
"devDependencies": {
|
|
||||||
"@babel/cli": "^7.8.4",
|
|
||||||
"@babel/core": "^7.8.4",
|
|
||||||
"@babel/preset-env": "^7.8.4",
|
|
||||||
"@babel/preset-typescript": "^7.8.3",
|
|
||||||
"@types/node": "^13.7.4",
|
|
||||||
"@typescript-eslint/eslint-plugin": "^2.21.0",
|
|
||||||
"@typescript-eslint/parser": "^2.21.0",
|
|
||||||
"discord.js-docgen": "github:discordjs/docgen#ts-patch",
|
|
||||||
"eslint": "^6.8.0",
|
|
||||||
"eslint-config-marine": "^6.0.0",
|
|
||||||
"jsdoc-babel": "^0.5.0",
|
|
||||||
"rimraf": "^3.0.2",
|
|
||||||
"typescript": "^3.8.2"
|
|
||||||
},
|
|
||||||
"eslintConfig": {
|
|
||||||
"extends": "marine/node"
|
|
||||||
},
|
|
||||||
"homepage": "https://github.com/discordjs/collection#readme",
|
|
||||||
"keywords": [
|
|
||||||
"map",
|
|
||||||
"collection",
|
|
||||||
"utility"
|
|
||||||
],
|
|
||||||
"license": "Apache-2.0",
|
|
||||||
"main": "dist/index.js",
|
|
||||||
"name": "@discordjs/collection",
|
|
||||||
"repository": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "git+https://github.com/discordjs/collection.git"
|
|
||||||
},
|
|
||||||
"scripts": {
|
|
||||||
"build": "rimraf dist/ && tsc",
|
|
||||||
"docs": "docgen --jsdoc jsdoc.json --source src/*.ts src/**/*.ts --custom docs/index.yml --output docs/docs.json",
|
|
||||||
"docs:test": "docgen --jsdoc jsdoc.json --source src/*.ts src/**/*.ts --custom docs/index.yml",
|
|
||||||
"lint": "eslint src --ext .ts",
|
|
||||||
"prebuild": "npm run lint",
|
|
||||||
"pretest": "npm run build",
|
|
||||||
"test": "node test/index.js"
|
|
||||||
},
|
|
||||||
"types": "dist/index.d.ts",
|
|
||||||
"version": "0.1.5"
|
|
||||||
}
|
|
1
node_modules/@discordjs/opus/.gitattributes
generated
vendored
1
node_modules/@discordjs/opus/.gitattributes
generated
vendored
@ -1 +0,0 @@
|
|||||||
* text=auto eol=lf
|
|
22
node_modules/@discordjs/opus/.github/workflows/build.yml
generated
vendored
22
node_modules/@discordjs/opus/.github/workflows/build.yml
generated
vendored
@ -1,22 +0,0 @@
|
|||||||
name: Build
|
|
||||||
on: [push, pull_request]
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
name: Build
|
|
||||||
runs-on: ${{ matrix.os }}
|
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
os: [macos-latest, ubuntu-latest, windows-latest]
|
|
||||||
node: [12, 13]
|
|
||||||
fail-fast: true
|
|
||||||
steps:
|
|
||||||
- name: Checkout repository
|
|
||||||
uses: actions/checkout@v2
|
|
||||||
|
|
||||||
- name: Install Node v${{ matrix.node }}
|
|
||||||
uses: actions/setup-node@v1
|
|
||||||
with:
|
|
||||||
node-version: ${{ matrix.node }}
|
|
||||||
|
|
||||||
- name: Install dependencies
|
|
||||||
run: yarn install
|
|
34
node_modules/@discordjs/opus/.github/workflows/release.yml
generated
vendored
34
node_modules/@discordjs/opus/.github/workflows/release.yml
generated
vendored
@ -1,34 +0,0 @@
|
|||||||
name: Prebuild
|
|
||||||
on:
|
|
||||||
release:
|
|
||||||
types: [published]
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
name: Prebuild
|
|
||||||
runs-on: ${{ matrix.os }}
|
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
os: [macos-latest, ubuntu-latest, windows-latest]
|
|
||||||
node: [12, 13]
|
|
||||||
fail-fast: true
|
|
||||||
steps:
|
|
||||||
- name: Checkout repository
|
|
||||||
uses: actions/checkout@v2
|
|
||||||
|
|
||||||
- name: Install Node v${{ matrix.node }}
|
|
||||||
uses: actions/setup-node@v1
|
|
||||||
with:
|
|
||||||
node-version: ${{ matrix.node }}
|
|
||||||
|
|
||||||
- name: Install dependencies
|
|
||||||
run: yarn install
|
|
||||||
|
|
||||||
- name: Package prebuild
|
|
||||||
run: yarn build
|
|
||||||
|
|
||||||
- name: Upload prebuild asset
|
|
||||||
uses: icrawl/action-artifact@v1
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
with:
|
|
||||||
path: 'build/stage/**/*.tar.gz'
|
|
22
node_modules/@discordjs/opus/LICENSE
generated
vendored
22
node_modules/@discordjs/opus/LICENSE
generated
vendored
@ -1,22 +0,0 @@
|
|||||||
MIT License
|
|
||||||
|
|
||||||
Copyright (c) 2020 iCrawl
|
|
||||||
Copyright (c) 2013-2019 Mikko Rantanen
|
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
|
||||||
in the Software without restriction, including without limitation the rights
|
|
||||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
||||||
copies of the Software, and to permit persons to whom the Software is
|
|
||||||
furnished to do so, subject to the following conditions:
|
|
||||||
|
|
||||||
The above copyright notice and this permission notice shall be included in all
|
|
||||||
copies or substantial portions of the Software.
|
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
||||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
||||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
||||||
SOFTWARE.
|
|
51
node_modules/@discordjs/opus/binding.gyp
generated
vendored
51
node_modules/@discordjs/opus/binding.gyp
generated
vendored
@ -1,51 +0,0 @@
|
|||||||
{
|
|
||||||
"targets": [
|
|
||||||
{
|
|
||||||
"target_name": "<(module_name)",
|
|
||||||
"product_dir": "<(module_path)",
|
|
||||||
"dependencies": [
|
|
||||||
"deps/binding.gyp:libopus",
|
|
||||||
],
|
|
||||||
"cflags!": [
|
|
||||||
"-fno-exceptions",
|
|
||||||
],
|
|
||||||
"cflags_cc!": [
|
|
||||||
"-fno-exceptions",
|
|
||||||
],
|
|
||||||
"cflags": [
|
|
||||||
"-pthread",
|
|
||||||
"-fno-strict-aliasing",
|
|
||||||
"-Wall",
|
|
||||||
"-Wno-unused-parameter",
|
|
||||||
"-Wno-missing-field-initializers",
|
|
||||||
"-Wextra",
|
|
||||||
"-pipe",
|
|
||||||
"-fno-ident",
|
|
||||||
"-fdata-sections",
|
|
||||||
"-ffunction-sections",
|
|
||||||
"-fPIC",
|
|
||||||
],
|
|
||||||
"defines": [
|
|
||||||
"LARGEFILE_SOURCE",
|
|
||||||
"_FILE_OFFSET_BITS=64",
|
|
||||||
"WEBRTC_TARGET_PC",
|
|
||||||
"WEBRTC_LINUX",
|
|
||||||
"WEBRTC_THREAD_RR",
|
|
||||||
"EXPAT_RELATIVE_PATH",
|
|
||||||
"GTEST_RELATIVE_PATH",
|
|
||||||
"JSONCPP_RELATIVE_PATH",
|
|
||||||
"WEBRTC_RELATIVE_PATH",
|
|
||||||
"POSIX,"
|
|
||||||
"__STDC_FORMAT_MACROS",
|
|
||||||
"DYNAMIC_ANNOTATIONS_ENABLED=0",
|
|
||||||
"NAPI_DISABLE_CPP_EXCEPTIONS",
|
|
||||||
],
|
|
||||||
"include_dirs": [
|
|
||||||
"<!@(node -p \"require('node-addon-api').include\")"
|
|
||||||
],
|
|
||||||
"sources": [
|
|
||||||
"src/node-opus.cc",
|
|
||||||
],
|
|
||||||
},
|
|
||||||
],
|
|
||||||
}
|
|
224
node_modules/@discordjs/opus/deps/binding.gyp
generated
vendored
224
node_modules/@discordjs/opus/deps/binding.gyp
generated
vendored
@ -1,224 +0,0 @@
|
|||||||
{
|
|
||||||
"variables": {
|
|
||||||
"target_arch%": "x64"
|
|
||||||
},
|
|
||||||
"target_defaults": {
|
|
||||||
"default_configuration": "Debug",
|
|
||||||
"configuration": {
|
|
||||||
"Debug": {
|
|
||||||
"defines": [ "DEBUG", "_DEBUG" ],
|
|
||||||
"msvs_settings": {
|
|
||||||
"VSSLCompilerTool": {
|
|
||||||
"RuntimeLibrary": 1,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
"Release": {
|
|
||||||
"defines": [ "NODEBUG" ],
|
|
||||||
"msvs_settings": {
|
|
||||||
"VSSLCompilerTool": {
|
|
||||||
"RuntimeLibrary": 0,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
"msvs_settings": {
|
|
||||||
"VCLinkerTool": {
|
|
||||||
"GenerateDebugInformation": "true",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
"targets": [
|
|
||||||
{
|
|
||||||
"target_name": "libopus",
|
|
||||||
"type": "static_library",
|
|
||||||
"sources": [
|
|
||||||
"opus/src/opus_multistream.c",
|
|
||||||
"opus/src/opus_projection_encoder.c",
|
|
||||||
"opus/src/analysis.c",
|
|
||||||
"opus/src/mlp_data.c",
|
|
||||||
"opus/src/opus_multistream_encoder.c",
|
|
||||||
"opus/src/opus_projection_decoder.c",
|
|
||||||
"opus/src/mapping_matrix.c",
|
|
||||||
"opus/src/opus_compare.c",
|
|
||||||
"opus/src/mlp.c",
|
|
||||||
"opus/src/opus.c",
|
|
||||||
"opus/src/opus_multistream_decoder.c",
|
|
||||||
"opus/src/opus_decoder.c",
|
|
||||||
"opus/src/repacketizer.c",
|
|
||||||
"opus/src/opus_encoder.c",
|
|
||||||
"opus/silk/decode_frame.c",
|
|
||||||
"opus/silk/float/inner_product_FLP.c",
|
|
||||||
"opus/silk/float/scale_vector_FLP.c",
|
|
||||||
"opus/silk/float/find_pred_coefs_FLP.c",
|
|
||||||
"opus/silk/float/schur_FLP.c",
|
|
||||||
"opus/silk/float/warped_autocorrelation_FLP.c",
|
|
||||||
"opus/silk/float/burg_modified_FLP.c",
|
|
||||||
"opus/silk/float/find_LPC_FLP.c",
|
|
||||||
"opus/silk/float/LPC_inv_pred_gain_FLP.c",
|
|
||||||
"opus/silk/float/scale_copy_vector_FLP.c",
|
|
||||||
"opus/silk/float/noise_shape_analysis_FLP.c",
|
|
||||||
"opus/silk/float/pitch_analysis_core_FLP.c",
|
|
||||||
"opus/silk/float/bwexpander_FLP.c",
|
|
||||||
"opus/silk/float/LTP_analysis_filter_FLP.c",
|
|
||||||
"opus/silk/float/LTP_scale_ctrl_FLP.c",
|
|
||||||
"opus/silk/float/corrMatrix_FLP.c",
|
|
||||||
"opus/silk/float/encode_frame_FLP.c",
|
|
||||||
"opus/silk/float/sort_FLP.c",
|
|
||||||
"opus/silk/float/find_pitch_lags_FLP.c",
|
|
||||||
"opus/silk/float/residual_energy_FLP.c",
|
|
||||||
"opus/silk/float/LPC_analysis_filter_FLP.c",
|
|
||||||
"opus/silk/float/autocorrelation_FLP.c",
|
|
||||||
"opus/silk/float/k2a_FLP.c",
|
|
||||||
"opus/silk/float/regularize_correlations_FLP.c",
|
|
||||||
"opus/silk/float/find_LTP_FLP.c",
|
|
||||||
"opus/silk/float/energy_FLP.c",
|
|
||||||
"opus/silk/float/apply_sine_window_FLP.c",
|
|
||||||
"opus/silk/float/wrappers_FLP.c",
|
|
||||||
"opus/silk/float/process_gains_FLP.c",
|
|
||||||
"opus/silk/stereo_quant_pred.c",
|
|
||||||
"opus/silk/LPC_inv_pred_gain.c",
|
|
||||||
"opus/silk/process_NLSFs.c",
|
|
||||||
"opus/silk/NSQ.c",
|
|
||||||
"opus/silk/check_control_input.c",
|
|
||||||
"opus/silk/NLSF_del_dec_quant.c",
|
|
||||||
"opus/silk/LPC_analysis_filter.c",
|
|
||||||
"opus/silk/dec_API.c",
|
|
||||||
"opus/silk/resampler.c",
|
|
||||||
"opus/silk/sort.c",
|
|
||||||
"opus/silk/VAD.c",
|
|
||||||
"opus/silk/resampler_private_AR2.c",
|
|
||||||
"opus/silk/LPC_fit.c",
|
|
||||||
"opus/silk/control_SNR.c",
|
|
||||||
"opus/silk/decode_parameters.c",
|
|
||||||
"opus/silk/pitch_est_tables.c",
|
|
||||||
"opus/silk/fixed/warped_autocorrelation_FIX.c",
|
|
||||||
"opus/silk/fixed/apply_sine_window_FIX.c",
|
|
||||||
"opus/silk/fixed/residual_energy16_FIX.c",
|
|
||||||
"opus/silk/fixed/schur64_FIX.c",
|
|
||||||
"opus/silk/fixed/residual_energy_FIX.c",
|
|
||||||
"opus/silk/fixed/noise_shape_analysis_FIX.c",
|
|
||||||
"opus/silk/fixed/encode_frame_FIX.c",
|
|
||||||
"opus/silk/fixed/schur_FIX.c",
|
|
||||||
"opus/silk/fixed/autocorr_FIX.c",
|
|
||||||
"opus/silk/fixed/burg_modified_FIX.c",
|
|
||||||
"opus/silk/fixed/pitch_analysis_core_FIX.c",
|
|
||||||
"opus/silk/fixed/find_LTP_FIX.c",
|
|
||||||
"opus/silk/fixed/find_LPC_FIX.c",
|
|
||||||
"opus/silk/fixed/corrMatrix_FIX.c",
|
|
||||||
"opus/silk/fixed/k2a_FIX.c",
|
|
||||||
"opus/silk/fixed/LTP_scale_ctrl_FIX.c",
|
|
||||||
"opus/silk/fixed/process_gains_FIX.c",
|
|
||||||
"opus/silk/fixed/k2a_Q16_FIX.c",
|
|
||||||
"opus/silk/fixed/regularize_correlations_FIX.c",
|
|
||||||
"opus/silk/fixed/LTP_analysis_filter_FIX.c",
|
|
||||||
"opus/silk/fixed/vector_ops_FIX.c",
|
|
||||||
"opus/silk/fixed/find_pitch_lags_FIX.c",
|
|
||||||
"opus/silk/fixed/find_pred_coefs_FIX.c",
|
|
||||||
"opus/silk/control_audio_bandwidth.c",
|
|
||||||
"opus/silk/decoder_set_fs.c",
|
|
||||||
"opus/silk/NLSF_unpack.c",
|
|
||||||
"opus/silk/bwexpander.c",
|
|
||||||
"opus/silk/resampler_rom.c",
|
|
||||||
"opus/silk/shell_coder.c",
|
|
||||||
"opus/silk/decode_pulses.c",
|
|
||||||
"opus/silk/bwexpander_32.c",
|
|
||||||
"opus/silk/decode_core.c",
|
|
||||||
"opus/silk/PLC.c",
|
|
||||||
"opus/silk/tables_NLSF_CB_WB.c",
|
|
||||||
"opus/silk/table_LSF_cos.c",
|
|
||||||
"opus/silk/tables_pulses_per_block.c",
|
|
||||||
"opus/silk/tables_gain.c",
|
|
||||||
"opus/silk/inner_prod_aligned.c",
|
|
||||||
"opus/silk/resampler_down2_3.c",
|
|
||||||
"opus/silk/NSQ_del_dec.c",
|
|
||||||
"opus/silk/decode_pitch.c",
|
|
||||||
"opus/silk/NLSF_VQ_weights_laroia.c",
|
|
||||||
"opus/silk/interpolate.c",
|
|
||||||
"opus/silk/debug.c",
|
|
||||||
"opus/silk/tables_other.c",
|
|
||||||
"opus/silk/LP_variable_cutoff.c",
|
|
||||||
"opus/silk/NLSF_decode.c",
|
|
||||||
"opus/silk/encode_pulses.c",
|
|
||||||
"opus/silk/control_codec.c",
|
|
||||||
"opus/silk/stereo_LR_to_MS.c",
|
|
||||||
"opus/silk/HP_variable_cutoff.c",
|
|
||||||
"opus/silk/encode_indices.c",
|
|
||||||
"opus/silk/init_decoder.c",
|
|
||||||
"opus/silk/stereo_encode_pred.c",
|
|
||||||
"opus/silk/NLSF_VQ.c",
|
|
||||||
"opus/silk/init_encoder.c",
|
|
||||||
"opus/silk/resampler_private_IIR_FIR.c",
|
|
||||||
"opus/silk/resampler_private_up2_HQ.c",
|
|
||||||
"opus/silk/sigm_Q15.c",
|
|
||||||
"opus/silk/sum_sqr_shift.c",
|
|
||||||
"opus/silk/tables_LTP.c",
|
|
||||||
"opus/silk/resampler_down2.c",
|
|
||||||
"opus/silk/code_signs.c",
|
|
||||||
"opus/silk/tables_NLSF_CB_NB_MB.c",
|
|
||||||
"opus/silk/gain_quant.c",
|
|
||||||
"opus/silk/tables_pitch_lag.c",
|
|
||||||
"opus/silk/NLSF_stabilize.c",
|
|
||||||
"opus/silk/stereo_find_predictor.c",
|
|
||||||
"opus/silk/A2NLSF.c",
|
|
||||||
"opus/silk/NLSF2A.c",
|
|
||||||
"opus/silk/VQ_WMat_EC.c",
|
|
||||||
"opus/silk/NLSF_encode.c",
|
|
||||||
"opus/silk/log2lin.c",
|
|
||||||
"opus/silk/stereo_decode_pred.c",
|
|
||||||
"opus/silk/lin2log.c",
|
|
||||||
"opus/silk/CNG.c",
|
|
||||||
"opus/silk/enc_API.c",
|
|
||||||
"opus/silk/biquad_alt.c",
|
|
||||||
"opus/silk/quant_LTP_gains.c",
|
|
||||||
"opus/silk/resampler_private_down_FIR.c",
|
|
||||||
"opus/silk/ana_filt_bank_1.c",
|
|
||||||
"opus/silk/stereo_MS_to_LR.c",
|
|
||||||
"opus/silk/decode_indices.c",
|
|
||||||
"opus/celt/rate.c",
|
|
||||||
"opus/celt/entdec.c",
|
|
||||||
"opus/celt/modes.c",
|
|
||||||
"opus/celt/celt_lpc.c",
|
|
||||||
"opus/celt/laplace.c",
|
|
||||||
"opus/celt/cwrs.c",
|
|
||||||
"opus/celt/celt.c",
|
|
||||||
"opus/celt/entcode.c",
|
|
||||||
"opus/celt/celt_decoder.c",
|
|
||||||
"opus/celt/celt_encoder.c",
|
|
||||||
"opus/celt/mdct.c",
|
|
||||||
"opus/celt/quant_bands.c",
|
|
||||||
"opus/celt/vq.c",
|
|
||||||
"opus/celt/bands.c",
|
|
||||||
"opus/celt/kiss_fft.c",
|
|
||||||
"opus/celt/entenc.c",
|
|
||||||
"opus/celt/mathops.c",
|
|
||||||
"opus/celt/pitch.c",
|
|
||||||
],
|
|
||||||
"cflags": [
|
|
||||||
"-fvisibility=hidden",
|
|
||||||
"-W",
|
|
||||||
"-Wstrict-prototypes",
|
|
||||||
"-Wall",
|
|
||||||
"-Wextra",
|
|
||||||
"-Wcast-align",
|
|
||||||
"-Wnested-externs",
|
|
||||||
"-Wshadow",
|
|
||||||
"-Wno-parentheses",
|
|
||||||
"-Wno-unused-parameter",
|
|
||||||
"-Wno-sign-compare",
|
|
||||||
"-Wno-maybe-uninitialized",
|
|
||||||
],
|
|
||||||
"include_dirs": [
|
|
||||||
"config/opus/<(OS)/<(target_arch)",
|
|
||||||
"opus/include",
|
|
||||||
"opus/celt",
|
|
||||||
"opus/silk",
|
|
||||||
"opus/silk/float",
|
|
||||||
],
|
|
||||||
"defines": [
|
|
||||||
"PIC",
|
|
||||||
"HAVE_CONFIG_H",
|
|
||||||
],
|
|
||||||
},
|
|
||||||
],
|
|
||||||
}
|
|
196
node_modules/@discordjs/opus/deps/config/opus/android/arm/config.h
generated
vendored
196
node_modules/@discordjs/opus/deps/config/opus/android/arm/config.h
generated
vendored
@ -1,196 +0,0 @@
|
|||||||
/* config.h. Generated from config.h.in by configure. */
|
|
||||||
/* config.h.in. Generated from configure.ac by autoheader. */
|
|
||||||
|
|
||||||
/* Get CPU Info by asm method */
|
|
||||||
/* #undef CPU_INFO_BY_ASM */
|
|
||||||
|
|
||||||
/* Get CPU Info by c method */
|
|
||||||
/* #undef CPU_INFO_BY_C */
|
|
||||||
|
|
||||||
/* Custom modes */
|
|
||||||
/* #undef CUSTOM_MODES */
|
|
||||||
|
|
||||||
/* Do not build the float API */
|
|
||||||
/* #undef DISABLE_FLOAT_API */
|
|
||||||
|
|
||||||
/* Assertions */
|
|
||||||
/* #undef ENABLE_ASSERTIONS */
|
|
||||||
|
|
||||||
/* Debug fixed-point implementation */
|
|
||||||
/* #undef FIXED_DEBUG */
|
|
||||||
|
|
||||||
/* Compile as fixed-point (for machines without a fast enough FPU) */
|
|
||||||
/* #undef FIXED_POINT */
|
|
||||||
|
|
||||||
/* Float approximations */
|
|
||||||
/* #undef FLOAT_APPROX */
|
|
||||||
|
|
||||||
/* Fuzzing */
|
|
||||||
/* #undef FUZZING */
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <alloca.h> header file. */
|
|
||||||
/* #undef HAVE_ALLOCA_H */
|
|
||||||
|
|
||||||
/* NE10 library is installed on host. Make sure it is on target! */
|
|
||||||
/* #undef HAVE_ARM_NE10 */
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <dlfcn.h> header file. */
|
|
||||||
#define HAVE_DLFCN_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <inttypes.h> header file. */
|
|
||||||
#define HAVE_INTTYPES_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `lrint' function. */
|
|
||||||
#define HAVE_LRINT 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `lrintf' function. */
|
|
||||||
#define HAVE_LRINTF 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <memory.h> header file. */
|
|
||||||
#define HAVE_MEMORY_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <stdint.h> header file. */
|
|
||||||
#define HAVE_STDINT_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <stdlib.h> header file. */
|
|
||||||
#define HAVE_STDLIB_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <strings.h> header file. */
|
|
||||||
#define HAVE_STRINGS_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <string.h> header file. */
|
|
||||||
#define HAVE_STRING_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <sys/stat.h> header file. */
|
|
||||||
#define HAVE_SYS_STAT_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <sys/types.h> header file. */
|
|
||||||
#define HAVE_SYS_TYPES_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <unistd.h> header file. */
|
|
||||||
#define HAVE_UNISTD_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `__malloc_hook' function. */
|
|
||||||
/* #undef HAVE___MALLOC_HOOK */
|
|
||||||
|
|
||||||
/* Define to the sub-directory where libtool stores uninstalled libraries. */
|
|
||||||
#define LT_OBJDIR ".libs/"
|
|
||||||
|
|
||||||
/* Make use of ARM asm optimization */
|
|
||||||
/* #undef OPUS_ARM_ASM */
|
|
||||||
|
|
||||||
/* Use generic ARMv4 inline asm optimizations */
|
|
||||||
/* #undef OPUS_ARM_INLINE_ASM */
|
|
||||||
|
|
||||||
/* Use ARMv5E inline asm optimizations */
|
|
||||||
/* #undef OPUS_ARM_INLINE_EDSP */
|
|
||||||
|
|
||||||
/* Use ARMv6 inline asm optimizations */
|
|
||||||
/* #undef OPUS_ARM_INLINE_MEDIA */
|
|
||||||
|
|
||||||
/* Use ARM NEON inline asm optimizations */
|
|
||||||
/* #undef OPUS_ARM_INLINE_NEON */
|
|
||||||
|
|
||||||
/* Define if assembler supports EDSP instructions */
|
|
||||||
/* #undef OPUS_ARM_MAY_HAVE_EDSP */
|
|
||||||
|
|
||||||
/* Define if assembler supports ARMv6 media instructions */
|
|
||||||
/* #undef OPUS_ARM_MAY_HAVE_MEDIA */
|
|
||||||
|
|
||||||
/* Define if compiler supports NEON instructions */
|
|
||||||
/* #undef OPUS_ARM_MAY_HAVE_NEON */
|
|
||||||
|
|
||||||
/* Compiler supports ARMv7 Neon Intrinsics */
|
|
||||||
/* #undef OPUS_ARM_MAY_HAVE_NEON_INTR */
|
|
||||||
|
|
||||||
/* Define if binary requires EDSP instruction support */
|
|
||||||
/* #undef OPUS_ARM_PRESUME_EDSP */
|
|
||||||
|
|
||||||
/* Define if binary requires ARMv6 media instruction support */
|
|
||||||
/* #undef OPUS_ARM_PRESUME_MEDIA */
|
|
||||||
|
|
||||||
/* Define if binary requires NEON instruction support */
|
|
||||||
/* #undef OPUS_ARM_PRESUME_NEON */
|
|
||||||
|
|
||||||
/* Define if binary requires NEON intrinsics support */
|
|
||||||
/* #undef OPUS_ARM_PRESUME_NEON_INTR */
|
|
||||||
|
|
||||||
/* This is a build of OPUS */
|
|
||||||
#define OPUS_BUILD /**/
|
|
||||||
|
|
||||||
/* Use run-time CPU capabilities detection */
|
|
||||||
/* #undef OPUS_HAVE_RTCD */
|
|
||||||
|
|
||||||
/* Compiler supports X86 AVX Intrinsics */
|
|
||||||
/* #undef OPUS_X86_MAY_HAVE_AVX */
|
|
||||||
|
|
||||||
/* Compiler supports X86 SSE Intrinsics */
|
|
||||||
/* #undef OPUS_X86_MAY_HAVE_SSE */
|
|
||||||
|
|
||||||
/* Compiler supports X86 SSE2 Intrinsics */
|
|
||||||
/* #undef OPUS_X86_MAY_HAVE_SSE2 */
|
|
||||||
|
|
||||||
/* Compiler supports X86 SSE4.1 Intrinsics */
|
|
||||||
/* #undef OPUS_X86_MAY_HAVE_SSE4_1 */
|
|
||||||
|
|
||||||
/* Define if binary requires AVX intrinsics support */
|
|
||||||
/* #undef OPUS_X86_PRESUME_AVX */
|
|
||||||
|
|
||||||
/* Define if binary requires SSE intrinsics support */
|
|
||||||
/* #undef OPUS_X86_PRESUME_SSE */
|
|
||||||
|
|
||||||
/* Define if binary requires SSE2 intrinsics support */
|
|
||||||
/* #undef OPUS_X86_PRESUME_SSE2 */
|
|
||||||
|
|
||||||
/* Define if binary requires SSE4.1 intrinsics support */
|
|
||||||
/* #undef OPUS_X86_PRESUME_SSE4_1 */
|
|
||||||
|
|
||||||
/* Define to the address where bug reports for this package should be sent. */
|
|
||||||
#define PACKAGE_BUGREPORT "opus@xiph.org"
|
|
||||||
|
|
||||||
/* Define to the full name of this package. */
|
|
||||||
#define PACKAGE_NAME "opus"
|
|
||||||
|
|
||||||
/* Define to the full name and version of this package. */
|
|
||||||
#define PACKAGE_STRING "opus 1.3.1"
|
|
||||||
|
|
||||||
/* Define to the one symbol short name of this package. */
|
|
||||||
#define PACKAGE_TARNAME "opus"
|
|
||||||
|
|
||||||
/* Define to the home page for this package. */
|
|
||||||
#define PACKAGE_URL ""
|
|
||||||
|
|
||||||
/* Define to the version of this package. */
|
|
||||||
#define PACKAGE_VERSION "1.3.1"
|
|
||||||
|
|
||||||
/* Define to 1 if you have the ANSI C header files. */
|
|
||||||
#define STDC_HEADERS 1
|
|
||||||
|
|
||||||
/* Make use of alloca */
|
|
||||||
/* #undef USE_ALLOCA */
|
|
||||||
|
|
||||||
/* Use C99 variable-size arrays */
|
|
||||||
#define VAR_ARRAYS 1
|
|
||||||
|
|
||||||
/* Define to empty if `const' does not conform to ANSI C. */
|
|
||||||
/* #undef const */
|
|
||||||
|
|
||||||
/* Define to `__inline__' or `__inline' if that's what the C compiler
|
|
||||||
calls it, or to nothing if 'inline' is not supported under any name. */
|
|
||||||
#ifndef __cplusplus
|
|
||||||
/* #undef inline */
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* Define to the equivalent of the C99 'restrict' keyword, or to
|
|
||||||
nothing if this is not supported. Do not define if restrict is
|
|
||||||
supported directly. */
|
|
||||||
#define restrict __restrict
|
|
||||||
/* Work around a bug in Sun C++: it does not support _Restrict or
|
|
||||||
__restrict__, even though the corresponding Sun C compiler ends up with
|
|
||||||
"#define restrict _Restrict" or "#define restrict __restrict__" in the
|
|
||||||
previous line. Perhaps some future version of Sun C++ will work with
|
|
||||||
restrict; if so, hopefully it defines __RESTRICT like Sun C does. */
|
|
||||||
#if defined __SUNPRO_CC && !defined __RESTRICT
|
|
||||||
# define _Restrict
|
|
||||||
# define __restrict__
|
|
||||||
#endif
|
|
197
node_modules/@discordjs/opus/deps/config/opus/freebsd/x64/config.h
generated
vendored
197
node_modules/@discordjs/opus/deps/config/opus/freebsd/x64/config.h
generated
vendored
@ -1,197 +0,0 @@
|
|||||||
/* config.h. Generated from config.h.in by configure. */
|
|
||||||
/* config.h.in. Generated from configure.ac by autoheader. */
|
|
||||||
|
|
||||||
/* Get CPU Info by asm method */
|
|
||||||
/* #undef CPU_INFO_BY_ASM */
|
|
||||||
|
|
||||||
/* Get CPU Info by c method */
|
|
||||||
/* #undef CPU_INFO_BY_C */
|
|
||||||
|
|
||||||
/* Custom modes */
|
|
||||||
/* #undef CUSTOM_MODES */
|
|
||||||
|
|
||||||
/* Do not build the float API */
|
|
||||||
/* #undef DISABLE_FLOAT_API */
|
|
||||||
|
|
||||||
/* Assertions */
|
|
||||||
/* #undef ENABLE_ASSERTIONS */
|
|
||||||
|
|
||||||
/* Debug fixed-point implementation */
|
|
||||||
/* #undef FIXED_DEBUG */
|
|
||||||
|
|
||||||
/* Compile as fixed-point (for machines without a fast enough FPU) */
|
|
||||||
/* #undef FIXED_POINT */
|
|
||||||
|
|
||||||
/* Float approximations */
|
|
||||||
/* #undef FLOAT_APPROX */
|
|
||||||
|
|
||||||
/* Fuzzing */
|
|
||||||
/* #undef FUZZING */
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <alloca.h> header file. */
|
|
||||||
/* #undef HAVE_ALLOCA_H */
|
|
||||||
|
|
||||||
/* NE10 library is installed on host. Make sure it is on target! */
|
|
||||||
/* #undef HAVE_ARM_NE10 */
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <dlfcn.h> header file. */
|
|
||||||
#define HAVE_DLFCN_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <inttypes.h> header file. */
|
|
||||||
#define HAVE_INTTYPES_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `lrint' function. */
|
|
||||||
#define HAVE_LRINT 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `lrintf' function. */
|
|
||||||
#define HAVE_LRINTF 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <memory.h> header file. */
|
|
||||||
#define HAVE_MEMORY_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <stdint.h> header file. */
|
|
||||||
#define HAVE_STDINT_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <stdlib.h> header file. */
|
|
||||||
#define HAVE_STDLIB_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <strings.h> header file. */
|
|
||||||
#define HAVE_STRINGS_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <string.h> header file. */
|
|
||||||
#define HAVE_STRING_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <sys/stat.h> header file. */
|
|
||||||
#define HAVE_SYS_STAT_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <sys/types.h> header file. */
|
|
||||||
#define HAVE_SYS_TYPES_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <unistd.h> header file. */
|
|
||||||
#define HAVE_UNISTD_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `__malloc_hook' function. */
|
|
||||||
/* #undef HAVE___MALLOC_HOOK */
|
|
||||||
|
|
||||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
|
||||||
*/
|
|
||||||
#define LT_OBJDIR ".libs/"
|
|
||||||
|
|
||||||
/* Make use of ARM asm optimization */
|
|
||||||
/* #undef OPUS_ARM_ASM */
|
|
||||||
|
|
||||||
/* Use generic ARMv4 inline asm optimizations */
|
|
||||||
/* #undef OPUS_ARM_INLINE_ASM */
|
|
||||||
|
|
||||||
/* Use ARMv5E inline asm optimizations */
|
|
||||||
/* #undef OPUS_ARM_INLINE_EDSP */
|
|
||||||
|
|
||||||
/* Use ARMv6 inline asm optimizations */
|
|
||||||
/* #undef OPUS_ARM_INLINE_MEDIA */
|
|
||||||
|
|
||||||
/* Use ARM NEON inline asm optimizations */
|
|
||||||
/* #undef OPUS_ARM_INLINE_NEON */
|
|
||||||
|
|
||||||
/* Define if assembler supports EDSP instructions */
|
|
||||||
/* #undef OPUS_ARM_MAY_HAVE_EDSP */
|
|
||||||
|
|
||||||
/* Define if assembler supports ARMv6 media instructions */
|
|
||||||
/* #undef OPUS_ARM_MAY_HAVE_MEDIA */
|
|
||||||
|
|
||||||
/* Define if compiler supports NEON instructions */
|
|
||||||
/* #undef OPUS_ARM_MAY_HAVE_NEON */
|
|
||||||
|
|
||||||
/* Compiler supports ARMv7 Neon Intrinsics */
|
|
||||||
/* #undef OPUS_ARM_MAY_HAVE_NEON_INTR */
|
|
||||||
|
|
||||||
/* Define if binary requires EDSP instruction support */
|
|
||||||
/* #undef OPUS_ARM_PRESUME_EDSP */
|
|
||||||
|
|
||||||
/* Define if binary requires ARMv6 media instruction support */
|
|
||||||
/* #undef OPUS_ARM_PRESUME_MEDIA */
|
|
||||||
|
|
||||||
/* Define if binary requires NEON instruction support */
|
|
||||||
/* #undef OPUS_ARM_PRESUME_NEON */
|
|
||||||
|
|
||||||
/* Define if binary requires NEON intrinsics support */
|
|
||||||
/* #undef OPUS_ARM_PRESUME_NEON_INTR */
|
|
||||||
|
|
||||||
/* This is a build of OPUS */
|
|
||||||
#define OPUS_BUILD /**/
|
|
||||||
|
|
||||||
/* Use run-time CPU capabilities detection */
|
|
||||||
/* #undef OPUS_HAVE_RTCD */
|
|
||||||
|
|
||||||
/* Compiler supports X86 AVX Intrinsics */
|
|
||||||
/* #undef OPUS_X86_MAY_HAVE_AVX */
|
|
||||||
|
|
||||||
/* Compiler supports X86 SSE Intrinsics */
|
|
||||||
/* #undef OPUS_X86_MAY_HAVE_SSE */
|
|
||||||
|
|
||||||
/* Compiler supports X86 SSE2 Intrinsics */
|
|
||||||
/* #undef OPUS_X86_MAY_HAVE_SSE2 */
|
|
||||||
|
|
||||||
/* Compiler supports X86 SSE4.1 Intrinsics */
|
|
||||||
/* #undef OPUS_X86_MAY_HAVE_SSE4_1 */
|
|
||||||
|
|
||||||
/* Define if binary requires AVX intrinsics support */
|
|
||||||
/* #undef OPUS_X86_PRESUME_AVX */
|
|
||||||
|
|
||||||
/* Define if binary requires SSE intrinsics support */
|
|
||||||
/* #undef OPUS_X86_PRESUME_SSE */
|
|
||||||
|
|
||||||
/* Define if binary requires SSE2 intrinsics support */
|
|
||||||
/* #undef OPUS_X86_PRESUME_SSE2 */
|
|
||||||
|
|
||||||
/* Define if binary requires SSE4.1 intrinsics support */
|
|
||||||
/* #undef OPUS_X86_PRESUME_SSE4_1 */
|
|
||||||
|
|
||||||
/* Define to the address where bug reports for this package should be sent. */
|
|
||||||
#define PACKAGE_BUGREPORT "opus@xiph.org"
|
|
||||||
|
|
||||||
/* Define to the full name of this package. */
|
|
||||||
#define PACKAGE_NAME "opus"
|
|
||||||
|
|
||||||
/* Define to the full name and version of this package. */
|
|
||||||
#define PACKAGE_STRING "opus 1.3.1"
|
|
||||||
|
|
||||||
/* Define to the one symbol short name of this package. */
|
|
||||||
#define PACKAGE_TARNAME "opus"
|
|
||||||
|
|
||||||
/* Define to the home page for this package. */
|
|
||||||
#define PACKAGE_URL ""
|
|
||||||
|
|
||||||
/* Define to the version of this package. */
|
|
||||||
#define PACKAGE_VERSION "1.3.1"
|
|
||||||
|
|
||||||
/* Define to 1 if you have the ANSI C header files. */
|
|
||||||
#define STDC_HEADERS 1
|
|
||||||
|
|
||||||
/* Make use of alloca */
|
|
||||||
/* #undef USE_ALLOCA */
|
|
||||||
|
|
||||||
/* Use C99 variable-size arrays */
|
|
||||||
#define VAR_ARRAYS 1
|
|
||||||
|
|
||||||
/* Define to empty if `const' does not conform to ANSI C. */
|
|
||||||
/* #undef const */
|
|
||||||
|
|
||||||
/* Define to `__inline__' or `__inline' if that's what the C compiler
|
|
||||||
calls it, or to nothing if 'inline' is not supported under any name. */
|
|
||||||
#ifndef __cplusplus
|
|
||||||
/* #undef inline */
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* Define to the equivalent of the C99 'restrict' keyword, or to
|
|
||||||
nothing if this is not supported. Do not define if restrict is
|
|
||||||
supported directly. */
|
|
||||||
#define restrict __restrict
|
|
||||||
/* Work around a bug in Sun C++: it does not support _Restrict or
|
|
||||||
__restrict__, even though the corresponding Sun C compiler ends up with
|
|
||||||
"#define restrict _Restrict" or "#define restrict __restrict__" in the
|
|
||||||
previous line. Perhaps some future version of Sun C++ will work with
|
|
||||||
restrict; if so, hopefully it defines __RESTRICT like Sun C does. */
|
|
||||||
#if defined __SUNPRO_CC && !defined __RESTRICT
|
|
||||||
# define _Restrict
|
|
||||||
# define __restrict__
|
|
||||||
#endif
|
|
176
node_modules/@discordjs/opus/deps/config/opus/linux/arm/config.h
generated
vendored
176
node_modules/@discordjs/opus/deps/config/opus/linux/arm/config.h
generated
vendored
@ -1,176 +0,0 @@
|
|||||||
/* config.h. Generated from config.h.in by configure. */
|
|
||||||
/* config.h.in. Generated from configure.ac by autoheader. */
|
|
||||||
|
|
||||||
/* Get CPU Info by asm method */
|
|
||||||
/* #undef CPU_INFO_BY_ASM */
|
|
||||||
|
|
||||||
/* Get CPU Info by c method */
|
|
||||||
/* #undef CPU_INFO_BY_C */
|
|
||||||
|
|
||||||
/* Custom modes */
|
|
||||||
/* #undef CUSTOM_MODES */
|
|
||||||
|
|
||||||
/* Do not build the float API */
|
|
||||||
/* #undef DISABLE_FLOAT_API */
|
|
||||||
|
|
||||||
/* Assertions */
|
|
||||||
/* #undef ENABLE_ASSERTIONS */
|
|
||||||
|
|
||||||
/* Debug fixed-point implementation */
|
|
||||||
/* #undef FIXED_DEBUG */
|
|
||||||
|
|
||||||
/* Compile as fixed-point (for machines without a fast enough FPU) */
|
|
||||||
/* #undef FIXED_POINT */
|
|
||||||
|
|
||||||
/* Float approximations */
|
|
||||||
/* #undef FLOAT_APPROX */
|
|
||||||
|
|
||||||
/* Fuzzing */
|
|
||||||
/* #undef FUZZING */
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <alloca.h> header file. */
|
|
||||||
/* #undef HAVE_ALLOCA_H */
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <dlfcn.h> header file. */
|
|
||||||
#define HAVE_DLFCN_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <inttypes.h> header file. */
|
|
||||||
#define HAVE_INTTYPES_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `lrint' function. */
|
|
||||||
#define HAVE_LRINT 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `lrintf' function. */
|
|
||||||
#define HAVE_LRINTF 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <memory.h> header file. */
|
|
||||||
#define HAVE_MEMORY_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <stdint.h> header file. */
|
|
||||||
#define HAVE_STDINT_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <stdlib.h> header file. */
|
|
||||||
#define HAVE_STDLIB_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <strings.h> header file. */
|
|
||||||
#define HAVE_STRINGS_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <string.h> header file. */
|
|
||||||
#define HAVE_STRING_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <sys/stat.h> header file. */
|
|
||||||
#define HAVE_SYS_STAT_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <sys/types.h> header file. */
|
|
||||||
#define HAVE_SYS_TYPES_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <unistd.h> header file. */
|
|
||||||
#define HAVE_UNISTD_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `__malloc_hook' function. */
|
|
||||||
#define HAVE___MALLOC_HOOK 1
|
|
||||||
|
|
||||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
|
||||||
*/
|
|
||||||
#define LT_OBJDIR ".libs/"
|
|
||||||
|
|
||||||
/* Define to 1 if your C compiler doesn't accept -c and -o together. */
|
|
||||||
/* #undef NO_MINUS_C_MINUS_O */
|
|
||||||
|
|
||||||
/* Make use of ARM asm optimization */
|
|
||||||
/* #undef OPUS_ARM_ASM */
|
|
||||||
|
|
||||||
/* Use generic ARMv4 inline asm optimizations */
|
|
||||||
/* #undef OPUS_ARM_INLINE_ASM */
|
|
||||||
|
|
||||||
/* Use ARMv5E inline asm optimizations */
|
|
||||||
/* #undef OPUS_ARM_INLINE_EDSP */
|
|
||||||
|
|
||||||
/* Use ARMv6 inline asm optimizations */
|
|
||||||
/* #undef OPUS_ARM_INLINE_MEDIA */
|
|
||||||
|
|
||||||
/* Use ARM NEON inline asm optimizations */
|
|
||||||
/* #undef OPUS_ARM_INLINE_NEON */
|
|
||||||
|
|
||||||
/* Define if compiler support EDSP Instructions */
|
|
||||||
/* #undef OPUS_ARM_MAY_HAVE_EDSP */
|
|
||||||
|
|
||||||
/* Define if compiler support MEDIA Instructions */
|
|
||||||
/* #undef OPUS_ARM_MAY_HAVE_MEDIA */
|
|
||||||
|
|
||||||
/* Define if compiler support NEON instructions */
|
|
||||||
/* #undef OPUS_ARM_MAY_HAVE_NEON */
|
|
||||||
|
|
||||||
/* Compiler supports ARMv7 Neon Intrinsics */
|
|
||||||
/* #undef OPUS_ARM_NEON_INTR */
|
|
||||||
|
|
||||||
/* Define if binary requires EDSP instruction support */
|
|
||||||
/* #undef OPUS_ARM_PRESUME_EDSP */
|
|
||||||
|
|
||||||
/* Define if binary requires ARMv6 media instruction support */
|
|
||||||
/* #undef OPUS_ARM_PRESUME_MEDIA */
|
|
||||||
|
|
||||||
/* Define if binary requires NEON instruction support */
|
|
||||||
/* #undef OPUS_ARM_PRESUME_NEON */
|
|
||||||
|
|
||||||
/* This is a build of OPUS */
|
|
||||||
#define OPUS_BUILD /**/
|
|
||||||
|
|
||||||
/* Use run-time CPU capabilities detection */
|
|
||||||
/* #undef OPUS_HAVE_RTCD */
|
|
||||||
|
|
||||||
/* For x86 sse2 instrinsics optimize */
|
|
||||||
/* #undef OPUS_X86_MAY_HAVE_SSE2 */
|
|
||||||
|
|
||||||
/* For x86 sse4.1 instrinsics optimizations */
|
|
||||||
/* #undef OPUS_X86_MAY_HAVE_SSE4_1 */
|
|
||||||
|
|
||||||
/* Define to the address where bug reports for this package should be sent. */
|
|
||||||
#define PACKAGE_BUGREPORT "opus@xiph.org"
|
|
||||||
|
|
||||||
/* Define to the full name of this package. */
|
|
||||||
#define PACKAGE_NAME "opus"
|
|
||||||
|
|
||||||
/* Define to the full name and version of this package. */
|
|
||||||
#define PACKAGE_STRING "opus 1.3.1"
|
|
||||||
|
|
||||||
/* Define to the one symbol short name of this package. */
|
|
||||||
#define PACKAGE_TARNAME "opus"
|
|
||||||
|
|
||||||
/* Define to the home page for this package. */
|
|
||||||
#define PACKAGE_URL ""
|
|
||||||
|
|
||||||
/* Define to the version of this package. */
|
|
||||||
#define PACKAGE_VERSION "1.3.1"
|
|
||||||
|
|
||||||
/* Define to 1 if you have the ANSI C header files. */
|
|
||||||
#define STDC_HEADERS 1
|
|
||||||
|
|
||||||
/* Make use of alloca */
|
|
||||||
/* #undef USE_ALLOCA */
|
|
||||||
|
|
||||||
/* Use C99 variable-size arrays */
|
|
||||||
#define VAR_ARRAYS 1
|
|
||||||
|
|
||||||
/* Define to empty if `const' does not conform to ANSI C. */
|
|
||||||
/* #undef const */
|
|
||||||
|
|
||||||
/* Define to `__inline__' or `__inline' if that's what the C compiler
|
|
||||||
calls it, or to nothing if 'inline' is not supported under any name. */
|
|
||||||
#ifndef __cplusplus
|
|
||||||
/* #undef inline */
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* Define to the equivalent of the C99 'restrict' keyword, or to
|
|
||||||
nothing if this is not supported. Do not define if restrict is
|
|
||||||
supported directly. */
|
|
||||||
#define restrict __restrict
|
|
||||||
/* Work around a bug in Sun C++: it does not support _Restrict or
|
|
||||||
__restrict__, even though the corresponding Sun C compiler ends up with
|
|
||||||
"#define restrict _Restrict" or "#define restrict __restrict__" in the
|
|
||||||
previous line. Perhaps some future version of Sun C++ will work with
|
|
||||||
restrict; if so, hopefully it defines __RESTRICT like Sun C does. */
|
|
||||||
#if defined __SUNPRO_CC && !defined __RESTRICT
|
|
||||||
# define _Restrict
|
|
||||||
# define __restrict__
|
|
||||||
#endif
|
|
196
node_modules/@discordjs/opus/deps/config/opus/linux/arm64/config.h
generated
vendored
196
node_modules/@discordjs/opus/deps/config/opus/linux/arm64/config.h
generated
vendored
@ -1,196 +0,0 @@
|
|||||||
/* config.h. Generated from config.h.in by configure. */
|
|
||||||
/* config.h.in. Generated from configure.ac by autoheader. */
|
|
||||||
|
|
||||||
/* Get CPU Info by asm method */
|
|
||||||
/* #undef CPU_INFO_BY_ASM */
|
|
||||||
|
|
||||||
/* Get CPU Info by c method */
|
|
||||||
/* #undef CPU_INFO_BY_C */
|
|
||||||
|
|
||||||
/* Custom modes */
|
|
||||||
/* #undef CUSTOM_MODES */
|
|
||||||
|
|
||||||
/* Do not build the float API */
|
|
||||||
/* #undef DISABLE_FLOAT_API */
|
|
||||||
|
|
||||||
/* Assertions */
|
|
||||||
/* #undef ENABLE_ASSERTIONS */
|
|
||||||
|
|
||||||
/* Debug fixed-point implementation */
|
|
||||||
/* #undef FIXED_DEBUG */
|
|
||||||
|
|
||||||
/* Compile as fixed-point (for machines without a fast enough FPU) */
|
|
||||||
/* #undef FIXED_POINT */
|
|
||||||
|
|
||||||
/* Float approximations */
|
|
||||||
/* #undef FLOAT_APPROX */
|
|
||||||
|
|
||||||
/* Fuzzing */
|
|
||||||
/* #undef FUZZING */
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <alloca.h> header file. */
|
|
||||||
/* #undef HAVE_ALLOCA_H */
|
|
||||||
|
|
||||||
/* NE10 library is installed on host. Make sure it is on target! */
|
|
||||||
/* #undef HAVE_ARM_NE10 */
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <dlfcn.h> header file. */
|
|
||||||
#define HAVE_DLFCN_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <inttypes.h> header file. */
|
|
||||||
#define HAVE_INTTYPES_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `lrint' function. */
|
|
||||||
#define HAVE_LRINT 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `lrintf' function. */
|
|
||||||
#define HAVE_LRINTF 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <memory.h> header file. */
|
|
||||||
#define HAVE_MEMORY_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <stdint.h> header file. */
|
|
||||||
#define HAVE_STDINT_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <stdlib.h> header file. */
|
|
||||||
#define HAVE_STDLIB_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <strings.h> header file. */
|
|
||||||
#define HAVE_STRINGS_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <string.h> header file. */
|
|
||||||
#define HAVE_STRING_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <sys/stat.h> header file. */
|
|
||||||
#define HAVE_SYS_STAT_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <sys/types.h> header file. */
|
|
||||||
#define HAVE_SYS_TYPES_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <unistd.h> header file. */
|
|
||||||
#define HAVE_UNISTD_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `__malloc_hook' function. */
|
|
||||||
#define HAVE___MALLOC_HOOK 1
|
|
||||||
|
|
||||||
/* Define to the sub-directory where libtool stores uninstalled libraries. */
|
|
||||||
#define LT_OBJDIR ".libs/"
|
|
||||||
|
|
||||||
/* Make use of ARM asm optimization */
|
|
||||||
/* #undef OPUS_ARM_ASM */
|
|
||||||
|
|
||||||
/* Use generic ARMv4 inline asm optimizations */
|
|
||||||
/* #undef OPUS_ARM_INLINE_ASM */
|
|
||||||
|
|
||||||
/* Use ARMv5E inline asm optimizations */
|
|
||||||
/* #undef OPUS_ARM_INLINE_EDSP */
|
|
||||||
|
|
||||||
/* Use ARMv6 inline asm optimizations */
|
|
||||||
/* #undef OPUS_ARM_INLINE_MEDIA */
|
|
||||||
|
|
||||||
/* Use ARM NEON inline asm optimizations */
|
|
||||||
/* #undef OPUS_ARM_INLINE_NEON */
|
|
||||||
|
|
||||||
/* Define if assembler supports EDSP instructions */
|
|
||||||
/* #undef OPUS_ARM_MAY_HAVE_EDSP */
|
|
||||||
|
|
||||||
/* Define if assembler supports ARMv6 media instructions */
|
|
||||||
/* #undef OPUS_ARM_MAY_HAVE_MEDIA */
|
|
||||||
|
|
||||||
/* Define if compiler supports NEON instructions */
|
|
||||||
/* #undef OPUS_ARM_MAY_HAVE_NEON */
|
|
||||||
|
|
||||||
/* Compiler supports ARMv7 Neon Intrinsics */
|
|
||||||
/* #undef OPUS_ARM_MAY_HAVE_NEON_INTR */
|
|
||||||
|
|
||||||
/* Define if binary requires EDSP instruction support */
|
|
||||||
/* #undef OPUS_ARM_PRESUME_EDSP */
|
|
||||||
|
|
||||||
/* Define if binary requires ARMv6 media instruction support */
|
|
||||||
/* #undef OPUS_ARM_PRESUME_MEDIA */
|
|
||||||
|
|
||||||
/* Define if binary requires NEON instruction support */
|
|
||||||
/* #undef OPUS_ARM_PRESUME_NEON */
|
|
||||||
|
|
||||||
/* Define if binary requires NEON intrinsics support */
|
|
||||||
/* #undef OPUS_ARM_PRESUME_NEON_INTR */
|
|
||||||
|
|
||||||
/* This is a build of OPUS */
|
|
||||||
#define OPUS_BUILD /**/
|
|
||||||
|
|
||||||
/* Use run-time CPU capabilities detection */
|
|
||||||
/* #undef OPUS_HAVE_RTCD */
|
|
||||||
|
|
||||||
/* Compiler supports X86 AVX Intrinsics */
|
|
||||||
/* #undef OPUS_X86_MAY_HAVE_AVX */
|
|
||||||
|
|
||||||
/* Compiler supports X86 SSE Intrinsics */
|
|
||||||
/* #undef OPUS_X86_MAY_HAVE_SSE */
|
|
||||||
|
|
||||||
/* Compiler supports X86 SSE2 Intrinsics */
|
|
||||||
/* #undef OPUS_X86_MAY_HAVE_SSE2 */
|
|
||||||
|
|
||||||
/* Compiler supports X86 SSE4.1 Intrinsics */
|
|
||||||
/* #undef OPUS_X86_MAY_HAVE_SSE4_1 */
|
|
||||||
|
|
||||||
/* Define if binary requires AVX intrinsics support */
|
|
||||||
/* #undef OPUS_X86_PRESUME_AVX */
|
|
||||||
|
|
||||||
/* Define if binary requires SSE intrinsics support */
|
|
||||||
/* #undef OPUS_X86_PRESUME_SSE */
|
|
||||||
|
|
||||||
/* Define if binary requires SSE2 intrinsics support */
|
|
||||||
/* #undef OPUS_X86_PRESUME_SSE2 */
|
|
||||||
|
|
||||||
/* Define if binary requires SSE4.1 intrinsics support */
|
|
||||||
/* #undef OPUS_X86_PRESUME_SSE4_1 */
|
|
||||||
|
|
||||||
/* Define to the address where bug reports for this package should be sent. */
|
|
||||||
#define PACKAGE_BUGREPORT "opus@xiph.org"
|
|
||||||
|
|
||||||
/* Define to the full name of this package. */
|
|
||||||
#define PACKAGE_NAME "opus"
|
|
||||||
|
|
||||||
/* Define to the full name and version of this package. */
|
|
||||||
#define PACKAGE_STRING "opus 1.3.1"
|
|
||||||
|
|
||||||
/* Define to the one symbol short name of this package. */
|
|
||||||
#define PACKAGE_TARNAME "opus"
|
|
||||||
|
|
||||||
/* Define to the home page for this package. */
|
|
||||||
#define PACKAGE_URL ""
|
|
||||||
|
|
||||||
/* Define to the version of this package. */
|
|
||||||
#define PACKAGE_VERSION "1.3.1"
|
|
||||||
|
|
||||||
/* Define to 1 if you have the ANSI C header files. */
|
|
||||||
#define STDC_HEADERS 1
|
|
||||||
|
|
||||||
/* Make use of alloca */
|
|
||||||
/* #undef USE_ALLOCA */
|
|
||||||
|
|
||||||
/* Use C99 variable-size arrays */
|
|
||||||
#define VAR_ARRAYS 1
|
|
||||||
|
|
||||||
/* Define to empty if `const' does not conform to ANSI C. */
|
|
||||||
/* #undef const */
|
|
||||||
|
|
||||||
/* Define to `__inline__' or `__inline' if that's what the C compiler
|
|
||||||
calls it, or to nothing if 'inline' is not supported under any name. */
|
|
||||||
#ifndef __cplusplus
|
|
||||||
/* #undef inline */
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* Define to the equivalent of the C99 'restrict' keyword, or to
|
|
||||||
nothing if this is not supported. Do not define if restrict is
|
|
||||||
supported directly. */
|
|
||||||
#define restrict __restrict
|
|
||||||
/* Work around a bug in Sun C++: it does not support _Restrict or
|
|
||||||
__restrict__, even though the corresponding Sun C compiler ends up with
|
|
||||||
"#define restrict _Restrict" or "#define restrict __restrict__" in the
|
|
||||||
previous line. Perhaps some future version of Sun C++ will work with
|
|
||||||
restrict; if so, hopefully it defines __RESTRICT like Sun C does. */
|
|
||||||
#if defined __SUNPRO_CC && !defined __RESTRICT
|
|
||||||
# define _Restrict
|
|
||||||
# define __restrict__
|
|
||||||
#endif
|
|
172
node_modules/@discordjs/opus/deps/config/opus/linux/ia32/config.h
generated
vendored
172
node_modules/@discordjs/opus/deps/config/opus/linux/ia32/config.h
generated
vendored
@ -1,172 +0,0 @@
|
|||||||
/* config.h. Generated from config.h.in by configure. */
|
|
||||||
/* config.h.in. Generated from configure.ac by autoheader. */
|
|
||||||
|
|
||||||
/* Get CPU Info by asm method */
|
|
||||||
/* #undef CPU_INFO_BY_ASM */
|
|
||||||
|
|
||||||
/* Get CPU Info by c method */
|
|
||||||
/* #undef CPU_INFO_BY_C */
|
|
||||||
|
|
||||||
/* Custom modes */
|
|
||||||
/* #undef CUSTOM_MODES */
|
|
||||||
|
|
||||||
/* Do not build the float API */
|
|
||||||
/* #undef DISABLE_FLOAT_API */
|
|
||||||
|
|
||||||
/* Assertions */
|
|
||||||
/* #undef ENABLE_ASSERTIONS */
|
|
||||||
|
|
||||||
/* Debug fixed-point implementation */
|
|
||||||
/* #undef FIXED_DEBUG */
|
|
||||||
|
|
||||||
/* Compile as fixed-point (for machines without a fast enough FPU) */
|
|
||||||
/* #undef FIXED_POINT */
|
|
||||||
|
|
||||||
/* Float approximations */
|
|
||||||
/* #undef FLOAT_APPROX */
|
|
||||||
|
|
||||||
/* Fuzzing */
|
|
||||||
/* #undef FUZZING */
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <alloca.h> header file. */
|
|
||||||
/* #undef HAVE_ALLOCA_H */
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <dlfcn.h> header file. */
|
|
||||||
#define HAVE_DLFCN_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <inttypes.h> header file. */
|
|
||||||
#define HAVE_INTTYPES_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `lrint' function. */
|
|
||||||
#define HAVE_LRINT 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `lrintf' function. */
|
|
||||||
#define HAVE_LRINTF 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <memory.h> header file. */
|
|
||||||
#define HAVE_MEMORY_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <stdint.h> header file. */
|
|
||||||
#define HAVE_STDINT_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <stdlib.h> header file. */
|
|
||||||
#define HAVE_STDLIB_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <strings.h> header file. */
|
|
||||||
#define HAVE_STRINGS_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <string.h> header file. */
|
|
||||||
#define HAVE_STRING_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <sys/stat.h> header file. */
|
|
||||||
#define HAVE_SYS_STAT_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <sys/types.h> header file. */
|
|
||||||
#define HAVE_SYS_TYPES_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <unistd.h> header file. */
|
|
||||||
#define HAVE_UNISTD_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `__malloc_hook' function. */
|
|
||||||
#define HAVE___MALLOC_HOOK 1
|
|
||||||
|
|
||||||
/* Define to the sub-directory where libtool stores uninstalled libraries. */
|
|
||||||
#define LT_OBJDIR ".libs/"
|
|
||||||
|
|
||||||
/* Make use of ARM asm optimization */
|
|
||||||
/* #undef OPUS_ARM_ASM */
|
|
||||||
|
|
||||||
/* Use generic ARMv4 inline asm optimizations */
|
|
||||||
/* #undef OPUS_ARM_INLINE_ASM */
|
|
||||||
|
|
||||||
/* Use ARMv5E inline asm optimizations */
|
|
||||||
/* #undef OPUS_ARM_INLINE_EDSP */
|
|
||||||
|
|
||||||
/* Use ARMv6 inline asm optimizations */
|
|
||||||
/* #undef OPUS_ARM_INLINE_MEDIA */
|
|
||||||
|
|
||||||
/* Use ARM NEON inline asm optimizations */
|
|
||||||
/* #undef OPUS_ARM_INLINE_NEON */
|
|
||||||
|
|
||||||
/* Define if compiler support EDSP Instructions */
|
|
||||||
/* #undef OPUS_ARM_MAY_HAVE_EDSP */
|
|
||||||
|
|
||||||
/* Define if compiler support MEDIA Instructions */
|
|
||||||
/* #undef OPUS_ARM_MAY_HAVE_MEDIA */
|
|
||||||
|
|
||||||
/* Define if compiler support NEON instructions */
|
|
||||||
/* #undef OPUS_ARM_MAY_HAVE_NEON */
|
|
||||||
|
|
||||||
/* Compiler supports ARMv7 Neon Intrinsics */
|
|
||||||
/* #undef OPUS_ARM_NEON_INTR */
|
|
||||||
|
|
||||||
/* Define if binary requires EDSP instruction support */
|
|
||||||
/* #undef OPUS_ARM_PRESUME_EDSP */
|
|
||||||
|
|
||||||
/* Define if binary requires ARMv6 media instruction support */
|
|
||||||
/* #undef OPUS_ARM_PRESUME_MEDIA */
|
|
||||||
|
|
||||||
/* Define if binary requires NEON instruction support */
|
|
||||||
/* #undef OPUS_ARM_PRESUME_NEON */
|
|
||||||
|
|
||||||
/* This is a build of OPUS */
|
|
||||||
#define OPUS_BUILD /**/
|
|
||||||
|
|
||||||
/* Use run-time CPU capabilities detection */
|
|
||||||
/* #undef OPUS_HAVE_RTCD */
|
|
||||||
|
|
||||||
/* For x86 sse2 instrinsics optimize */
|
|
||||||
/* #undef OPUS_X86_MAY_HAVE_SSE2 */
|
|
||||||
|
|
||||||
/* For x86 sse4.1 instrinsics optimizations */
|
|
||||||
/* #undef OPUS_X86_MAY_HAVE_SSE4_1 */
|
|
||||||
|
|
||||||
/* Define to the address where bug reports for this package should be sent. */
|
|
||||||
#define PACKAGE_BUGREPORT "opus@xiph.org"
|
|
||||||
|
|
||||||
/* Define to the full name of this package. */
|
|
||||||
#define PACKAGE_NAME "opus"
|
|
||||||
|
|
||||||
/* Define to the full name and version of this package. */
|
|
||||||
#define PACKAGE_STRING "opus 1.3.1"
|
|
||||||
|
|
||||||
/* Define to the one symbol short name of this package. */
|
|
||||||
#define PACKAGE_TARNAME "opus"
|
|
||||||
|
|
||||||
/* Define to the home page for this package. */
|
|
||||||
#define PACKAGE_URL ""
|
|
||||||
|
|
||||||
/* Define to the version of this package. */
|
|
||||||
#define PACKAGE_VERSION "1.3.1"
|
|
||||||
|
|
||||||
/* Define to 1 if you have the ANSI C header files. */
|
|
||||||
#define STDC_HEADERS 1
|
|
||||||
|
|
||||||
/* Make use of alloca */
|
|
||||||
/* #undef USE_ALLOCA */
|
|
||||||
|
|
||||||
/* Use C99 variable-size arrays */
|
|
||||||
#define VAR_ARRAYS 1
|
|
||||||
|
|
||||||
/* Define to empty if `const' does not conform to ANSI C. */
|
|
||||||
/* #undef const */
|
|
||||||
|
|
||||||
/* Define to `__inline__' or `__inline' if that's what the C compiler
|
|
||||||
calls it, or to nothing if 'inline' is not supported under any name. */
|
|
||||||
#ifndef __cplusplus
|
|
||||||
/* #undef inline */
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* Define to the equivalent of the C99 'restrict' keyword, or to
|
|
||||||
nothing if this is not supported. Do not define if restrict is
|
|
||||||
supported directly. */
|
|
||||||
#define restrict __restrict
|
|
||||||
/* Work around a bug in Sun C++: it does not support _Restrict or
|
|
||||||
__restrict__, even though the corresponding Sun C compiler ends up with
|
|
||||||
"#define restrict _Restrict" or "#define restrict __restrict__" in the
|
|
||||||
previous line. Perhaps some future version of Sun C++ will work with
|
|
||||||
restrict; if so, hopefully it defines __RESTRICT like Sun C does. */
|
|
||||||
#if defined __SUNPRO_CC && !defined __RESTRICT
|
|
||||||
# define _Restrict
|
|
||||||
# define __restrict__
|
|
||||||
#endif
|
|
173
node_modules/@discordjs/opus/deps/config/opus/linux/x64/config.h
generated
vendored
173
node_modules/@discordjs/opus/deps/config/opus/linux/x64/config.h
generated
vendored
@ -1,173 +0,0 @@
|
|||||||
/* config.h. Generated from config.h.in by configure. */
|
|
||||||
/* config.h.in. Generated from configure.ac by autoheader. */
|
|
||||||
|
|
||||||
/* Get CPU Info by asm method */
|
|
||||||
/* #undef CPU_INFO_BY_ASM */
|
|
||||||
|
|
||||||
/* Get CPU Info by c method */
|
|
||||||
/* #undef CPU_INFO_BY_C */
|
|
||||||
|
|
||||||
/* Custom modes */
|
|
||||||
/* #undef CUSTOM_MODES */
|
|
||||||
|
|
||||||
/* Do not build the float API */
|
|
||||||
/* #undef DISABLE_FLOAT_API */
|
|
||||||
|
|
||||||
/* Assertions */
|
|
||||||
/* #undef ENABLE_ASSERTIONS */
|
|
||||||
|
|
||||||
/* Debug fixed-point implementation */
|
|
||||||
/* #undef FIXED_DEBUG */
|
|
||||||
|
|
||||||
/* Compile as fixed-point (for machines without a fast enough FPU) */
|
|
||||||
/* #undef FIXED_POINT */
|
|
||||||
|
|
||||||
/* Float approximations */
|
|
||||||
/* #undef FLOAT_APPROX */
|
|
||||||
|
|
||||||
/* Fuzzing */
|
|
||||||
/* #undef FUZZING */
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <alloca.h> header file. */
|
|
||||||
/* #undef HAVE_ALLOCA_H */
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <dlfcn.h> header file. */
|
|
||||||
#define HAVE_DLFCN_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <inttypes.h> header file. */
|
|
||||||
#define HAVE_INTTYPES_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `lrint' function. */
|
|
||||||
#define HAVE_LRINT 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `lrintf' function. */
|
|
||||||
#define HAVE_LRINTF 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <memory.h> header file. */
|
|
||||||
#define HAVE_MEMORY_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <stdint.h> header file. */
|
|
||||||
#define HAVE_STDINT_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <stdlib.h> header file. */
|
|
||||||
#define HAVE_STDLIB_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <strings.h> header file. */
|
|
||||||
#define HAVE_STRINGS_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <string.h> header file. */
|
|
||||||
#define HAVE_STRING_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <sys/stat.h> header file. */
|
|
||||||
#define HAVE_SYS_STAT_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <sys/types.h> header file. */
|
|
||||||
#define HAVE_SYS_TYPES_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <unistd.h> header file. */
|
|
||||||
#define HAVE_UNISTD_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `__malloc_hook' function. */
|
|
||||||
#define HAVE___MALLOC_HOOK 1
|
|
||||||
|
|
||||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
|
||||||
*/
|
|
||||||
#define LT_OBJDIR ".libs/"
|
|
||||||
|
|
||||||
/* Make use of ARM asm optimization */
|
|
||||||
/* #undef OPUS_ARM_ASM */
|
|
||||||
|
|
||||||
/* Use generic ARMv4 inline asm optimizations */
|
|
||||||
/* #undef OPUS_ARM_INLINE_ASM */
|
|
||||||
|
|
||||||
/* Use ARMv5E inline asm optimizations */
|
|
||||||
/* #undef OPUS_ARM_INLINE_EDSP */
|
|
||||||
|
|
||||||
/* Use ARMv6 inline asm optimizations */
|
|
||||||
/* #undef OPUS_ARM_INLINE_MEDIA */
|
|
||||||
|
|
||||||
/* Use ARM NEON inline asm optimizations */
|
|
||||||
/* #undef OPUS_ARM_INLINE_NEON */
|
|
||||||
|
|
||||||
/* Define if compiler support EDSP Instructions */
|
|
||||||
/* #undef OPUS_ARM_MAY_HAVE_EDSP */
|
|
||||||
|
|
||||||
/* Define if compiler support MEDIA Instructions */
|
|
||||||
/* #undef OPUS_ARM_MAY_HAVE_MEDIA */
|
|
||||||
|
|
||||||
/* Define if compiler support NEON instructions */
|
|
||||||
/* #undef OPUS_ARM_MAY_HAVE_NEON */
|
|
||||||
|
|
||||||
/* Compiler supports ARMv7 Neon Intrinsics */
|
|
||||||
/* #undef OPUS_ARM_NEON_INTR */
|
|
||||||
|
|
||||||
/* Define if binary requires EDSP instruction support */
|
|
||||||
/* #undef OPUS_ARM_PRESUME_EDSP */
|
|
||||||
|
|
||||||
/* Define if binary requires ARMv6 media instruction support */
|
|
||||||
/* #undef OPUS_ARM_PRESUME_MEDIA */
|
|
||||||
|
|
||||||
/* Define if binary requires NEON instruction support */
|
|
||||||
/* #undef OPUS_ARM_PRESUME_NEON */
|
|
||||||
|
|
||||||
/* This is a build of OPUS */
|
|
||||||
#define OPUS_BUILD /**/
|
|
||||||
|
|
||||||
/* Use run-time CPU capabilities detection */
|
|
||||||
/* #undef OPUS_HAVE_RTCD */
|
|
||||||
|
|
||||||
/* For x86 sse2 instrinsics optimize */
|
|
||||||
/* #undef OPUS_X86_MAY_HAVE_SSE2 */
|
|
||||||
|
|
||||||
/* For x86 sse4.1 instrinsics optimizations */
|
|
||||||
/* #undef OPUS_X86_MAY_HAVE_SSE4_1 */
|
|
||||||
|
|
||||||
/* Define to the address where bug reports for this package should be sent. */
|
|
||||||
#define PACKAGE_BUGREPORT "opus@xiph.org"
|
|
||||||
|
|
||||||
/* Define to the full name of this package. */
|
|
||||||
#define PACKAGE_NAME "opus"
|
|
||||||
|
|
||||||
/* Define to the full name and version of this package. */
|
|
||||||
#define PACKAGE_STRING "opus 1.3.1"
|
|
||||||
|
|
||||||
/* Define to the one symbol short name of this package. */
|
|
||||||
#define PACKAGE_TARNAME "opus"
|
|
||||||
|
|
||||||
/* Define to the home page for this package. */
|
|
||||||
#define PACKAGE_URL ""
|
|
||||||
|
|
||||||
/* Define to the version of this package. */
|
|
||||||
#define PACKAGE_VERSION "1.3.1"
|
|
||||||
|
|
||||||
/* Define to 1 if you have the ANSI C header files. */
|
|
||||||
#define STDC_HEADERS 1
|
|
||||||
|
|
||||||
/* Make use of alloca */
|
|
||||||
/* #undef USE_ALLOCA */
|
|
||||||
|
|
||||||
/* Use C99 variable-size arrays */
|
|
||||||
#define VAR_ARRAYS 1
|
|
||||||
|
|
||||||
/* Define to empty if `const' does not conform to ANSI C. */
|
|
||||||
/* #undef const */
|
|
||||||
|
|
||||||
/* Define to `__inline__' or `__inline' if that's what the C compiler
|
|
||||||
calls it, or to nothing if 'inline' is not supported under any name. */
|
|
||||||
#ifndef __cplusplus
|
|
||||||
/* #undef inline */
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* Define to the equivalent of the C99 'restrict' keyword, or to
|
|
||||||
nothing if this is not supported. Do not define if restrict is
|
|
||||||
supported directly. */
|
|
||||||
#define restrict __restrict
|
|
||||||
/* Work around a bug in Sun C++: it does not support _Restrict or
|
|
||||||
__restrict__, even though the corresponding Sun C compiler ends up with
|
|
||||||
"#define restrict _Restrict" or "#define restrict __restrict__" in the
|
|
||||||
previous line. Perhaps some future version of Sun C++ will work with
|
|
||||||
restrict; if so, hopefully it defines __RESTRICT like Sun C does. */
|
|
||||||
#if defined __SUNPRO_CC && !defined __RESTRICT
|
|
||||||
# define _Restrict
|
|
||||||
# define __restrict__
|
|
||||||
#endif
|
|
172
node_modules/@discordjs/opus/deps/config/opus/mac/x64/config.h
generated
vendored
172
node_modules/@discordjs/opus/deps/config/opus/mac/x64/config.h
generated
vendored
@ -1,172 +0,0 @@
|
|||||||
/* config.h. Generated from config.h.in by configure. */
|
|
||||||
/* config.h.in. Generated from configure.ac by autoheader. */
|
|
||||||
|
|
||||||
/* Get CPU Info by asm method */
|
|
||||||
/* #undef CPU_INFO_BY_ASM */
|
|
||||||
|
|
||||||
/* Get CPU Info by c method */
|
|
||||||
/* #undef CPU_INFO_BY_C */
|
|
||||||
|
|
||||||
/* Custom modes */
|
|
||||||
/* #undef CUSTOM_MODES */
|
|
||||||
|
|
||||||
/* Do not build the float API */
|
|
||||||
/* #undef DISABLE_FLOAT_API */
|
|
||||||
|
|
||||||
/* Assertions */
|
|
||||||
/* #undef ENABLE_ASSERTIONS */
|
|
||||||
|
|
||||||
/* Debug fixed-point implementation */
|
|
||||||
/* #undef FIXED_DEBUG */
|
|
||||||
|
|
||||||
/* Compile as fixed-point (for machines without a fast enough FPU) */
|
|
||||||
/* #undef FIXED_POINT */
|
|
||||||
|
|
||||||
/* Float approximations */
|
|
||||||
/* #undef FLOAT_APPROX */
|
|
||||||
|
|
||||||
/* Fuzzing */
|
|
||||||
/* #undef FUZZING */
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <alloca.h> header file. */
|
|
||||||
/* #undef HAVE_ALLOCA_H */
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <dlfcn.h> header file. */
|
|
||||||
#define HAVE_DLFCN_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <inttypes.h> header file. */
|
|
||||||
#define HAVE_INTTYPES_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `lrint' function. */
|
|
||||||
#define HAVE_LRINT 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `lrintf' function. */
|
|
||||||
#define HAVE_LRINTF 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <memory.h> header file. */
|
|
||||||
#define HAVE_MEMORY_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <stdint.h> header file. */
|
|
||||||
#define HAVE_STDINT_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <stdlib.h> header file. */
|
|
||||||
#define HAVE_STDLIB_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <strings.h> header file. */
|
|
||||||
#define HAVE_STRINGS_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <string.h> header file. */
|
|
||||||
#define HAVE_STRING_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <sys/stat.h> header file. */
|
|
||||||
#define HAVE_SYS_STAT_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <sys/types.h> header file. */
|
|
||||||
#define HAVE_SYS_TYPES_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <unistd.h> header file. */
|
|
||||||
#define HAVE_UNISTD_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `__malloc_hook' function. */
|
|
||||||
/* #undef HAVE___MALLOC_HOOK */
|
|
||||||
|
|
||||||
/* Define to the sub-directory where libtool stores uninstalled libraries. */
|
|
||||||
#define LT_OBJDIR ".libs/"
|
|
||||||
|
|
||||||
/* Make use of ARM asm optimization */
|
|
||||||
/* #undef OPUS_ARM_ASM */
|
|
||||||
|
|
||||||
/* Use generic ARMv4 inline asm optimizations */
|
|
||||||
/* #undef OPUS_ARM_INLINE_ASM */
|
|
||||||
|
|
||||||
/* Use ARMv5E inline asm optimizations */
|
|
||||||
/* #undef OPUS_ARM_INLINE_EDSP */
|
|
||||||
|
|
||||||
/* Use ARMv6 inline asm optimizations */
|
|
||||||
/* #undef OPUS_ARM_INLINE_MEDIA */
|
|
||||||
|
|
||||||
/* Use ARM NEON inline asm optimizations */
|
|
||||||
/* #undef OPUS_ARM_INLINE_NEON */
|
|
||||||
|
|
||||||
/* Define if compiler support EDSP Instructions */
|
|
||||||
/* #undef OPUS_ARM_MAY_HAVE_EDSP */
|
|
||||||
|
|
||||||
/* Define if compiler support MEDIA Instructions */
|
|
||||||
/* #undef OPUS_ARM_MAY_HAVE_MEDIA */
|
|
||||||
|
|
||||||
/* Define if compiler support NEON instructions */
|
|
||||||
/* #undef OPUS_ARM_MAY_HAVE_NEON */
|
|
||||||
|
|
||||||
/* Compiler supports ARMv7 Neon Intrinsics */
|
|
||||||
/* #undef OPUS_ARM_NEON_INTR */
|
|
||||||
|
|
||||||
/* Define if binary requires EDSP instruction support */
|
|
||||||
/* #undef OPUS_ARM_PRESUME_EDSP */
|
|
||||||
|
|
||||||
/* Define if binary requires ARMv6 media instruction support */
|
|
||||||
/* #undef OPUS_ARM_PRESUME_MEDIA */
|
|
||||||
|
|
||||||
/* Define if binary requires NEON instruction support */
|
|
||||||
/* #undef OPUS_ARM_PRESUME_NEON */
|
|
||||||
|
|
||||||
/* This is a build of OPUS */
|
|
||||||
#define OPUS_BUILD /**/
|
|
||||||
|
|
||||||
/* Use run-time CPU capabilities detection */
|
|
||||||
/* #undef OPUS_HAVE_RTCD */
|
|
||||||
|
|
||||||
/* For x86 sse2 instrinsics optimize */
|
|
||||||
/* #undef OPUS_X86_MAY_HAVE_SSE2 */
|
|
||||||
|
|
||||||
/* For x86 sse4.1 instrinsics optimizations */
|
|
||||||
/* #undef OPUS_X86_MAY_HAVE_SSE4_1 */
|
|
||||||
|
|
||||||
/* Define to the address where bug reports for this package should be sent. */
|
|
||||||
#define PACKAGE_BUGREPORT "opus@xiph.org"
|
|
||||||
|
|
||||||
/* Define to the full name of this package. */
|
|
||||||
#define PACKAGE_NAME "opus"
|
|
||||||
|
|
||||||
/* Define to the full name and version of this package. */
|
|
||||||
#define PACKAGE_STRING "opus 1.3.1"
|
|
||||||
|
|
||||||
/* Define to the one symbol short name of this package. */
|
|
||||||
#define PACKAGE_TARNAME "opus"
|
|
||||||
|
|
||||||
/* Define to the home page for this package. */
|
|
||||||
#define PACKAGE_URL ""
|
|
||||||
|
|
||||||
/* Define to the version of this package. */
|
|
||||||
#define PACKAGE_VERSION "1.3.1"
|
|
||||||
|
|
||||||
/* Define to 1 if you have the ANSI C header files. */
|
|
||||||
#define STDC_HEADERS 1
|
|
||||||
|
|
||||||
/* Make use of alloca */
|
|
||||||
/* #undef USE_ALLOCA */
|
|
||||||
|
|
||||||
/* Use C99 variable-size arrays */
|
|
||||||
#define VAR_ARRAYS 1
|
|
||||||
|
|
||||||
/* Define to empty if `const' does not conform to ANSI C. */
|
|
||||||
/* #undef const */
|
|
||||||
|
|
||||||
/* Define to `__inline__' or `__inline' if that's what the C compiler
|
|
||||||
calls it, or to nothing if 'inline' is not supported under any name. */
|
|
||||||
#ifndef __cplusplus
|
|
||||||
/* #undef inline */
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* Define to the equivalent of the C99 'restrict' keyword, or to
|
|
||||||
nothing if this is not supported. Do not define if restrict is
|
|
||||||
supported directly. */
|
|
||||||
#define restrict __restrict
|
|
||||||
/* Work around a bug in Sun C++: it does not support _Restrict or
|
|
||||||
__restrict__, even though the corresponding Sun C compiler ends up with
|
|
||||||
"#define restrict _Restrict" or "#define restrict __restrict__" in the
|
|
||||||
previous line. Perhaps some future version of Sun C++ will work with
|
|
||||||
restrict; if so, hopefully it defines __RESTRICT like Sun C does. */
|
|
||||||
#if defined __SUNPRO_CC && !defined __RESTRICT
|
|
||||||
# define _Restrict
|
|
||||||
# define __restrict__
|
|
||||||
#endif
|
|
64
node_modules/@discordjs/opus/deps/config/opus/win/x64/config.h
generated
vendored
64
node_modules/@discordjs/opus/deps/config/opus/win/x64/config.h
generated
vendored
@ -1,64 +0,0 @@
|
|||||||
/***********************************************************************
|
|
||||||
Copyright (c) 2011, Skype Limited. All rights reserved.
|
|
||||||
Redistribution and use in source and binary forms, with or without
|
|
||||||
modification, are permitted provided that the following conditions
|
|
||||||
are met:
|
|
||||||
- Redistributions of source code must retain the above copyright notice,
|
|
||||||
this list of conditions and the following disclaimer.
|
|
||||||
- Redistributions in binary form must reproduce the above copyright
|
|
||||||
notice, this list of conditions and the following disclaimer in the
|
|
||||||
documentation and/or other materials provided with the distribution.
|
|
||||||
- Neither the name of Internet Society, IETF or IETF Trust, nor the
|
|
||||||
names of specific contributors, may be used to endorse or promote
|
|
||||||
products derived from this software without specific prior written
|
|
||||||
permission.
|
|
||||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
||||||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
||||||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
||||||
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
||||||
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
||||||
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
||||||
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
||||||
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
||||||
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
||||||
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
||||||
POSSIBILITY OF SUCH DAMAGE.
|
|
||||||
***********************************************************************/
|
|
||||||
|
|
||||||
#ifndef CONFIG_H
|
|
||||||
#define CONFIG_H
|
|
||||||
|
|
||||||
#define USE_ALLOCA 1
|
|
||||||
|
|
||||||
/* Comment out the next line for floating-point code */
|
|
||||||
/*#define FIXED_POINT 1 */
|
|
||||||
|
|
||||||
#define OPUS_BUILD 1
|
|
||||||
|
|
||||||
#if defined(_M_IX86) || defined(_M_X64)
|
|
||||||
/* Can always compile SSE intrinsics (no special compiler flags necessary) */
|
|
||||||
/* #define OPUS_X86_MAY_HAVE_SSE
|
|
||||||
#define OPUS_X86_MAY_HAVE_SSE2
|
|
||||||
#define OPUS_X86_MAY_HAVE_SSE4_1 */
|
|
||||||
|
|
||||||
/* Presume SSE functions, if compiled to use SSE/SSE2/AVX (note that AMD64 implies SSE2, and AVX
|
|
||||||
implies SSE4.1) */
|
|
||||||
#if defined(_M_X64) || (defined(_M_IX86_FP) && (_M_IX86_FP >= 1)) || defined(__AVX__)
|
|
||||||
#define OPUS_X86_PRESUME_SSE 1
|
|
||||||
#endif
|
|
||||||
#if defined(_M_X64) || (defined(_M_IX86_FP) && (_M_IX86_FP >= 2)) || defined(__AVX__)
|
|
||||||
#define OPUS_X86_PRESUME_SSE2 1
|
|
||||||
#endif
|
|
||||||
#if defined(__AVX__)
|
|
||||||
#define OPUS_X86_PRESUME_SSE4_1 1
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if !defined(OPUS_X86_PRESUME_SSE4_1) || !defined(OPUS_X86_PRESUME_SSE2) || !defined(OPUS_X86_PRESUME_SSE)
|
|
||||||
#define OPUS_HAVE_RTCD 1
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#define PACKAGE_VERSION "1.3.1"
|
|
||||||
|
|
||||||
#endif /* CONFIG_H */
|
|
6
node_modules/@discordjs/opus/deps/opus/AUTHORS
generated
vendored
6
node_modules/@discordjs/opus/deps/opus/AUTHORS
generated
vendored
@ -1,6 +0,0 @@
|
|||||||
Jean-Marc Valin (jmvalin@jmvalin.ca)
|
|
||||||
Koen Vos (koenvos74@gmail.com)
|
|
||||||
Timothy Terriberry (tterribe@xiph.org)
|
|
||||||
Karsten Vandborg Sorensen (karsten.vandborg.sorensen@skype.net)
|
|
||||||
Soren Skak Jensen (ssjensen@gn.com)
|
|
||||||
Gregory Maxwell (greg@xiph.org)
|
|
411
node_modules/@discordjs/opus/deps/opus/CMakeLists.txt
generated
vendored
411
node_modules/@discordjs/opus/deps/opus/CMakeLists.txt
generated
vendored
@ -1,411 +0,0 @@
|
|||||||
cmake_minimum_required(VERSION 3.1)
|
|
||||||
|
|
||||||
include(opus_functions.cmake)
|
|
||||||
|
|
||||||
get_library_version(OPUS_LIBRARY_VERSION OPUS_LIBRARY_VERSION_MAJOR)
|
|
||||||
message(STATUS "Opus library version: ${OPUS_LIBRARY_VERSION}")
|
|
||||||
|
|
||||||
get_package_version(PACKAGE_VERSION)
|
|
||||||
message(STATUS "Opus package version: ${PACKAGE_VERSION}")
|
|
||||||
|
|
||||||
string(REGEX
|
|
||||||
REPLACE "^([0-9]+.[0-9]+\\.?([0-9]+)?).*"
|
|
||||||
"\\1"
|
|
||||||
PROJECT_VERSION
|
|
||||||
${PACKAGE_VERSION})
|
|
||||||
message(STATUS "Opus project version: ${PROJECT_VERSION}")
|
|
||||||
|
|
||||||
project(Opus LANGUAGES C VERSION ${PROJECT_VERSION})
|
|
||||||
include(opus_buildtype.cmake)
|
|
||||||
|
|
||||||
option(OPUS_STACK_PROTECTOR "Use stack protection" ON)
|
|
||||||
option(OPUS_USE_ALLOCA "Use alloca for stack arrays (on non-C99 compilers)" OFF)
|
|
||||||
option(OPUS_CUSTOM_MODES "Enable non-Opus modes, e.g. 44.1 kHz & 2^n frames"
|
|
||||||
OFF)
|
|
||||||
option(OPUS_BUILD_PROGRAMS "Build programs" OFF)
|
|
||||||
option(OPUS_FIXED_POINT
|
|
||||||
"Compile as fixed-point (for machines without a fast enough FPU)" OFF)
|
|
||||||
option(OPUS_ENABLE_FLOAT_API
|
|
||||||
"Compile with the floating point API (for machines with float library"
|
|
||||||
ON)
|
|
||||||
option(OPUS_INSTALL_PKG_CONFIG_MODULE "Install PkgConfig module" ON)
|
|
||||||
option(OPUS_INSTALL_CMAKE_CONFIG_MODULE "Install CMake package config module"
|
|
||||||
ON)
|
|
||||||
|
|
||||||
include(opus_config.cmake)
|
|
||||||
include(opus_sources.cmake)
|
|
||||||
include(GNUInstallDirs)
|
|
||||||
include(CMakeDependentOption)
|
|
||||||
include(FeatureSummary)
|
|
||||||
|
|
||||||
if(OPUS_STACK_PROTECTOR)
|
|
||||||
if(NOT MSVC) # GC on by default on MSVC
|
|
||||||
check_and_set_flag(STACK_PROTECTION_STRONG -fstack-protector-strong)
|
|
||||||
endif()
|
|
||||||
else()
|
|
||||||
if(MSVC)
|
|
||||||
check_and_set_flag(BUFFER_SECURITY_CHECK /GS-)
|
|
||||||
endif()
|
|
||||||
endif()
|
|
||||||
|
|
||||||
if(OPUS_CPU_X86 OR OPUS_CPU_X64)
|
|
||||||
cmake_dependent_option(OPUS_X86_MAY_HAVE_SSE
|
|
||||||
"Does runtime check for SSE1 support"
|
|
||||||
ON
|
|
||||||
"SSE1_SUPPORTED"
|
|
||||||
OFF)
|
|
||||||
cmake_dependent_option(OPUS_X86_MAY_HAVE_SSE2
|
|
||||||
"Does runtime check for SSE2 support"
|
|
||||||
ON
|
|
||||||
"SSE2_SUPPORTED"
|
|
||||||
OFF)
|
|
||||||
cmake_dependent_option(OPUS_X86_MAY_HAVE_SSE4_1
|
|
||||||
"Does runtime check for SSE4.1 support"
|
|
||||||
ON
|
|
||||||
"SSE4_1_SUPPORTED"
|
|
||||||
OFF)
|
|
||||||
cmake_dependent_option(OPUS_X86_MAY_HAVE_AVX
|
|
||||||
"Does runtime check for AVX support"
|
|
||||||
ON
|
|
||||||
"AVX_SUPPORTED"
|
|
||||||
OFF)
|
|
||||||
|
|
||||||
if(OPUS_CPU_X64) # Assume 64 bit has SSE2 support
|
|
||||||
cmake_dependent_option(OPUS_X86_PRESUME_SSE
|
|
||||||
"Assume target CPU has SSE1 support"
|
|
||||||
ON
|
|
||||||
"OPUS_X86_MAY_HAVE_SSE"
|
|
||||||
OFF)
|
|
||||||
cmake_dependent_option(OPUS_X86_PRESUME_SSE2
|
|
||||||
"Assume target CPU has SSE2 support"
|
|
||||||
ON
|
|
||||||
"OPUS_X86_MAY_HAVE_SSE2"
|
|
||||||
OFF)
|
|
||||||
else()
|
|
||||||
cmake_dependent_option(OPUS_X86_PRESUME_SSE
|
|
||||||
"Assume target CPU has SSE1 support"
|
|
||||||
OFF
|
|
||||||
"OPUS_X86_MAY_HAVE_SSE"
|
|
||||||
OFF)
|
|
||||||
cmake_dependent_option(OPUS_X86_PRESUME_SSE2
|
|
||||||
"Assume target CPU has SSE2 support"
|
|
||||||
OFF
|
|
||||||
"OPUS_X86_MAY_HAVE_SSE2"
|
|
||||||
OFF)
|
|
||||||
endif()
|
|
||||||
cmake_dependent_option(OPUS_X86_PRESUME_SSE4_1
|
|
||||||
"Assume target CPU has SSE4.1 support"
|
|
||||||
OFF
|
|
||||||
"OPUS_X86_MAY_HAVE_SSE4_1"
|
|
||||||
OFF)
|
|
||||||
cmake_dependent_option(OPUS_X86_PRESUME_AVX
|
|
||||||
"Assume target CPU has AVX support"
|
|
||||||
OFF
|
|
||||||
"OPUS_X86_MAY_HAVE_AVX"
|
|
||||||
OFF)
|
|
||||||
endif()
|
|
||||||
|
|
||||||
set_package_properties(Git
|
|
||||||
PROPERTIES
|
|
||||||
TYPE
|
|
||||||
REQUIRED
|
|
||||||
DESCRIPTION
|
|
||||||
"fast, scalable, distributed revision control system"
|
|
||||||
URL
|
|
||||||
"https://git-scm.com/"
|
|
||||||
PURPOSE
|
|
||||||
"required to set up package version")
|
|
||||||
|
|
||||||
add_feature_info(STACK_PROTECTOR OPUS_STACK_PROTECTOR "Use stack protection")
|
|
||||||
add_feature_info(USE_ALLOCA OPUS_USE_ALLOCA
|
|
||||||
"Use alloca for stack arrays (on non-C99 compilers)")
|
|
||||||
add_feature_info(CUSTOM_MODES OPUS_CUSTOM_MODES
|
|
||||||
"Enable non-Opus modes, e.g. 44.1 kHz & 2^n frames")
|
|
||||||
add_feature_info(BUILD_PROGRAMS OPUS_BUILD_PROGRAMS "Build programs")
|
|
||||||
add_feature_info(
|
|
||||||
FIXED_POINT OPUS_FIXED_POINT
|
|
||||||
"compile as fixed-point (for machines without a fast enough FPU)")
|
|
||||||
add_feature_info(
|
|
||||||
FLOAT_API OPUS_ENABLE_FLOAT_API
|
|
||||||
"compile with the floating point API (for machines with float library)")
|
|
||||||
|
|
||||||
add_feature_info(INSTALL_PKG_CONFIG_MODULE OPUS_INSTALL_PKG_CONFIG_MODULE
|
|
||||||
"install PkgConfig module")
|
|
||||||
add_feature_info(INSTALL_CMAKE_CONFIG_MODULE OPUS_INSTALL_CMAKE_CONFIG_MODULE
|
|
||||||
"install CMake package config module")
|
|
||||||
|
|
||||||
if(OPUS_CPU_X86 OR OPUS_CPU_X64)
|
|
||||||
add_feature_info(X86_MAY_HAVE_SSE OPUS_X86_MAY_HAVE_SSE
|
|
||||||
"does runtime check for SSE1 support")
|
|
||||||
add_feature_info(X86_MAY_HAVE_SSE2 OPUS_X86_MAY_HAVE_SSE2
|
|
||||||
"does runtime check for SSE2 support")
|
|
||||||
add_feature_info(X86_MAY_HAVE_SSE4_1 OPUS_X86_MAY_HAVE_SSE4_1
|
|
||||||
"does runtime check for SSE4_1 support")
|
|
||||||
add_feature_info(X86_MAY_HAVE_AVX OPUS_X86_MAY_HAVE_AVX
|
|
||||||
"does runtime check for AVX support")
|
|
||||||
add_feature_info(X86_PRESUME_SSE OPUS_X86_PRESUME_SSE
|
|
||||||
"assume target CPU has SSE1 support")
|
|
||||||
add_feature_info(X86_PRESUME_SSE2 OPUS_X86_PRESUME_SSE2
|
|
||||||
"assume target CPU has SSE2 support")
|
|
||||||
add_feature_info(X86_PRESUME_SSE4_1 OPUS_X86_PRESUME_SSE4_1
|
|
||||||
"assume target CPU has SSE4_1 support")
|
|
||||||
add_feature_info(X86_PRESUME_AVX OPUS_X86_PRESUME_AVX
|
|
||||||
"assume target CPU has AVX support")
|
|
||||||
endif()
|
|
||||||
|
|
||||||
feature_summary(WHAT ALL)
|
|
||||||
|
|
||||||
add_library(opus ${opus_sources} ${opus_sources_float})
|
|
||||||
|
|
||||||
set(Opus_PUBLIC_HEADER
|
|
||||||
${CMAKE_CURRENT_SOURCE_DIR}/include/opus.h
|
|
||||||
${CMAKE_CURRENT_SOURCE_DIR}/include/opus_custom.h
|
|
||||||
${CMAKE_CURRENT_SOURCE_DIR}/include/opus_defines.h
|
|
||||||
${CMAKE_CURRENT_SOURCE_DIR}/include/opus_multistream.h
|
|
||||||
${CMAKE_CURRENT_SOURCE_DIR}/include/opus_projection.h
|
|
||||||
${CMAKE_CURRENT_SOURCE_DIR}/include/opus_types.h)
|
|
||||||
|
|
||||||
set_target_properties(opus
|
|
||||||
PROPERTIES SOVERSION
|
|
||||||
${OPUS_LIBRARY_VERSION_MAJOR}
|
|
||||||
VERSION
|
|
||||||
${OPUS_LIBRARY_VERSION}
|
|
||||||
PUBLIC_HEADER
|
|
||||||
"${Opus_PUBLIC_HEADER}")
|
|
||||||
|
|
||||||
target_include_directories(
|
|
||||||
opus
|
|
||||||
PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
|
|
||||||
$<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR}>
|
|
||||||
PRIVATE ${CMAKE_CURRENT_BINARY_DIR}
|
|
||||||
${CMAKE_CURRENT_SOURCE_DIR}
|
|
||||||
celt
|
|
||||||
silk)
|
|
||||||
|
|
||||||
target_link_libraries(opus PRIVATE ${OPUS_REQUIRED_LIBRARIES})
|
|
||||||
target_compile_definitions(opus PRIVATE OPUS_BUILD ENABLE_HARDENING)
|
|
||||||
|
|
||||||
if(NOT MSVC)
|
|
||||||
target_compile_definitions(opus PRIVATE FORTIFY_SOURCE=2)
|
|
||||||
endif()
|
|
||||||
|
|
||||||
# It is strongly recommended to uncomment one of these VAR_ARRAYS: Use C99
|
|
||||||
# variable-length arrays for stack allocation USE_ALLOCA: Use alloca() for stack
|
|
||||||
# allocation If none is defined, then the fallback is a non-threadsafe global
|
|
||||||
# array
|
|
||||||
if(OPUS_USE_ALLOCA OR MSVC)
|
|
||||||
target_compile_definitions(opus PRIVATE USE_ALLOCA)
|
|
||||||
else()
|
|
||||||
target_compile_definitions(opus PRIVATE VAR_ARRAYS)
|
|
||||||
endif()
|
|
||||||
|
|
||||||
if(OPUS_CUSTOM_MODES)
|
|
||||||
target_compile_definitions(opus PRIVATE CUSTOM_MODES)
|
|
||||||
endif()
|
|
||||||
|
|
||||||
if(BUILD_SHARED_LIBS)
|
|
||||||
if(WIN32)
|
|
||||||
target_compile_definitions(opus PRIVATE DLL_EXPORT)
|
|
||||||
else()
|
|
||||||
include(CheckCCompilerFlag)
|
|
||||||
check_c_compiler_flag(-fvisibility=hidden COMPILER_HAS_HIDDEN_VISIBILITY)
|
|
||||||
if(COMPILER_HAS_HIDDEN_VISIBILITY)
|
|
||||||
set_target_properties(opus PROPERTIES C_VISIBILITY_PRESET hidden)
|
|
||||||
endif()
|
|
||||||
endif()
|
|
||||||
endif()
|
|
||||||
|
|
||||||
add_sources_group(opus silk ${silk_sources})
|
|
||||||
add_sources_group(opus celt ${celt_sources})
|
|
||||||
|
|
||||||
if(OPUS_FIXED_POINT)
|
|
||||||
add_sources_group(opus silk ${silk_sources_fixed})
|
|
||||||
target_include_directories(opus PRIVATE silk/fixed)
|
|
||||||
target_compile_definitions(opus PRIVATE FIXED_POINT=1)
|
|
||||||
else()
|
|
||||||
add_sources_group(opus silk ${silk_sources_float})
|
|
||||||
target_include_directories(opus PRIVATE silk/float)
|
|
||||||
endif()
|
|
||||||
|
|
||||||
if(NOT OPUS_ENABLE_FLOAT_API)
|
|
||||||
target_compile_definitions(opus PRIVATE DISABLE_FLOAT_API)
|
|
||||||
endif()
|
|
||||||
|
|
||||||
if(OPUS_X86_MAY_HAVE_SSE
|
|
||||||
OR OPUS_X86_MAY_HAVE_SSE2
|
|
||||||
OR OPUS_X86_MAY_HAVE_SSE4_1
|
|
||||||
OR OPUS_X86_MAY_HAVE_AVX)
|
|
||||||
target_compile_definitions(opus PRIVATE OPUS_HAVE_RTCD)
|
|
||||||
endif()
|
|
||||||
|
|
||||||
if(OPUS_X86_MAY_HAVE_SSE)
|
|
||||||
add_sources_group(opus celt ${celt_sources_sse})
|
|
||||||
target_compile_definitions(opus PRIVATE OPUS_X86_MAY_HAVE_SSE)
|
|
||||||
endif()
|
|
||||||
if(OPUS_X86_PRESUME_SSE)
|
|
||||||
target_compile_definitions(opus PRIVATE OPUS_X86_PRESUME_SSE)
|
|
||||||
endif()
|
|
||||||
|
|
||||||
if(OPUS_X86_MAY_HAVE_SSE2)
|
|
||||||
add_sources_group(opus celt ${celt_sources_sse2})
|
|
||||||
target_compile_definitions(opus PRIVATE OPUS_X86_MAY_HAVE_SSE2)
|
|
||||||
endif()
|
|
||||||
if(OPUS_X86_PRESUME_SSE2)
|
|
||||||
target_compile_definitions(opus PRIVATE OPUS_X86_PRESUME_SSE2)
|
|
||||||
endif()
|
|
||||||
|
|
||||||
if(OPUS_X86_MAY_HAVE_SSE)
|
|
||||||
add_sources_group(opus celt ${celt_sources_sse4_1})
|
|
||||||
add_sources_group(opus silk ${silk_sources_sse4_1})
|
|
||||||
if(OPUS_FIXED_POINT)
|
|
||||||
add_sources_group(opus silk ${silk_sources_fixed_sse4_1})
|
|
||||||
endif()
|
|
||||||
target_compile_definitions(opus PRIVATE OPUS_X86_MAY_HAVE_SSE4_1)
|
|
||||||
endif()
|
|
||||||
if(OPUS_X86_PRESUME_SSE4_1)
|
|
||||||
target_compile_definitions(opus PRIVATE OPUS_X86_PRESUME_SSE4_1)
|
|
||||||
endif()
|
|
||||||
|
|
||||||
if(CMAKE_SYSTEM_PROCESSOR MATCHES "(armv7-a)")
|
|
||||||
add_sources_group(opus celt ${celt_sources_arm})
|
|
||||||
endif()
|
|
||||||
|
|
||||||
if(COMPILER_SUPPORT_NEON AND OPUS_USE_NEON)
|
|
||||||
|
|
||||||
if(OPUS_MAY_HAVE_NEON)
|
|
||||||
if(RUNTIME_CPU_CAPABILITY_DETECTION)
|
|
||||||
message(STATUS "OPUS_MAY_HAVE_NEON enabling runtime detection")
|
|
||||||
target_compile_definitions(opus PRIVATE OPUS_HAVE_RTCD)
|
|
||||||
else()
|
|
||||||
message(ERROR "Runtime cpu capability detection needed for MAY_HAVE_NEON")
|
|
||||||
endif()
|
|
||||||
# Do runtime check for NEON
|
|
||||||
target_compile_definitions(opus
|
|
||||||
PRIVATE
|
|
||||||
OPUS_ARM_MAY_HAVE_NEON
|
|
||||||
OPUS_ARM_MAY_HAVE_NEON_INTR)
|
|
||||||
endif()
|
|
||||||
|
|
||||||
add_sources_group(opus celt ${celt_sources_arm_neon_intr})
|
|
||||||
add_sources_group(opus silk ${silk_sources_arm_neon_intr})
|
|
||||||
|
|
||||||
# silk arm neon depends on main_Fix.h
|
|
||||||
target_include_directories(opus PRIVATE silk/fixed)
|
|
||||||
|
|
||||||
if(OPUS_FIXED_POINT)
|
|
||||||
add_sources_group(opus silk ${silk_sources_fixed_arm_neon_intr})
|
|
||||||
endif()
|
|
||||||
|
|
||||||
if(OPUS_PRESUME_NEON)
|
|
||||||
target_compile_definitions(opus
|
|
||||||
PRIVATE
|
|
||||||
OPUS_ARM_PRESUME_NEON
|
|
||||||
OPUS_ARM_PRESUME_NEON_INTR)
|
|
||||||
endif()
|
|
||||||
endif()
|
|
||||||
|
|
||||||
install(TARGETS opus
|
|
||||||
EXPORT OpusTargets
|
|
||||||
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
|
|
||||||
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
|
|
||||||
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
|
|
||||||
PUBLIC_HEADER DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/opus)
|
|
||||||
|
|
||||||
if(OPUS_INSTALL_PKG_CONFIG_MODULE)
|
|
||||||
set(prefix ${CMAKE_INSTALL_PREFIX})
|
|
||||||
set(exec_prefix ${CMAKE_INSTALL_PREFIX})
|
|
||||||
set(libdir ${CMAKE_INSTALL_FULL_LIBDIR})
|
|
||||||
set(includedir ${CMAKE_INSTALL_FULL_INCLUDEDIR})
|
|
||||||
set(VERSION ${OPUS_LIBRARY_VERSION})
|
|
||||||
set(VERSION ${OPUS_LIBRARY_VERSION})
|
|
||||||
if(HAVE_LIBM)
|
|
||||||
set(LIBM "-lm")
|
|
||||||
endif()
|
|
||||||
configure_file(opus.pc.in opus.pc)
|
|
||||||
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/opus.pc
|
|
||||||
DESTINATION ${CMAKE_INSTALL_LIBDIR}/pkgconfig)
|
|
||||||
endif()
|
|
||||||
|
|
||||||
if(OPUS_INSTALL_CMAKE_CONFIG_MODULE)
|
|
||||||
set(CMAKE_INSTALL_PACKAGEDIR ${CMAKE_INSTALL_LIBDIR}/cmake/${PROJECT_NAME})
|
|
||||||
install(EXPORT OpusTargets
|
|
||||||
NAMESPACE Opus::
|
|
||||||
DESTINATION ${CMAKE_INSTALL_PACKAGEDIR})
|
|
||||||
|
|
||||||
include(CMakePackageConfigHelpers)
|
|
||||||
|
|
||||||
set(INCLUDE_INSTALL_DIR ${CMAKE_INSTALL_INCLUDEDIR})
|
|
||||||
configure_package_config_file(OpusConfig.cmake.in
|
|
||||||
OpusConfig.cmake
|
|
||||||
INSTALL_DESTINATION
|
|
||||||
${CMAKE_INSTALL_PACKAGEDIR}
|
|
||||||
PATH_VARS
|
|
||||||
INCLUDE_INSTALL_DIR
|
|
||||||
INSTALL_PREFIX
|
|
||||||
${CMAKE_INSTALL_PREFIX})
|
|
||||||
write_basic_package_version_file(OpusConfigVersion.cmake
|
|
||||||
VERSION ${PROJECT_VERSION}
|
|
||||||
COMPATIBILITY SameMajorVersion)
|
|
||||||
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/OpusConfig.cmake
|
|
||||||
${CMAKE_CURRENT_BINARY_DIR}/OpusConfigVersion.cmake
|
|
||||||
DESTINATION ${CMAKE_INSTALL_PACKAGEDIR})
|
|
||||||
endif()
|
|
||||||
|
|
||||||
if(OPUS_BUILD_PROGRAMS)
|
|
||||||
# demo
|
|
||||||
if(OPUS_CUSTOM_MODES)
|
|
||||||
add_executable(opus_custom_demo ${opus_custom_demo_sources})
|
|
||||||
target_include_directories(opus_custom_demo
|
|
||||||
PRIVATE ${CMAKE_CURRENT_BINARY_DIR})
|
|
||||||
target_link_libraries(opus_custom_demo PRIVATE opus)
|
|
||||||
endif()
|
|
||||||
|
|
||||||
add_executable(opus_demo ${opus_demo_sources})
|
|
||||||
target_include_directories(opus_demo PRIVATE ${CMAKE_CURRENT_BINARY_DIR})
|
|
||||||
target_include_directories(opus_demo PRIVATE silk) # debug.h
|
|
||||||
target_include_directories(opus_demo PRIVATE celt) # arch.h
|
|
||||||
target_link_libraries(opus_demo PRIVATE opus)
|
|
||||||
|
|
||||||
# compare
|
|
||||||
add_executable(opus_compare ${opus_compare_sources})
|
|
||||||
target_include_directories(opus_compare PRIVATE ${CMAKE_CURRENT_BINARY_DIR})
|
|
||||||
target_link_libraries(opus_compare PRIVATE opus)
|
|
||||||
endif()
|
|
||||||
|
|
||||||
if(BUILD_TESTING)
|
|
||||||
enable_testing()
|
|
||||||
|
|
||||||
# tests
|
|
||||||
add_executable(test_opus_decode ${test_opus_decode_sources})
|
|
||||||
target_include_directories(test_opus_decode
|
|
||||||
PRIVATE ${CMAKE_CURRENT_BINARY_DIR})
|
|
||||||
target_link_libraries(test_opus_decode PRIVATE opus)
|
|
||||||
if(OPUS_FIXED_POINT)
|
|
||||||
target_compile_definitions(test_opus_decode PRIVATE DISABLE_FLOAT_API)
|
|
||||||
endif()
|
|
||||||
add_test(test_opus_decode test_opus_decode)
|
|
||||||
|
|
||||||
add_executable(test_opus_padding ${test_opus_padding_sources})
|
|
||||||
target_include_directories(test_opus_padding
|
|
||||||
PRIVATE ${CMAKE_CURRENT_BINARY_DIR})
|
|
||||||
target_link_libraries(test_opus_padding PRIVATE opus)
|
|
||||||
add_test(test_opus_padding test_opus_padding)
|
|
||||||
|
|
||||||
if(NOT BUILD_SHARED_LIBS)
|
|
||||||
# disable tests that depends on private API when building shared lib
|
|
||||||
add_executable(test_opus_api ${test_opus_api_sources})
|
|
||||||
target_include_directories(test_opus_api
|
|
||||||
PRIVATE ${CMAKE_CURRENT_BINARY_DIR} celt)
|
|
||||||
target_link_libraries(test_opus_api PRIVATE opus)
|
|
||||||
if(OPUS_FIXED_POINT)
|
|
||||||
target_compile_definitions(test_opus_api PRIVATE DISABLE_FLOAT_API)
|
|
||||||
endif()
|
|
||||||
add_test(test_opus_api test_opus_api)
|
|
||||||
|
|
||||||
add_executable(test_opus_encode ${test_opus_encode_sources})
|
|
||||||
target_include_directories(test_opus_encode
|
|
||||||
PRIVATE ${CMAKE_CURRENT_BINARY_DIR} celt)
|
|
||||||
target_link_libraries(test_opus_encode PRIVATE opus)
|
|
||||||
add_test(test_opus_encode test_opus_encode)
|
|
||||||
endif()
|
|
||||||
endif()
|
|
44
node_modules/@discordjs/opus/deps/opus/COPYING
generated
vendored
44
node_modules/@discordjs/opus/deps/opus/COPYING
generated
vendored
@ -1,44 +0,0 @@
|
|||||||
Copyright 2001-2011 Xiph.Org, Skype Limited, Octasic,
|
|
||||||
Jean-Marc Valin, Timothy B. Terriberry,
|
|
||||||
CSIRO, Gregory Maxwell, Mark Borgerding,
|
|
||||||
Erik de Castro Lopo
|
|
||||||
|
|
||||||
Redistribution and use in source and binary forms, with or without
|
|
||||||
modification, are permitted provided that the following conditions
|
|
||||||
are met:
|
|
||||||
|
|
||||||
- Redistributions of source code must retain the above copyright
|
|
||||||
notice, this list of conditions and the following disclaimer.
|
|
||||||
|
|
||||||
- Redistributions in binary form must reproduce the above copyright
|
|
||||||
notice, this list of conditions and the following disclaimer in the
|
|
||||||
documentation and/or other materials provided with the distribution.
|
|
||||||
|
|
||||||
- Neither the name of Internet Society, IETF or IETF Trust, nor the
|
|
||||||
names of specific contributors, may be used to endorse or promote
|
|
||||||
products derived from this software without specific prior written
|
|
||||||
permission.
|
|
||||||
|
|
||||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
||||||
``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
||||||
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
||||||
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
|
|
||||||
OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
|
||||||
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
||||||
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
|
||||||
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
|
||||||
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
||||||
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
||||||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
||||||
|
|
||||||
Opus is subject to the royalty-free patent licenses which are
|
|
||||||
specified at:
|
|
||||||
|
|
||||||
Xiph.Org Foundation:
|
|
||||||
https://datatracker.ietf.org/ipr/1524/
|
|
||||||
|
|
||||||
Microsoft Corporation:
|
|
||||||
https://datatracker.ietf.org/ipr/1914/
|
|
||||||
|
|
||||||
Broadcom Corporation:
|
|
||||||
https://datatracker.ietf.org/ipr/1526/
|
|
0
node_modules/@discordjs/opus/deps/opus/ChangeLog
generated
vendored
0
node_modules/@discordjs/opus/deps/opus/ChangeLog
generated
vendored
368
node_modules/@discordjs/opus/deps/opus/INSTALL
generated
vendored
368
node_modules/@discordjs/opus/deps/opus/INSTALL
generated
vendored
@ -1,368 +0,0 @@
|
|||||||
Installation Instructions
|
|
||||||
*************************
|
|
||||||
|
|
||||||
Copyright (C) 1994-1996, 1999-2002, 2004-2016 Free Software
|
|
||||||
Foundation, Inc.
|
|
||||||
|
|
||||||
Copying and distribution of this file, with or without modification,
|
|
||||||
are permitted in any medium without royalty provided the copyright
|
|
||||||
notice and this notice are preserved. This file is offered as-is,
|
|
||||||
without warranty of any kind.
|
|
||||||
|
|
||||||
Basic Installation
|
|
||||||
==================
|
|
||||||
|
|
||||||
Briefly, the shell command './configure && make && make install'
|
|
||||||
should configure, build, and install this package. The following
|
|
||||||
more-detailed instructions are generic; see the 'README' file for
|
|
||||||
instructions specific to this package. Some packages provide this
|
|
||||||
'INSTALL' file but do not implement all of the features documented
|
|
||||||
below. The lack of an optional feature in a given package is not
|
|
||||||
necessarily a bug. More recommendations for GNU packages can be found
|
|
||||||
in *note Makefile Conventions: (standards)Makefile Conventions.
|
|
||||||
|
|
||||||
The 'configure' shell script attempts to guess correct values for
|
|
||||||
various system-dependent variables used during compilation. It uses
|
|
||||||
those values to create a 'Makefile' in each directory of the package.
|
|
||||||
It may also create one or more '.h' files containing system-dependent
|
|
||||||
definitions. Finally, it creates a shell script 'config.status' that
|
|
||||||
you can run in the future to recreate the current configuration, and a
|
|
||||||
file 'config.log' containing compiler output (useful mainly for
|
|
||||||
debugging 'configure').
|
|
||||||
|
|
||||||
It can also use an optional file (typically called 'config.cache' and
|
|
||||||
enabled with '--cache-file=config.cache' or simply '-C') that saves the
|
|
||||||
results of its tests to speed up reconfiguring. Caching is disabled by
|
|
||||||
default to prevent problems with accidental use of stale cache files.
|
|
||||||
|
|
||||||
If you need to do unusual things to compile the package, please try
|
|
||||||
to figure out how 'configure' could check whether to do them, and mail
|
|
||||||
diffs or instructions to the address given in the 'README' so they can
|
|
||||||
be considered for the next release. If you are using the cache, and at
|
|
||||||
some point 'config.cache' contains results you don't want to keep, you
|
|
||||||
may remove or edit it.
|
|
||||||
|
|
||||||
The file 'configure.ac' (or 'configure.in') is used to create
|
|
||||||
'configure' by a program called 'autoconf'. You need 'configure.ac' if
|
|
||||||
you want to change it or regenerate 'configure' using a newer version of
|
|
||||||
'autoconf'.
|
|
||||||
|
|
||||||
The simplest way to compile this package is:
|
|
||||||
|
|
||||||
1. 'cd' to the directory containing the package's source code and type
|
|
||||||
'./configure' to configure the package for your system.
|
|
||||||
|
|
||||||
Running 'configure' might take a while. While running, it prints
|
|
||||||
some messages telling which features it is checking for.
|
|
||||||
|
|
||||||
2. Type 'make' to compile the package.
|
|
||||||
|
|
||||||
3. Optionally, type 'make check' to run any self-tests that come with
|
|
||||||
the package, generally using the just-built uninstalled binaries.
|
|
||||||
|
|
||||||
4. Type 'make install' to install the programs and any data files and
|
|
||||||
documentation. When installing into a prefix owned by root, it is
|
|
||||||
recommended that the package be configured and built as a regular
|
|
||||||
user, and only the 'make install' phase executed with root
|
|
||||||
privileges.
|
|
||||||
|
|
||||||
5. Optionally, type 'make installcheck' to repeat any self-tests, but
|
|
||||||
this time using the binaries in their final installed location.
|
|
||||||
This target does not install anything. Running this target as a
|
|
||||||
regular user, particularly if the prior 'make install' required
|
|
||||||
root privileges, verifies that the installation completed
|
|
||||||
correctly.
|
|
||||||
|
|
||||||
6. You can remove the program binaries and object files from the
|
|
||||||
source code directory by typing 'make clean'. To also remove the
|
|
||||||
files that 'configure' created (so you can compile the package for
|
|
||||||
a different kind of computer), type 'make distclean'. There is
|
|
||||||
also a 'make maintainer-clean' target, but that is intended mainly
|
|
||||||
for the package's developers. If you use it, you may have to get
|
|
||||||
all sorts of other programs in order to regenerate files that came
|
|
||||||
with the distribution.
|
|
||||||
|
|
||||||
7. Often, you can also type 'make uninstall' to remove the installed
|
|
||||||
files again. In practice, not all packages have tested that
|
|
||||||
uninstallation works correctly, even though it is required by the
|
|
||||||
GNU Coding Standards.
|
|
||||||
|
|
||||||
8. Some packages, particularly those that use Automake, provide 'make
|
|
||||||
distcheck', which can by used by developers to test that all other
|
|
||||||
targets like 'make install' and 'make uninstall' work correctly.
|
|
||||||
This target is generally not run by end users.
|
|
||||||
|
|
||||||
Compilers and Options
|
|
||||||
=====================
|
|
||||||
|
|
||||||
Some systems require unusual options for compilation or linking that
|
|
||||||
the 'configure' script does not know about. Run './configure --help'
|
|
||||||
for details on some of the pertinent environment variables.
|
|
||||||
|
|
||||||
You can give 'configure' initial values for configuration parameters
|
|
||||||
by setting variables in the command line or in the environment. Here is
|
|
||||||
an example:
|
|
||||||
|
|
||||||
./configure CC=c99 CFLAGS=-g LIBS=-lposix
|
|
||||||
|
|
||||||
*Note Defining Variables::, for more details.
|
|
||||||
|
|
||||||
Compiling For Multiple Architectures
|
|
||||||
====================================
|
|
||||||
|
|
||||||
You can compile the package for more than one kind of computer at the
|
|
||||||
same time, by placing the object files for each architecture in their
|
|
||||||
own directory. To do this, you can use GNU 'make'. 'cd' to the
|
|
||||||
directory where you want the object files and executables to go and run
|
|
||||||
the 'configure' script. 'configure' automatically checks for the source
|
|
||||||
code in the directory that 'configure' is in and in '..'. This is known
|
|
||||||
as a "VPATH" build.
|
|
||||||
|
|
||||||
With a non-GNU 'make', it is safer to compile the package for one
|
|
||||||
architecture at a time in the source code directory. After you have
|
|
||||||
installed the package for one architecture, use 'make distclean' before
|
|
||||||
reconfiguring for another architecture.
|
|
||||||
|
|
||||||
On MacOS X 10.5 and later systems, you can create libraries and
|
|
||||||
executables that work on multiple system types--known as "fat" or
|
|
||||||
"universal" binaries--by specifying multiple '-arch' options to the
|
|
||||||
compiler but only a single '-arch' option to the preprocessor. Like
|
|
||||||
this:
|
|
||||||
|
|
||||||
./configure CC="gcc -arch i386 -arch x86_64 -arch ppc -arch ppc64" \
|
|
||||||
CXX="g++ -arch i386 -arch x86_64 -arch ppc -arch ppc64" \
|
|
||||||
CPP="gcc -E" CXXCPP="g++ -E"
|
|
||||||
|
|
||||||
This is not guaranteed to produce working output in all cases, you
|
|
||||||
may have to build one architecture at a time and combine the results
|
|
||||||
using the 'lipo' tool if you have problems.
|
|
||||||
|
|
||||||
Installation Names
|
|
||||||
==================
|
|
||||||
|
|
||||||
By default, 'make install' installs the package's commands under
|
|
||||||
'/usr/local/bin', include files under '/usr/local/include', etc. You
|
|
||||||
can specify an installation prefix other than '/usr/local' by giving
|
|
||||||
'configure' the option '--prefix=PREFIX', where PREFIX must be an
|
|
||||||
absolute file name.
|
|
||||||
|
|
||||||
You can specify separate installation prefixes for
|
|
||||||
architecture-specific files and architecture-independent files. If you
|
|
||||||
pass the option '--exec-prefix=PREFIX' to 'configure', the package uses
|
|
||||||
PREFIX as the prefix for installing programs and libraries.
|
|
||||||
Documentation and other data files still use the regular prefix.
|
|
||||||
|
|
||||||
In addition, if you use an unusual directory layout you can give
|
|
||||||
options like '--bindir=DIR' to specify different values for particular
|
|
||||||
kinds of files. Run 'configure --help' for a list of the directories
|
|
||||||
you can set and what kinds of files go in them. In general, the default
|
|
||||||
for these options is expressed in terms of '${prefix}', so that
|
|
||||||
specifying just '--prefix' will affect all of the other directory
|
|
||||||
specifications that were not explicitly provided.
|
|
||||||
|
|
||||||
The most portable way to affect installation locations is to pass the
|
|
||||||
correct locations to 'configure'; however, many packages provide one or
|
|
||||||
both of the following shortcuts of passing variable assignments to the
|
|
||||||
'make install' command line to change installation locations without
|
|
||||||
having to reconfigure or recompile.
|
|
||||||
|
|
||||||
The first method involves providing an override variable for each
|
|
||||||
affected directory. For example, 'make install
|
|
||||||
prefix=/alternate/directory' will choose an alternate location for all
|
|
||||||
directory configuration variables that were expressed in terms of
|
|
||||||
'${prefix}'. Any directories that were specified during 'configure',
|
|
||||||
but not in terms of '${prefix}', must each be overridden at install time
|
|
||||||
for the entire installation to be relocated. The approach of makefile
|
|
||||||
variable overrides for each directory variable is required by the GNU
|
|
||||||
Coding Standards, and ideally causes no recompilation. However, some
|
|
||||||
platforms have known limitations with the semantics of shared libraries
|
|
||||||
that end up requiring recompilation when using this method, particularly
|
|
||||||
noticeable in packages that use GNU Libtool.
|
|
||||||
|
|
||||||
The second method involves providing the 'DESTDIR' variable. For
|
|
||||||
example, 'make install DESTDIR=/alternate/directory' will prepend
|
|
||||||
'/alternate/directory' before all installation names. The approach of
|
|
||||||
'DESTDIR' overrides is not required by the GNU Coding Standards, and
|
|
||||||
does not work on platforms that have drive letters. On the other hand,
|
|
||||||
it does better at avoiding recompilation issues, and works well even
|
|
||||||
when some directory options were not specified in terms of '${prefix}'
|
|
||||||
at 'configure' time.
|
|
||||||
|
|
||||||
Optional Features
|
|
||||||
=================
|
|
||||||
|
|
||||||
If the package supports it, you can cause programs to be installed
|
|
||||||
with an extra prefix or suffix on their names by giving 'configure' the
|
|
||||||
option '--program-prefix=PREFIX' or '--program-suffix=SUFFIX'.
|
|
||||||
|
|
||||||
Some packages pay attention to '--enable-FEATURE' options to
|
|
||||||
'configure', where FEATURE indicates an optional part of the package.
|
|
||||||
They may also pay attention to '--with-PACKAGE' options, where PACKAGE
|
|
||||||
is something like 'gnu-as' or 'x' (for the X Window System). The
|
|
||||||
'README' should mention any '--enable-' and '--with-' options that the
|
|
||||||
package recognizes.
|
|
||||||
|
|
||||||
For packages that use the X Window System, 'configure' can usually
|
|
||||||
find the X include and library files automatically, but if it doesn't,
|
|
||||||
you can use the 'configure' options '--x-includes=DIR' and
|
|
||||||
'--x-libraries=DIR' to specify their locations.
|
|
||||||
|
|
||||||
Some packages offer the ability to configure how verbose the
|
|
||||||
execution of 'make' will be. For these packages, running './configure
|
|
||||||
--enable-silent-rules' sets the default to minimal output, which can be
|
|
||||||
overridden with 'make V=1'; while running './configure
|
|
||||||
--disable-silent-rules' sets the default to verbose, which can be
|
|
||||||
overridden with 'make V=0'.
|
|
||||||
|
|
||||||
Particular systems
|
|
||||||
==================
|
|
||||||
|
|
||||||
On HP-UX, the default C compiler is not ANSI C compatible. If GNU CC
|
|
||||||
is not installed, it is recommended to use the following options in
|
|
||||||
order to use an ANSI C compiler:
|
|
||||||
|
|
||||||
./configure CC="cc -Ae -D_XOPEN_SOURCE=500"
|
|
||||||
|
|
||||||
and if that doesn't work, install pre-built binaries of GCC for HP-UX.
|
|
||||||
|
|
||||||
HP-UX 'make' updates targets which have the same time stamps as their
|
|
||||||
prerequisites, which makes it generally unusable when shipped generated
|
|
||||||
files such as 'configure' are involved. Use GNU 'make' instead.
|
|
||||||
|
|
||||||
On OSF/1 a.k.a. Tru64, some versions of the default C compiler cannot
|
|
||||||
parse its '<wchar.h>' header file. The option '-nodtk' can be used as a
|
|
||||||
workaround. If GNU CC is not installed, it is therefore recommended to
|
|
||||||
try
|
|
||||||
|
|
||||||
./configure CC="cc"
|
|
||||||
|
|
||||||
and if that doesn't work, try
|
|
||||||
|
|
||||||
./configure CC="cc -nodtk"
|
|
||||||
|
|
||||||
On Solaris, don't put '/usr/ucb' early in your 'PATH'. This
|
|
||||||
directory contains several dysfunctional programs; working variants of
|
|
||||||
these programs are available in '/usr/bin'. So, if you need '/usr/ucb'
|
|
||||||
in your 'PATH', put it _after_ '/usr/bin'.
|
|
||||||
|
|
||||||
On Haiku, software installed for all users goes in '/boot/common',
|
|
||||||
not '/usr/local'. It is recommended to use the following options:
|
|
||||||
|
|
||||||
./configure --prefix=/boot/common
|
|
||||||
|
|
||||||
Specifying the System Type
|
|
||||||
==========================
|
|
||||||
|
|
||||||
There may be some features 'configure' cannot figure out
|
|
||||||
automatically, but needs to determine by the type of machine the package
|
|
||||||
will run on. Usually, assuming the package is built to be run on the
|
|
||||||
_same_ architectures, 'configure' can figure that out, but if it prints
|
|
||||||
a message saying it cannot guess the machine type, give it the
|
|
||||||
'--build=TYPE' option. TYPE can either be a short name for the system
|
|
||||||
type, such as 'sun4', or a canonical name which has the form:
|
|
||||||
|
|
||||||
CPU-COMPANY-SYSTEM
|
|
||||||
|
|
||||||
where SYSTEM can have one of these forms:
|
|
||||||
|
|
||||||
OS
|
|
||||||
KERNEL-OS
|
|
||||||
|
|
||||||
See the file 'config.sub' for the possible values of each field. If
|
|
||||||
'config.sub' isn't included in this package, then this package doesn't
|
|
||||||
need to know the machine type.
|
|
||||||
|
|
||||||
If you are _building_ compiler tools for cross-compiling, you should
|
|
||||||
use the option '--target=TYPE' to select the type of system they will
|
|
||||||
produce code for.
|
|
||||||
|
|
||||||
If you want to _use_ a cross compiler, that generates code for a
|
|
||||||
platform different from the build platform, you should specify the
|
|
||||||
"host" platform (i.e., that on which the generated programs will
|
|
||||||
eventually be run) with '--host=TYPE'.
|
|
||||||
|
|
||||||
Sharing Defaults
|
|
||||||
================
|
|
||||||
|
|
||||||
If you want to set default values for 'configure' scripts to share,
|
|
||||||
you can create a site shell script called 'config.site' that gives
|
|
||||||
default values for variables like 'CC', 'cache_file', and 'prefix'.
|
|
||||||
'configure' looks for 'PREFIX/share/config.site' if it exists, then
|
|
||||||
'PREFIX/etc/config.site' if it exists. Or, you can set the
|
|
||||||
'CONFIG_SITE' environment variable to the location of the site script.
|
|
||||||
A warning: not all 'configure' scripts look for a site script.
|
|
||||||
|
|
||||||
Defining Variables
|
|
||||||
==================
|
|
||||||
|
|
||||||
Variables not defined in a site shell script can be set in the
|
|
||||||
environment passed to 'configure'. However, some packages may run
|
|
||||||
configure again during the build, and the customized values of these
|
|
||||||
variables may be lost. In order to avoid this problem, you should set
|
|
||||||
them in the 'configure' command line, using 'VAR=value'. For example:
|
|
||||||
|
|
||||||
./configure CC=/usr/local2/bin/gcc
|
|
||||||
|
|
||||||
causes the specified 'gcc' to be used as the C compiler (unless it is
|
|
||||||
overridden in the site shell script).
|
|
||||||
|
|
||||||
Unfortunately, this technique does not work for 'CONFIG_SHELL' due to an
|
|
||||||
Autoconf limitation. Until the limitation is lifted, you can use this
|
|
||||||
workaround:
|
|
||||||
|
|
||||||
CONFIG_SHELL=/bin/bash ./configure CONFIG_SHELL=/bin/bash
|
|
||||||
|
|
||||||
'configure' Invocation
|
|
||||||
======================
|
|
||||||
|
|
||||||
'configure' recognizes the following options to control how it
|
|
||||||
operates.
|
|
||||||
|
|
||||||
'--help'
|
|
||||||
'-h'
|
|
||||||
Print a summary of all of the options to 'configure', and exit.
|
|
||||||
|
|
||||||
'--help=short'
|
|
||||||
'--help=recursive'
|
|
||||||
Print a summary of the options unique to this package's
|
|
||||||
'configure', and exit. The 'short' variant lists options used only
|
|
||||||
in the top level, while the 'recursive' variant lists options also
|
|
||||||
present in any nested packages.
|
|
||||||
|
|
||||||
'--version'
|
|
||||||
'-V'
|
|
||||||
Print the version of Autoconf used to generate the 'configure'
|
|
||||||
script, and exit.
|
|
||||||
|
|
||||||
'--cache-file=FILE'
|
|
||||||
Enable the cache: use and save the results of the tests in FILE,
|
|
||||||
traditionally 'config.cache'. FILE defaults to '/dev/null' to
|
|
||||||
disable caching.
|
|
||||||
|
|
||||||
'--config-cache'
|
|
||||||
'-C'
|
|
||||||
Alias for '--cache-file=config.cache'.
|
|
||||||
|
|
||||||
'--quiet'
|
|
||||||
'--silent'
|
|
||||||
'-q'
|
|
||||||
Do not print messages saying which checks are being made. To
|
|
||||||
suppress all normal output, redirect it to '/dev/null' (any error
|
|
||||||
messages will still be shown).
|
|
||||||
|
|
||||||
'--srcdir=DIR'
|
|
||||||
Look for the package's source code in directory DIR. Usually
|
|
||||||
'configure' can determine that directory automatically.
|
|
||||||
|
|
||||||
'--prefix=DIR'
|
|
||||||
Use DIR as the installation prefix. *note Installation Names:: for
|
|
||||||
more details, including other options available for fine-tuning the
|
|
||||||
installation locations.
|
|
||||||
|
|
||||||
'--no-create'
|
|
||||||
'-n'
|
|
||||||
Run the configure checks, but stop before creating any output
|
|
||||||
files.
|
|
||||||
|
|
||||||
'configure' also accepts some other, not widely useful, options. Run
|
|
||||||
'configure --help' for more details.
|
|
351
node_modules/@discordjs/opus/deps/opus/Makefile.am
generated
vendored
351
node_modules/@discordjs/opus/deps/opus/Makefile.am
generated
vendored
@ -1,351 +0,0 @@
|
|||||||
# Provide the full test output for failed tests when using the parallel
|
|
||||||
# test suite (which is enabled by default with automake 1.13+).
|
|
||||||
export VERBOSE = yes
|
|
||||||
|
|
||||||
AUTOMAKE_OPTIONS = subdir-objects
|
|
||||||
ACLOCAL_AMFLAGS = -I m4
|
|
||||||
|
|
||||||
lib_LTLIBRARIES = libopus.la
|
|
||||||
|
|
||||||
DIST_SUBDIRS = doc
|
|
||||||
|
|
||||||
AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_srcdir)/celt -I$(top_srcdir)/silk \
|
|
||||||
-I$(top_srcdir)/silk/float -I$(top_srcdir)/silk/fixed $(NE10_CFLAGS)
|
|
||||||
|
|
||||||
include celt_sources.mk
|
|
||||||
include silk_sources.mk
|
|
||||||
include opus_sources.mk
|
|
||||||
|
|
||||||
if FIXED_POINT
|
|
||||||
SILK_SOURCES += $(SILK_SOURCES_FIXED)
|
|
||||||
if HAVE_SSE4_1
|
|
||||||
SILK_SOURCES += $(SILK_SOURCES_SSE4_1) $(SILK_SOURCES_FIXED_SSE4_1)
|
|
||||||
endif
|
|
||||||
if HAVE_ARM_NEON_INTR
|
|
||||||
SILK_SOURCES += $(SILK_SOURCES_FIXED_ARM_NEON_INTR)
|
|
||||||
endif
|
|
||||||
else
|
|
||||||
SILK_SOURCES += $(SILK_SOURCES_FLOAT)
|
|
||||||
if HAVE_SSE4_1
|
|
||||||
SILK_SOURCES += $(SILK_SOURCES_SSE4_1)
|
|
||||||
endif
|
|
||||||
endif
|
|
||||||
|
|
||||||
if DISABLE_FLOAT_API
|
|
||||||
else
|
|
||||||
OPUS_SOURCES += $(OPUS_SOURCES_FLOAT)
|
|
||||||
endif
|
|
||||||
|
|
||||||
if HAVE_SSE
|
|
||||||
CELT_SOURCES += $(CELT_SOURCES_SSE)
|
|
||||||
endif
|
|
||||||
if HAVE_SSE2
|
|
||||||
CELT_SOURCES += $(CELT_SOURCES_SSE2)
|
|
||||||
endif
|
|
||||||
if HAVE_SSE4_1
|
|
||||||
CELT_SOURCES += $(CELT_SOURCES_SSE4_1)
|
|
||||||
endif
|
|
||||||
|
|
||||||
if CPU_ARM
|
|
||||||
CELT_SOURCES += $(CELT_SOURCES_ARM)
|
|
||||||
SILK_SOURCES += $(SILK_SOURCES_ARM)
|
|
||||||
|
|
||||||
if HAVE_ARM_NEON_INTR
|
|
||||||
CELT_SOURCES += $(CELT_SOURCES_ARM_NEON_INTR)
|
|
||||||
SILK_SOURCES += $(SILK_SOURCES_ARM_NEON_INTR)
|
|
||||||
endif
|
|
||||||
|
|
||||||
if HAVE_ARM_NE10
|
|
||||||
CELT_SOURCES += $(CELT_SOURCES_ARM_NE10)
|
|
||||||
endif
|
|
||||||
|
|
||||||
if OPUS_ARM_EXTERNAL_ASM
|
|
||||||
noinst_LTLIBRARIES = libarmasm.la
|
|
||||||
libarmasm_la_SOURCES = $(CELT_SOURCES_ARM_ASM:.s=-gnu.S)
|
|
||||||
BUILT_SOURCES = $(CELT_SOURCES_ARM_ASM:.s=-gnu.S) \
|
|
||||||
$(CELT_AM_SOURCES_ARM_ASM:.s.in=.s) \
|
|
||||||
$(CELT_AM_SOURCES_ARM_ASM:.s.in=-gnu.S)
|
|
||||||
endif
|
|
||||||
endif
|
|
||||||
|
|
||||||
CLEANFILES = $(CELT_SOURCES_ARM_ASM:.s=-gnu.S) \
|
|
||||||
$(CELT_AM_SOURCES_ARM_ASM:.s.in=-gnu.S)
|
|
||||||
|
|
||||||
include celt_headers.mk
|
|
||||||
include silk_headers.mk
|
|
||||||
include opus_headers.mk
|
|
||||||
|
|
||||||
libopus_la_SOURCES = $(CELT_SOURCES) $(SILK_SOURCES) $(OPUS_SOURCES)
|
|
||||||
libopus_la_LDFLAGS = -no-undefined -version-info @OPUS_LT_CURRENT@:@OPUS_LT_REVISION@:@OPUS_LT_AGE@
|
|
||||||
libopus_la_LIBADD = $(NE10_LIBS) $(LIBM)
|
|
||||||
if OPUS_ARM_EXTERNAL_ASM
|
|
||||||
libopus_la_LIBADD += libarmasm.la
|
|
||||||
endif
|
|
||||||
|
|
||||||
pkginclude_HEADERS = include/opus.h include/opus_multistream.h include/opus_types.h include/opus_defines.h include/opus_projection.h
|
|
||||||
|
|
||||||
noinst_HEADERS = $(OPUS_HEAD) $(SILK_HEAD) $(CELT_HEAD)
|
|
||||||
|
|
||||||
if EXTRA_PROGRAMS
|
|
||||||
noinst_PROGRAMS = 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 \
|
|
||||||
opus_compare \
|
|
||||||
opus_demo \
|
|
||||||
repacketizer_demo \
|
|
||||||
silk/tests/test_unit_LPC_inv_pred_gain \
|
|
||||||
tests/test_opus_api \
|
|
||||||
tests/test_opus_decode \
|
|
||||||
tests/test_opus_encode \
|
|
||||||
tests/test_opus_padding \
|
|
||||||
tests/test_opus_projection
|
|
||||||
|
|
||||||
TESTS = 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 \
|
|
||||||
silk/tests/test_unit_LPC_inv_pred_gain \
|
|
||||||
tests/test_opus_api \
|
|
||||||
tests/test_opus_decode \
|
|
||||||
tests/test_opus_encode \
|
|
||||||
tests/test_opus_padding \
|
|
||||||
tests/test_opus_projection
|
|
||||||
|
|
||||||
opus_demo_SOURCES = src/opus_demo.c
|
|
||||||
|
|
||||||
opus_demo_LDADD = libopus.la $(NE10_LIBS) $(LIBM)
|
|
||||||
|
|
||||||
repacketizer_demo_SOURCES = src/repacketizer_demo.c
|
|
||||||
|
|
||||||
repacketizer_demo_LDADD = libopus.la $(NE10_LIBS) $(LIBM)
|
|
||||||
|
|
||||||
opus_compare_SOURCES = src/opus_compare.c
|
|
||||||
opus_compare_LDADD = $(LIBM)
|
|
||||||
|
|
||||||
tests_test_opus_api_SOURCES = tests/test_opus_api.c tests/test_opus_common.h
|
|
||||||
tests_test_opus_api_LDADD = libopus.la $(NE10_LIBS) $(LIBM)
|
|
||||||
|
|
||||||
tests_test_opus_encode_SOURCES = tests/test_opus_encode.c tests/opus_encode_regressions.c tests/test_opus_common.h
|
|
||||||
tests_test_opus_encode_LDADD = libopus.la $(NE10_LIBS) $(LIBM)
|
|
||||||
|
|
||||||
tests_test_opus_decode_SOURCES = tests/test_opus_decode.c tests/test_opus_common.h
|
|
||||||
tests_test_opus_decode_LDADD = libopus.la $(NE10_LIBS) $(LIBM)
|
|
||||||
|
|
||||||
tests_test_opus_padding_SOURCES = tests/test_opus_padding.c tests/test_opus_common.h
|
|
||||||
tests_test_opus_padding_LDADD = libopus.la $(NE10_LIBS) $(LIBM)
|
|
||||||
|
|
||||||
CELT_OBJ = $(CELT_SOURCES:.c=.lo)
|
|
||||||
SILK_OBJ = $(SILK_SOURCES:.c=.lo)
|
|
||||||
OPUS_OBJ = $(OPUS_SOURCES:.c=.lo)
|
|
||||||
|
|
||||||
tests_test_opus_projection_SOURCES = tests/test_opus_projection.c tests/test_opus_common.h
|
|
||||||
tests_test_opus_projection_LDADD = $(OPUS_OBJ) $(SILK_OBJ) $(CELT_OBJ) $(NE10_LIBS) $(LIBM)
|
|
||||||
if OPUS_ARM_EXTERNAL_ASM
|
|
||||||
tests_test_opus_projection_LDADD += libarmasm.la
|
|
||||||
endif
|
|
||||||
|
|
||||||
silk_tests_test_unit_LPC_inv_pred_gain_SOURCES = silk/tests/test_unit_LPC_inv_pred_gain.c
|
|
||||||
silk_tests_test_unit_LPC_inv_pred_gain_LDADD = $(SILK_OBJ) $(CELT_OBJ) $(NE10_LIBS) $(LIBM)
|
|
||||||
if OPUS_ARM_EXTERNAL_ASM
|
|
||||||
silk_tests_test_unit_LPC_inv_pred_gain_LDADD += libarmasm.la
|
|
||||||
endif
|
|
||||||
|
|
||||||
celt_tests_test_unit_cwrs32_SOURCES = celt/tests/test_unit_cwrs32.c
|
|
||||||
celt_tests_test_unit_cwrs32_LDADD = $(LIBM)
|
|
||||||
|
|
||||||
celt_tests_test_unit_dft_SOURCES = celt/tests/test_unit_dft.c
|
|
||||||
celt_tests_test_unit_dft_LDADD = $(CELT_OBJ) $(NE10_LIBS) $(LIBM)
|
|
||||||
if OPUS_ARM_EXTERNAL_ASM
|
|
||||||
celt_tests_test_unit_dft_LDADD += libarmasm.la
|
|
||||||
endif
|
|
||||||
|
|
||||||
celt_tests_test_unit_entropy_SOURCES = celt/tests/test_unit_entropy.c
|
|
||||||
celt_tests_test_unit_entropy_LDADD = $(LIBM)
|
|
||||||
|
|
||||||
celt_tests_test_unit_laplace_SOURCES = celt/tests/test_unit_laplace.c
|
|
||||||
celt_tests_test_unit_laplace_LDADD = $(LIBM)
|
|
||||||
|
|
||||||
celt_tests_test_unit_mathops_SOURCES = celt/tests/test_unit_mathops.c
|
|
||||||
celt_tests_test_unit_mathops_LDADD = $(CELT_OBJ) $(NE10_LIBS) $(LIBM)
|
|
||||||
if OPUS_ARM_EXTERNAL_ASM
|
|
||||||
celt_tests_test_unit_mathops_LDADD += libarmasm.la
|
|
||||||
endif
|
|
||||||
|
|
||||||
celt_tests_test_unit_mdct_SOURCES = celt/tests/test_unit_mdct.c
|
|
||||||
celt_tests_test_unit_mdct_LDADD = $(CELT_OBJ) $(NE10_LIBS) $(LIBM)
|
|
||||||
if OPUS_ARM_EXTERNAL_ASM
|
|
||||||
celt_tests_test_unit_mdct_LDADD += libarmasm.la
|
|
||||||
endif
|
|
||||||
|
|
||||||
celt_tests_test_unit_rotation_SOURCES = celt/tests/test_unit_rotation.c
|
|
||||||
celt_tests_test_unit_rotation_LDADD = $(CELT_OBJ) $(NE10_LIBS) $(LIBM)
|
|
||||||
if OPUS_ARM_EXTERNAL_ASM
|
|
||||||
celt_tests_test_unit_rotation_LDADD += libarmasm.la
|
|
||||||
endif
|
|
||||||
|
|
||||||
celt_tests_test_unit_types_SOURCES = celt/tests/test_unit_types.c
|
|
||||||
celt_tests_test_unit_types_LDADD = $(LIBM)
|
|
||||||
endif
|
|
||||||
|
|
||||||
if CUSTOM_MODES
|
|
||||||
pkginclude_HEADERS += include/opus_custom.h
|
|
||||||
if EXTRA_PROGRAMS
|
|
||||||
noinst_PROGRAMS += opus_custom_demo
|
|
||||||
opus_custom_demo_SOURCES = celt/opus_custom_demo.c
|
|
||||||
opus_custom_demo_LDADD = libopus.la $(LIBM)
|
|
||||||
endif
|
|
||||||
endif
|
|
||||||
|
|
||||||
EXTRA_DIST = opus.pc.in \
|
|
||||||
opus-uninstalled.pc.in \
|
|
||||||
opus.m4 \
|
|
||||||
Makefile.mips \
|
|
||||||
Makefile.unix \
|
|
||||||
CMakeLists.txt \
|
|
||||||
config.h.cmake.in \
|
|
||||||
opus_config.cmake \
|
|
||||||
opus_functions.cmake \
|
|
||||||
opus_sources.cmake \
|
|
||||||
OpusConfig.cmake.in \
|
|
||||||
tests/run_vectors.sh \
|
|
||||||
celt/arm/arm2gnu.pl \
|
|
||||||
celt/arm/celt_pitch_xcorr_arm.s \
|
|
||||||
win32/VS2015/opus.vcxproj \
|
|
||||||
win32/VS2015/test_opus_encode.vcxproj.filters \
|
|
||||||
win32/VS2015/test_opus_encode.vcxproj \
|
|
||||||
win32/VS2015/opus_demo.vcxproj \
|
|
||||||
win32/VS2015/test_opus_api.vcxproj.filters \
|
|
||||||
win32/VS2015/test_opus_api.vcxproj \
|
|
||||||
win32/VS2015/test_opus_decode.vcxproj.filters \
|
|
||||||
win32/VS2015/opus_demo.vcxproj.filters \
|
|
||||||
win32/VS2015/opus.vcxproj.filters \
|
|
||||||
win32/VS2015/test_opus_decode.vcxproj \
|
|
||||||
win32/VS2015/opus.sln \
|
|
||||||
win32/VS2015/common.props \
|
|
||||||
win32/genversion.bat \
|
|
||||||
win32/config.h
|
|
||||||
|
|
||||||
pkgconfigdir = $(libdir)/pkgconfig
|
|
||||||
pkgconfig_DATA = opus.pc
|
|
||||||
|
|
||||||
m4datadir = $(datadir)/aclocal
|
|
||||||
m4data_DATA = opus.m4
|
|
||||||
|
|
||||||
# Targets to build and install just the library without the docs
|
|
||||||
opus check-opus install-opus: export NO_DOXYGEN = 1
|
|
||||||
|
|
||||||
opus: all
|
|
||||||
check-opus: check
|
|
||||||
install-opus: install
|
|
||||||
|
|
||||||
|
|
||||||
# Or just the docs
|
|
||||||
docs:
|
|
||||||
( cd doc && $(MAKE) $(AM_MAKEFLAGS) )
|
|
||||||
|
|
||||||
install-docs:
|
|
||||||
( cd doc && $(MAKE) $(AM_MAKEFLAGS) install )
|
|
||||||
|
|
||||||
|
|
||||||
# Or everything (by default)
|
|
||||||
all-local:
|
|
||||||
@[ -n "$(NO_DOXYGEN)" ] || ( cd doc && $(MAKE) $(AM_MAKEFLAGS) )
|
|
||||||
|
|
||||||
install-data-local:
|
|
||||||
@[ -n "$(NO_DOXYGEN)" ] || ( cd doc && $(MAKE) $(AM_MAKEFLAGS) install )
|
|
||||||
|
|
||||||
clean-local:
|
|
||||||
-( cd doc && $(MAKE) $(AM_MAKEFLAGS) clean )
|
|
||||||
|
|
||||||
uninstall-local:
|
|
||||||
( cd doc && $(MAKE) $(AM_MAKEFLAGS) uninstall )
|
|
||||||
|
|
||||||
|
|
||||||
# We check this every time make is run, with configure.ac being touched to
|
|
||||||
# trigger an update of the build system files if update_version changes the
|
|
||||||
# current PACKAGE_VERSION (or if package_version was modified manually by a
|
|
||||||
# user with either AUTO_UPDATE=no or no update_version script present - the
|
|
||||||
# latter being the normal case for tarball releases).
|
|
||||||
#
|
|
||||||
# We can't just add the package_version file to CONFIGURE_DEPENDENCIES since
|
|
||||||
# simply running autoconf will not actually regenerate configure for us when
|
|
||||||
# the content of that file changes (due to autoconf dependency checking not
|
|
||||||
# knowing about that without us creating yet another file for it to include).
|
|
||||||
#
|
|
||||||
# The MAKECMDGOALS check is a gnu-make'ism, but will degrade 'gracefully' for
|
|
||||||
# makes that don't support it. The only loss of functionality is not forcing
|
|
||||||
# an update of package_version for `make dist` if AUTO_UPDATE=no, but that is
|
|
||||||
# unlikely to be a real problem for any real user.
|
|
||||||
$(top_srcdir)/configure.ac: force
|
|
||||||
@case "$(MAKECMDGOALS)" in \
|
|
||||||
dist-hook) exit 0 ;; \
|
|
||||||
dist-* | dist | distcheck | distclean) _arg=release ;; \
|
|
||||||
esac; \
|
|
||||||
if ! $(top_srcdir)/update_version $$_arg 2> /dev/null; then \
|
|
||||||
if [ ! -e $(top_srcdir)/package_version ]; then \
|
|
||||||
echo 'PACKAGE_VERSION="unknown"' > $(top_srcdir)/package_version; \
|
|
||||||
fi; \
|
|
||||||
. $(top_srcdir)/package_version || exit 1; \
|
|
||||||
[ "$(PACKAGE_VERSION)" != "$$PACKAGE_VERSION" ] || exit 0; \
|
|
||||||
fi; \
|
|
||||||
touch $@
|
|
||||||
|
|
||||||
force:
|
|
||||||
|
|
||||||
# Create a minimal package_version file when make dist is run.
|
|
||||||
dist-hook:
|
|
||||||
echo 'PACKAGE_VERSION="$(PACKAGE_VERSION)"' > $(top_distdir)/package_version
|
|
||||||
|
|
||||||
|
|
||||||
.PHONY: opus check-opus install-opus docs install-docs
|
|
||||||
|
|
||||||
# automake doesn't do dependency tracking for asm files, that I can tell
|
|
||||||
$(CELT_SOURCES_ARM_ASM:%.s=%-gnu.S): celt/arm/armopts-gnu.S
|
|
||||||
$(CELT_SOURCES_ARM_ASM:%.s=%-gnu.S): $(top_srcdir)/celt/arm/arm2gnu.pl
|
|
||||||
|
|
||||||
# convert ARM asm to GNU as format
|
|
||||||
%-gnu.S: $(top_srcdir)/%.s
|
|
||||||
$(top_srcdir)/celt/arm/arm2gnu.pl @ARM2GNU_PARAMS@ < $< > $@
|
|
||||||
# For autoconf-modified sources (e.g., armopts.s)
|
|
||||||
%-gnu.S: %.s
|
|
||||||
$(top_srcdir)/celt/arm/arm2gnu.pl @ARM2GNU_PARAMS@ < $< > $@
|
|
||||||
|
|
||||||
OPT_UNIT_TEST_OBJ = $(celt_tests_test_unit_mathops_SOURCES:.c=.o) \
|
|
||||||
$(celt_tests_test_unit_rotation_SOURCES:.c=.o) \
|
|
||||||
$(celt_tests_test_unit_mdct_SOURCES:.c=.o) \
|
|
||||||
$(celt_tests_test_unit_dft_SOURCES:.c=.o) \
|
|
||||||
$(silk_tests_test_unit_LPC_inv_pred_gain_SOURCES:.c=.o)
|
|
||||||
|
|
||||||
if HAVE_SSE
|
|
||||||
SSE_OBJ = $(CELT_SOURCES_SSE:.c=.lo)
|
|
||||||
$(SSE_OBJ): CFLAGS += $(OPUS_X86_SSE_CFLAGS)
|
|
||||||
endif
|
|
||||||
|
|
||||||
if HAVE_SSE2
|
|
||||||
SSE2_OBJ = $(CELT_SOURCES_SSE2:.c=.lo)
|
|
||||||
$(SSE2_OBJ): CFLAGS += $(OPUS_X86_SSE2_CFLAGS)
|
|
||||||
endif
|
|
||||||
|
|
||||||
if HAVE_SSE4_1
|
|
||||||
SSE4_1_OBJ = $(CELT_SOURCES_SSE4_1:.c=.lo) \
|
|
||||||
$(SILK_SOURCES_SSE4_1:.c=.lo) \
|
|
||||||
$(SILK_SOURCES_FIXED_SSE4_1:.c=.lo)
|
|
||||||
$(SSE4_1_OBJ): CFLAGS += $(OPUS_X86_SSE4_1_CFLAGS)
|
|
||||||
endif
|
|
||||||
|
|
||||||
if HAVE_ARM_NEON_INTR
|
|
||||||
ARM_NEON_INTR_OBJ = $(CELT_SOURCES_ARM_NEON_INTR:.c=.lo) \
|
|
||||||
$(SILK_SOURCES_ARM_NEON_INTR:.c=.lo) \
|
|
||||||
$(SILK_SOURCES_FIXED_ARM_NEON_INTR:.c=.lo)
|
|
||||||
$(ARM_NEON_INTR_OBJ): CFLAGS += \
|
|
||||||
$(OPUS_ARM_NEON_INTR_CFLAGS) $(NE10_CFLAGS)
|
|
||||||
endif
|
|
3458
node_modules/@discordjs/opus/deps/opus/Makefile.in
generated
vendored
3458
node_modules/@discordjs/opus/deps/opus/Makefile.in
generated
vendored
File diff suppressed because it is too large
Load Diff
161
node_modules/@discordjs/opus/deps/opus/Makefile.mips
generated
vendored
161
node_modules/@discordjs/opus/deps/opus/Makefile.mips
generated
vendored
@ -1,161 +0,0 @@
|
|||||||
#################### COMPILE OPTIONS #######################
|
|
||||||
|
|
||||||
# Uncomment this for fixed-point build
|
|
||||||
FIXED_POINT=1
|
|
||||||
|
|
||||||
# It is strongly recommended to uncomment one of these
|
|
||||||
# VAR_ARRAYS: Use C99 variable-length arrays for stack allocation
|
|
||||||
# USE_ALLOCA: Use alloca() for stack allocation
|
|
||||||
# If none is defined, then the fallback is a non-threadsafe global array
|
|
||||||
CFLAGS := -DUSE_ALLOCA $(CFLAGS)
|
|
||||||
#CFLAGS := -DVAR_ARRAYS $(CFLAGS)
|
|
||||||
|
|
||||||
# These options affect performance
|
|
||||||
# HAVE_LRINTF: Use C99 intrinsics to speed up float-to-int conversion
|
|
||||||
CFLAGS := -DHAVE_LRINTF $(CFLAGS)
|
|
||||||
|
|
||||||
###################### END OF OPTIONS ######################
|
|
||||||
|
|
||||||
-include package_version
|
|
||||||
|
|
||||||
include silk_sources.mk
|
|
||||||
include celt_sources.mk
|
|
||||||
include opus_sources.mk
|
|
||||||
|
|
||||||
ifdef FIXED_POINT
|
|
||||||
SILK_SOURCES += $(SILK_SOURCES_FIXED)
|
|
||||||
else
|
|
||||||
SILK_SOURCES += $(SILK_SOURCES_FLOAT)
|
|
||||||
OPUS_SOURCES += $(OPUS_SOURCES_FLOAT)
|
|
||||||
endif
|
|
||||||
|
|
||||||
EXESUFFIX =
|
|
||||||
LIBPREFIX = lib
|
|
||||||
LIBSUFFIX = .a
|
|
||||||
OBJSUFFIX = .o
|
|
||||||
|
|
||||||
CC = $(TOOLCHAIN_PREFIX)cc$(TOOLCHAIN_SUFFIX)
|
|
||||||
AR = $(TOOLCHAIN_PREFIX)ar
|
|
||||||
RANLIB = $(TOOLCHAIN_PREFIX)ranlib
|
|
||||||
CP = $(TOOLCHAIN_PREFIX)cp
|
|
||||||
|
|
||||||
cppflags-from-defines = $(addprefix -D,$(1))
|
|
||||||
cppflags-from-includes = $(addprefix -I,$(1))
|
|
||||||
ldflags-from-ldlibdirs = $(addprefix -L,$(1))
|
|
||||||
ldlibs-from-libs = $(addprefix -l,$(1))
|
|
||||||
|
|
||||||
WARNINGS = -Wall -W -Wstrict-prototypes -Wextra -Wcast-align -Wnested-externs -Wshadow
|
|
||||||
|
|
||||||
CFLAGS += -mips32r2 -mno-mips16 -std=gnu99 -O2 -g $(WARNINGS) -DENABLE_ASSERTIONS -DMIPSr1_ASM -DOPUS_BUILD -mdspr2 -march=74kc -mtune=74kc -mmt -mgp32
|
|
||||||
|
|
||||||
CINCLUDES = include silk celt
|
|
||||||
|
|
||||||
ifdef FIXED_POINT
|
|
||||||
CFLAGS += -DFIXED_POINT=1 -DDISABLE_FLOAT_API
|
|
||||||
CINCLUDES += silk/fixed
|
|
||||||
else
|
|
||||||
CINCLUDES += silk/float
|
|
||||||
endif
|
|
||||||
|
|
||||||
|
|
||||||
LIBS = m
|
|
||||||
|
|
||||||
LDLIBDIRS = ./
|
|
||||||
|
|
||||||
CFLAGS += $(call cppflags-from-defines,$(CDEFINES))
|
|
||||||
CFLAGS += $(call cppflags-from-includes,$(CINCLUDES))
|
|
||||||
LDFLAGS += $(call ldflags-from-ldlibdirs,$(LDLIBDIRS))
|
|
||||||
LDLIBS += $(call ldlibs-from-libs,$(LIBS))
|
|
||||||
|
|
||||||
COMPILE.c.cmdline = $(CC) -c $(CFLAGS) -o $@ $<
|
|
||||||
LINK.o = $(CC) $(LDPREFLAGS) $(LDFLAGS)
|
|
||||||
LINK.o.cmdline = $(LINK.o) $^ $(LDLIBS) -o $@$(EXESUFFIX)
|
|
||||||
|
|
||||||
ARCHIVE.cmdline = $(AR) $(ARFLAGS) $@ $^ && $(RANLIB) $@
|
|
||||||
|
|
||||||
%$(OBJSUFFIX):%.c
|
|
||||||
$(COMPILE.c.cmdline)
|
|
||||||
|
|
||||||
%$(OBJSUFFIX):%.cpp
|
|
||||||
$(COMPILE.cpp.cmdline)
|
|
||||||
|
|
||||||
# Directives
|
|
||||||
|
|
||||||
|
|
||||||
# Variable definitions
|
|
||||||
LIB_NAME = opus
|
|
||||||
TARGET = $(LIBPREFIX)$(LIB_NAME)$(LIBSUFFIX)
|
|
||||||
|
|
||||||
SRCS_C = $(SILK_SOURCES) $(CELT_SOURCES) $(OPUS_SOURCES)
|
|
||||||
|
|
||||||
OBJS := $(patsubst %.c,%$(OBJSUFFIX),$(SRCS_C))
|
|
||||||
|
|
||||||
OPUSDEMO_SRCS_C = src/opus_demo.c
|
|
||||||
OPUSDEMO_OBJS := $(patsubst %.c,%$(OBJSUFFIX),$(OPUSDEMO_SRCS_C))
|
|
||||||
|
|
||||||
TESTOPUSAPI_SRCS_C = tests/test_opus_api.c
|
|
||||||
TESTOPUSAPI_OBJS := $(patsubst %.c,%$(OBJSUFFIX),$(TESTOPUSAPI_SRCS_C))
|
|
||||||
|
|
||||||
TESTOPUSDECODE_SRCS_C = tests/test_opus_decode.c
|
|
||||||
TESTOPUSDECODE_OBJS := $(patsubst %.c,%$(OBJSUFFIX),$(TESTOPUSDECODE_SRCS_C))
|
|
||||||
|
|
||||||
TESTOPUSENCODE_SRCS_C = tests/test_opus_encode.c tests/opus_encode_regressions.c
|
|
||||||
TESTOPUSENCODE_OBJS := $(patsubst %.c,%$(OBJSUFFIX),$(TESTOPUSENCODE_SRCS_C))
|
|
||||||
|
|
||||||
TESTOPUSPADDING_SRCS_C = tests/test_opus_padding.c
|
|
||||||
TESTOPUSPADDING_OBJS := $(patsubst %.c,%$(OBJSUFFIX),$(TESTOPUSPADDING_SRCS_C))
|
|
||||||
|
|
||||||
OPUSCOMPARE_SRCS_C = src/opus_compare.c
|
|
||||||
OPUSCOMPARE_OBJS := $(patsubst %.c,%$(OBJSUFFIX),$(OPUSCOMPARE_SRCS_C))
|
|
||||||
|
|
||||||
TESTS := test_opus_api test_opus_decode test_opus_encode test_opus_padding
|
|
||||||
|
|
||||||
# Rules
|
|
||||||
all: lib opus_demo opus_compare $(TESTS)
|
|
||||||
|
|
||||||
lib: $(TARGET)
|
|
||||||
|
|
||||||
check: all
|
|
||||||
for test in $(TESTS); do ./$$test; done
|
|
||||||
|
|
||||||
$(TARGET): $(OBJS)
|
|
||||||
$(ARCHIVE.cmdline)
|
|
||||||
|
|
||||||
opus_demo$(EXESUFFIX): $(OPUSDEMO_OBJS) $(TARGET)
|
|
||||||
$(LINK.o.cmdline)
|
|
||||||
|
|
||||||
test_opus_api$(EXESUFFIX): $(TESTOPUSAPI_OBJS) $(TARGET)
|
|
||||||
$(LINK.o.cmdline)
|
|
||||||
|
|
||||||
test_opus_decode$(EXESUFFIX): $(TESTOPUSDECODE_OBJS) $(TARGET)
|
|
||||||
$(LINK.o.cmdline)
|
|
||||||
|
|
||||||
test_opus_encode$(EXESUFFIX): $(TESTOPUSENCODE_OBJS) $(TARGET)
|
|
||||||
$(LINK.o.cmdline)
|
|
||||||
|
|
||||||
test_opus_padding$(EXESUFFIX): $(TESTOPUSPADDING_OBJS) $(TARGET)
|
|
||||||
$(LINK.o.cmdline)
|
|
||||||
|
|
||||||
opus_compare$(EXESUFFIX): $(OPUSCOMPARE_OBJS)
|
|
||||||
$(LINK.o.cmdline)
|
|
||||||
|
|
||||||
celt/celt.o: CFLAGS += -DPACKAGE_VERSION='$(PACKAGE_VERSION)'
|
|
||||||
celt/celt.o: package_version
|
|
||||||
|
|
||||||
package_version: force
|
|
||||||
@if [ -x ./update_version ]; then \
|
|
||||||
./update_version || true; \
|
|
||||||
elif [ ! -e ./package_version ]; then \
|
|
||||||
echo 'PACKAGE_VERSION="unknown"' > ./package_version; \
|
|
||||||
fi
|
|
||||||
|
|
||||||
force:
|
|
||||||
|
|
||||||
clean:
|
|
||||||
rm -f opus_demo$(EXESUFFIX) opus_compare$(EXESUFFIX) $(TARGET) \
|
|
||||||
test_opus_api$(EXESUFFIX) test_opus_decode$(EXESUFFIX) \
|
|
||||||
test_opus_encode$(EXESUFFIX) test_opus_padding$(EXESUFFIX) \
|
|
||||||
$(OBJS) $(OPUSDEMO_OBJS) $(OPUSCOMPARE_OBJS) $(TESTOPUSAPI_OBJS) \
|
|
||||||
$(TESTOPUSDECODE_OBJS) $(TESTOPUSENCODE_OBJS) $(TESTOPUSPADDING_OBJS)
|
|
||||||
|
|
||||||
.PHONY: all lib clean force check
|
|
159
node_modules/@discordjs/opus/deps/opus/Makefile.unix
generated
vendored
159
node_modules/@discordjs/opus/deps/opus/Makefile.unix
generated
vendored
@ -1,159 +0,0 @@
|
|||||||
#################### COMPILE OPTIONS #######################
|
|
||||||
|
|
||||||
# Uncomment this for fixed-point build
|
|
||||||
#FIXED_POINT=1
|
|
||||||
|
|
||||||
# It is strongly recommended to uncomment one of these
|
|
||||||
# VAR_ARRAYS: Use C99 variable-length arrays for stack allocation
|
|
||||||
# USE_ALLOCA: Use alloca() for stack allocation
|
|
||||||
# If none is defined, then the fallback is a non-threadsafe global array
|
|
||||||
CFLAGS := -DUSE_ALLOCA $(CFLAGS)
|
|
||||||
#CFLAGS := -DVAR_ARRAYS $(CFLAGS)
|
|
||||||
|
|
||||||
# These options affect performance
|
|
||||||
# HAVE_LRINTF: Use C99 intrinsics to speed up float-to-int conversion
|
|
||||||
#CFLAGS := -DHAVE_LRINTF $(CFLAGS)
|
|
||||||
|
|
||||||
###################### END OF OPTIONS ######################
|
|
||||||
|
|
||||||
-include package_version
|
|
||||||
|
|
||||||
include silk_sources.mk
|
|
||||||
include celt_sources.mk
|
|
||||||
include opus_sources.mk
|
|
||||||
|
|
||||||
ifdef FIXED_POINT
|
|
||||||
SILK_SOURCES += $(SILK_SOURCES_FIXED)
|
|
||||||
else
|
|
||||||
SILK_SOURCES += $(SILK_SOURCES_FLOAT)
|
|
||||||
OPUS_SOURCES += $(OPUS_SOURCES_FLOAT)
|
|
||||||
endif
|
|
||||||
|
|
||||||
EXESUFFIX =
|
|
||||||
LIBPREFIX = lib
|
|
||||||
LIBSUFFIX = .a
|
|
||||||
OBJSUFFIX = .o
|
|
||||||
|
|
||||||
CC = $(TOOLCHAIN_PREFIX)cc$(TOOLCHAIN_SUFFIX)
|
|
||||||
AR = $(TOOLCHAIN_PREFIX)ar
|
|
||||||
RANLIB = $(TOOLCHAIN_PREFIX)ranlib
|
|
||||||
CP = $(TOOLCHAIN_PREFIX)cp
|
|
||||||
|
|
||||||
cppflags-from-defines = $(addprefix -D,$(1))
|
|
||||||
cppflags-from-includes = $(addprefix -I,$(1))
|
|
||||||
ldflags-from-ldlibdirs = $(addprefix -L,$(1))
|
|
||||||
ldlibs-from-libs = $(addprefix -l,$(1))
|
|
||||||
|
|
||||||
WARNINGS = -Wall -W -Wstrict-prototypes -Wextra -Wcast-align -Wnested-externs -Wshadow
|
|
||||||
CFLAGS += -O2 -g $(WARNINGS) -DOPUS_BUILD
|
|
||||||
CINCLUDES = include silk celt
|
|
||||||
|
|
||||||
ifdef FIXED_POINT
|
|
||||||
CFLAGS += -DFIXED_POINT=1 -DDISABLE_FLOAT_API
|
|
||||||
CINCLUDES += silk/fixed
|
|
||||||
else
|
|
||||||
CINCLUDES += silk/float
|
|
||||||
endif
|
|
||||||
|
|
||||||
|
|
||||||
LIBS = m
|
|
||||||
|
|
||||||
LDLIBDIRS = ./
|
|
||||||
|
|
||||||
CFLAGS += $(call cppflags-from-defines,$(CDEFINES))
|
|
||||||
CFLAGS += $(call cppflags-from-includes,$(CINCLUDES))
|
|
||||||
LDFLAGS += $(call ldflags-from-ldlibdirs,$(LDLIBDIRS))
|
|
||||||
LDLIBS += $(call ldlibs-from-libs,$(LIBS))
|
|
||||||
|
|
||||||
COMPILE.c.cmdline = $(CC) -c $(CFLAGS) -o $@ $<
|
|
||||||
LINK.o = $(CC) $(LDPREFLAGS) $(LDFLAGS)
|
|
||||||
LINK.o.cmdline = $(LINK.o) $^ $(LDLIBS) -o $@$(EXESUFFIX)
|
|
||||||
|
|
||||||
ARCHIVE.cmdline = $(AR) $(ARFLAGS) $@ $^ && $(RANLIB) $@
|
|
||||||
|
|
||||||
%$(OBJSUFFIX):%.c
|
|
||||||
$(COMPILE.c.cmdline)
|
|
||||||
|
|
||||||
%$(OBJSUFFIX):%.cpp
|
|
||||||
$(COMPILE.cpp.cmdline)
|
|
||||||
|
|
||||||
# Directives
|
|
||||||
|
|
||||||
|
|
||||||
# Variable definitions
|
|
||||||
LIB_NAME = opus
|
|
||||||
TARGET = $(LIBPREFIX)$(LIB_NAME)$(LIBSUFFIX)
|
|
||||||
|
|
||||||
SRCS_C = $(SILK_SOURCES) $(CELT_SOURCES) $(OPUS_SOURCES)
|
|
||||||
|
|
||||||
OBJS := $(patsubst %.c,%$(OBJSUFFIX),$(SRCS_C))
|
|
||||||
|
|
||||||
OPUSDEMO_SRCS_C = src/opus_demo.c
|
|
||||||
OPUSDEMO_OBJS := $(patsubst %.c,%$(OBJSUFFIX),$(OPUSDEMO_SRCS_C))
|
|
||||||
|
|
||||||
TESTOPUSAPI_SRCS_C = tests/test_opus_api.c
|
|
||||||
TESTOPUSAPI_OBJS := $(patsubst %.c,%$(OBJSUFFIX),$(TESTOPUSAPI_SRCS_C))
|
|
||||||
|
|
||||||
TESTOPUSDECODE_SRCS_C = tests/test_opus_decode.c
|
|
||||||
TESTOPUSDECODE_OBJS := $(patsubst %.c,%$(OBJSUFFIX),$(TESTOPUSDECODE_SRCS_C))
|
|
||||||
|
|
||||||
TESTOPUSENCODE_SRCS_C = tests/test_opus_encode.c tests/opus_encode_regressions.c
|
|
||||||
TESTOPUSENCODE_OBJS := $(patsubst %.c,%$(OBJSUFFIX),$(TESTOPUSENCODE_SRCS_C))
|
|
||||||
|
|
||||||
TESTOPUSPADDING_SRCS_C = tests/test_opus_padding.c
|
|
||||||
TESTOPUSPADDING_OBJS := $(patsubst %.c,%$(OBJSUFFIX),$(TESTOPUSPADDING_SRCS_C))
|
|
||||||
|
|
||||||
OPUSCOMPARE_SRCS_C = src/opus_compare.c
|
|
||||||
OPUSCOMPARE_OBJS := $(patsubst %.c,%$(OBJSUFFIX),$(OPUSCOMPARE_SRCS_C))
|
|
||||||
|
|
||||||
TESTS := test_opus_api test_opus_decode test_opus_encode test_opus_padding
|
|
||||||
|
|
||||||
# Rules
|
|
||||||
all: lib opus_demo opus_compare $(TESTS)
|
|
||||||
|
|
||||||
lib: $(TARGET)
|
|
||||||
|
|
||||||
check: all
|
|
||||||
for test in $(TESTS); do ./$$test; done
|
|
||||||
|
|
||||||
$(TARGET): $(OBJS)
|
|
||||||
$(ARCHIVE.cmdline)
|
|
||||||
|
|
||||||
opus_demo$(EXESUFFIX): $(OPUSDEMO_OBJS) $(TARGET)
|
|
||||||
$(LINK.o.cmdline)
|
|
||||||
|
|
||||||
test_opus_api$(EXESUFFIX): $(TESTOPUSAPI_OBJS) $(TARGET)
|
|
||||||
$(LINK.o.cmdline)
|
|
||||||
|
|
||||||
test_opus_decode$(EXESUFFIX): $(TESTOPUSDECODE_OBJS) $(TARGET)
|
|
||||||
$(LINK.o.cmdline)
|
|
||||||
|
|
||||||
test_opus_encode$(EXESUFFIX): $(TESTOPUSENCODE_OBJS) $(TARGET)
|
|
||||||
$(LINK.o.cmdline)
|
|
||||||
|
|
||||||
test_opus_padding$(EXESUFFIX): $(TESTOPUSPADDING_OBJS) $(TARGET)
|
|
||||||
$(LINK.o.cmdline)
|
|
||||||
|
|
||||||
opus_compare$(EXESUFFIX): $(OPUSCOMPARE_OBJS)
|
|
||||||
$(LINK.o.cmdline)
|
|
||||||
|
|
||||||
celt/celt.o: CFLAGS += -DPACKAGE_VERSION='$(PACKAGE_VERSION)'
|
|
||||||
celt/celt.o: package_version
|
|
||||||
|
|
||||||
package_version: force
|
|
||||||
@if [ -x ./update_version ]; then \
|
|
||||||
./update_version || true; \
|
|
||||||
elif [ ! -e ./package_version ]; then \
|
|
||||||
echo 'PACKAGE_VERSION="unknown"' > ./package_version; \
|
|
||||||
fi
|
|
||||||
|
|
||||||
force:
|
|
||||||
|
|
||||||
clean:
|
|
||||||
rm -f opus_demo$(EXESUFFIX) opus_compare$(EXESUFFIX) $(TARGET) \
|
|
||||||
test_opus_api$(EXESUFFIX) test_opus_decode$(EXESUFFIX) \
|
|
||||||
test_opus_encode$(EXESUFFIX) test_opus_padding$(EXESUFFIX) \
|
|
||||||
$(OBJS) $(OPUSDEMO_OBJS) $(OPUSCOMPARE_OBJS) $(TESTOPUSAPI_OBJS) \
|
|
||||||
$(TESTOPUSDECODE_OBJS) $(TESTOPUSENCODE_OBJS) $(TESTOPUSPADDING_OBJS)
|
|
||||||
|
|
||||||
.PHONY: all lib clean force check
|
|
0
node_modules/@discordjs/opus/deps/opus/NEWS
generated
vendored
0
node_modules/@discordjs/opus/deps/opus/NEWS
generated
vendored
19
node_modules/@discordjs/opus/deps/opus/OpusConfig.cmake.in
generated
vendored
19
node_modules/@discordjs/opus/deps/opus/OpusConfig.cmake.in
generated
vendored
@ -1,19 +0,0 @@
|
|||||||
set(OPUS_VERSION @PROJECT_VERSION@)
|
|
||||||
set(OPUS_VERSION_STRING @PROJECT_VERSION@)
|
|
||||||
set(OPUS_VERSION_MAJOR @PROJECT_VERSION_MAJOR@)
|
|
||||||
set(OPUS_VERSION_MINOR @PROJECT_VERSION_MINOR@)
|
|
||||||
set(OPUS_VERSION_PATCH @PROJECT_VERSION_PATCH@)
|
|
||||||
|
|
||||||
@PACKAGE_INIT@
|
|
||||||
|
|
||||||
set_and_check(OPUS_INCLUDE_DIR "@PACKAGE_INCLUDE_INSTALL_DIR@")
|
|
||||||
set_and_check(OPUS_INCLUDE_DIRS "@PACKAGE_INCLUDE_INSTALL_DIR@")
|
|
||||||
|
|
||||||
include(${CMAKE_CURRENT_LIST_DIR}/OpusTargets.cmake)
|
|
||||||
|
|
||||||
set(OPUS_LIBRARY Opus::opus)
|
|
||||||
set(OPUS_LIBRARIES Opus::opus)
|
|
||||||
|
|
||||||
check_required_components(Opus)
|
|
||||||
|
|
||||||
set(OPUS_FOUND 1)
|
|
161
node_modules/@discordjs/opus/deps/opus/README
generated
vendored
161
node_modules/@discordjs/opus/deps/opus/README
generated
vendored
@ -1,161 +0,0 @@
|
|||||||
== Opus audio codec ==
|
|
||||||
|
|
||||||
Opus is a codec for interactive speech and audio transmission over the Internet.
|
|
||||||
|
|
||||||
Opus can handle a wide range of interactive audio applications, including
|
|
||||||
Voice over IP, videoconferencing, in-game chat, and even remote live music
|
|
||||||
performances. It can scale from low bit-rate narrowband speech to very high
|
|
||||||
quality stereo music.
|
|
||||||
|
|
||||||
Opus, when coupled with an appropriate container format, is also suitable
|
|
||||||
for non-realtime stored-file applications such as music distribution, game
|
|
||||||
soundtracks, portable music players, jukeboxes, and other applications that
|
|
||||||
have historically used high latency formats such as MP3, AAC, or Vorbis.
|
|
||||||
|
|
||||||
Opus is specified by IETF RFC 6716:
|
|
||||||
https://tools.ietf.org/html/rfc6716
|
|
||||||
|
|
||||||
The Opus format and this implementation of it are subject to the royalty-
|
|
||||||
free patent and copyright licenses specified in the file COPYING.
|
|
||||||
|
|
||||||
This package implements a shared library for encoding and decoding raw Opus
|
|
||||||
bitstreams. Raw Opus bitstreams should be used over RTP according to
|
|
||||||
https://tools.ietf.org/html/rfc7587
|
|
||||||
|
|
||||||
The package also includes a number of test tools used for testing the
|
|
||||||
correct operation of the library. The bitstreams read/written by these
|
|
||||||
tools should not be used for Opus file distribution: They include
|
|
||||||
additional debugging data and cannot support seeking.
|
|
||||||
|
|
||||||
Opus stored in files should use the Ogg encapsulation for Opus which is
|
|
||||||
described at:
|
|
||||||
https://tools.ietf.org/html/rfc7845
|
|
||||||
|
|
||||||
An opus-tools package is available which provides encoding and decoding of
|
|
||||||
Ogg encapsulated Opus files and includes a number of useful features.
|
|
||||||
|
|
||||||
Opus-tools can be found at:
|
|
||||||
https://git.xiph.org/?p=opus-tools.git
|
|
||||||
or on the main Opus website:
|
|
||||||
https://opus-codec.org/
|
|
||||||
|
|
||||||
== Compiling libopus ==
|
|
||||||
|
|
||||||
To build from a distribution tarball, you only need to do the following:
|
|
||||||
|
|
||||||
% ./configure
|
|
||||||
% make
|
|
||||||
|
|
||||||
To build from the git repository, the following steps are necessary:
|
|
||||||
|
|
||||||
0) Set up a development environment:
|
|
||||||
|
|
||||||
On an Ubuntu or Debian family Linux distribution:
|
|
||||||
|
|
||||||
% sudo apt-get install git autoconf automake libtool gcc make
|
|
||||||
|
|
||||||
On a Fedora/Redhat based Linux:
|
|
||||||
|
|
||||||
% sudo dnf install git autoconf automake libtool gcc make
|
|
||||||
|
|
||||||
Or for older Redhat/Centos Linux releases:
|
|
||||||
|
|
||||||
% sudo yum install git autoconf automake libtool gcc make
|
|
||||||
|
|
||||||
On Apple macOS, install Xcode and brew.sh, then in the Terminal enter:
|
|
||||||
|
|
||||||
% brew install autoconf automake libtool
|
|
||||||
|
|
||||||
1) Clone the repository:
|
|
||||||
|
|
||||||
% git clone https://git.xiph.org/opus.git
|
|
||||||
% cd opus
|
|
||||||
|
|
||||||
2) Compiling the source
|
|
||||||
|
|
||||||
% ./autogen.sh
|
|
||||||
% ./configure
|
|
||||||
% make
|
|
||||||
|
|
||||||
3) Install the codec libraries (optional)
|
|
||||||
|
|
||||||
% sudo make install
|
|
||||||
|
|
||||||
Once you have compiled the codec, there will be a opus_demo executable
|
|
||||||
in the top directory.
|
|
||||||
|
|
||||||
Usage: opus_demo [-e] <application> <sampling rate (Hz)> <channels (1/2)>
|
|
||||||
<bits per second> [options] <input> <output>
|
|
||||||
opus_demo -d <sampling rate (Hz)> <channels (1/2)> [options]
|
|
||||||
<input> <output>
|
|
||||||
|
|
||||||
mode: voip | audio | restricted-lowdelay
|
|
||||||
options:
|
|
||||||
-e : only runs the encoder (output the bit-stream)
|
|
||||||
-d : only runs the decoder (reads the bit-stream as input)
|
|
||||||
-cbr : enable constant bitrate; default: variable bitrate
|
|
||||||
-cvbr : enable constrained variable bitrate; default:
|
|
||||||
unconstrained
|
|
||||||
-bandwidth <NB|MB|WB|SWB|FB>
|
|
||||||
: audio bandwidth (from narrowband to fullband);
|
|
||||||
default: sampling rate
|
|
||||||
-framesize <2.5|5|10|20|40|60>
|
|
||||||
: frame size in ms; default: 20
|
|
||||||
-max_payload <bytes>
|
|
||||||
: maximum payload size in bytes, default: 1024
|
|
||||||
-complexity <comp>
|
|
||||||
: complexity, 0 (lowest) ... 10 (highest); default: 10
|
|
||||||
-inbandfec : enable SILK inband FEC
|
|
||||||
-forcemono : force mono encoding, even for stereo input
|
|
||||||
-dtx : enable SILK DTX
|
|
||||||
-loss <perc> : simulate packet loss, in percent (0-100); default: 0
|
|
||||||
|
|
||||||
input and output are little-endian signed 16-bit PCM files or opus
|
|
||||||
bitstreams with simple opus_demo proprietary framing.
|
|
||||||
|
|
||||||
== Testing ==
|
|
||||||
|
|
||||||
This package includes a collection of automated unit and system tests
|
|
||||||
which SHOULD be run after compiling the package especially the first
|
|
||||||
time it is run on a new platform.
|
|
||||||
|
|
||||||
To run the integrated tests:
|
|
||||||
|
|
||||||
% make check
|
|
||||||
|
|
||||||
There is also collection of standard test vectors which are not
|
|
||||||
included in this package for size reasons but can be obtained from:
|
|
||||||
https://opus-codec.org/docs/opus_testvectors-rfc8251.tar.gz
|
|
||||||
|
|
||||||
To run compare the code to these test vectors:
|
|
||||||
|
|
||||||
% curl -OL https://opus-codec.org/docs/opus_testvectors-rfc8251.tar.gz
|
|
||||||
% tar -zxf opus_testvectors-rfc8251.tar.gz
|
|
||||||
% ./tests/run_vectors.sh ./ opus_newvectors 48000
|
|
||||||
|
|
||||||
== Portability notes ==
|
|
||||||
|
|
||||||
This implementation uses floating-point by default but can be compiled to
|
|
||||||
use only fixed-point arithmetic by setting --enable-fixed-point (if using
|
|
||||||
autoconf) or by defining the FIXED_POINT macro (if building manually).
|
|
||||||
The fixed point implementation has somewhat lower audio quality and is
|
|
||||||
slower on platforms with fast FPUs, it is normally only used in embedded
|
|
||||||
environments.
|
|
||||||
|
|
||||||
The implementation can be compiled with either a C89 or a C99 compiler.
|
|
||||||
While it does not rely on any _undefined behavior_ as defined by C89 or
|
|
||||||
C99, it relies on common _implementation-defined behavior_ for two's
|
|
||||||
complement architectures:
|
|
||||||
|
|
||||||
o Right shifts of negative values are consistent with two's
|
|
||||||
complement arithmetic, so that a>>b is equivalent to
|
|
||||||
floor(a/(2^b)),
|
|
||||||
|
|
||||||
o For conversion to a signed integer of N bits, the value is reduced
|
|
||||||
modulo 2^N to be within range of the type,
|
|
||||||
|
|
||||||
o The result of integer division of a negative value is truncated
|
|
||||||
towards zero, and
|
|
||||||
|
|
||||||
o The compiler provides a 64-bit integer type (a C99 requirement
|
|
||||||
which is supported by most C89 compilers).
|
|
1216
node_modules/@discordjs/opus/deps/opus/aclocal.m4
generated
vendored
1216
node_modules/@discordjs/opus/deps/opus/aclocal.m4
generated
vendored
File diff suppressed because it is too large
Load Diff
182
node_modules/@discordjs/opus/deps/opus/celt/_kiss_fft_guts.h
generated
vendored
182
node_modules/@discordjs/opus/deps/opus/celt/_kiss_fft_guts.h
generated
vendored
@ -1,182 +0,0 @@
|
|||||||
/*Copyright (c) 2003-2004, Mark Borgerding
|
|
||||||
|
|
||||||
All rights reserved.
|
|
||||||
|
|
||||||
Redistribution and use in source and binary forms, with or without
|
|
||||||
modification, are permitted provided that the following conditions are met:
|
|
||||||
|
|
||||||
* Redistributions of source code must retain the above copyright notice,
|
|
||||||
this list of conditions and the following disclaimer.
|
|
||||||
* Redistributions in binary form must reproduce the above copyright notice,
|
|
||||||
this list of conditions and the following disclaimer in the
|
|
||||||
documentation and/or other materials provided with the distribution.
|
|
||||||
|
|
||||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
||||||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
||||||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
||||||
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
||||||
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
||||||
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
||||||
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
||||||
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
||||||
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
||||||
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
||||||
POSSIBILITY OF SUCH DAMAGE.*/
|
|
||||||
|
|
||||||
#ifndef KISS_FFT_GUTS_H
|
|
||||||
#define KISS_FFT_GUTS_H
|
|
||||||
|
|
||||||
#define MIN(a,b) ((a)<(b) ? (a):(b))
|
|
||||||
#define MAX(a,b) ((a)>(b) ? (a):(b))
|
|
||||||
|
|
||||||
/* kiss_fft.h
|
|
||||||
defines kiss_fft_scalar as either short or a float type
|
|
||||||
and defines
|
|
||||||
typedef struct { kiss_fft_scalar r; kiss_fft_scalar i; }kiss_fft_cpx; */
|
|
||||||
#include "kiss_fft.h"
|
|
||||||
|
|
||||||
/*
|
|
||||||
Explanation of macros dealing with complex math:
|
|
||||||
|
|
||||||
C_MUL(m,a,b) : m = a*b
|
|
||||||
C_FIXDIV( c , div ) : if a fixed point impl., c /= div. noop otherwise
|
|
||||||
C_SUB( res, a,b) : res = a - b
|
|
||||||
C_SUBFROM( res , a) : res -= a
|
|
||||||
C_ADDTO( res , a) : res += a
|
|
||||||
* */
|
|
||||||
#ifdef FIXED_POINT
|
|
||||||
#include "arch.h"
|
|
||||||
|
|
||||||
|
|
||||||
#define SAMP_MAX 2147483647
|
|
||||||
#define TWID_MAX 32767
|
|
||||||
#define TRIG_UPSCALE 1
|
|
||||||
|
|
||||||
#define SAMP_MIN -SAMP_MAX
|
|
||||||
|
|
||||||
|
|
||||||
# define S_MUL(a,b) MULT16_32_Q15(b, a)
|
|
||||||
|
|
||||||
# define C_MUL(m,a,b) \
|
|
||||||
do{ (m).r = SUB32_ovflw(S_MUL((a).r,(b).r) , S_MUL((a).i,(b).i)); \
|
|
||||||
(m).i = ADD32_ovflw(S_MUL((a).r,(b).i) , S_MUL((a).i,(b).r)); }while(0)
|
|
||||||
|
|
||||||
# define C_MULC(m,a,b) \
|
|
||||||
do{ (m).r = ADD32_ovflw(S_MUL((a).r,(b).r) , S_MUL((a).i,(b).i)); \
|
|
||||||
(m).i = SUB32_ovflw(S_MUL((a).i,(b).r) , S_MUL((a).r,(b).i)); }while(0)
|
|
||||||
|
|
||||||
# define C_MULBYSCALAR( c, s ) \
|
|
||||||
do{ (c).r = S_MUL( (c).r , s ) ;\
|
|
||||||
(c).i = S_MUL( (c).i , s ) ; }while(0)
|
|
||||||
|
|
||||||
# define DIVSCALAR(x,k) \
|
|
||||||
(x) = S_MUL( x, (TWID_MAX-((k)>>1))/(k)+1 )
|
|
||||||
|
|
||||||
# define C_FIXDIV(c,div) \
|
|
||||||
do { DIVSCALAR( (c).r , div); \
|
|
||||||
DIVSCALAR( (c).i , div); }while (0)
|
|
||||||
|
|
||||||
#define C_ADD( res, a,b)\
|
|
||||||
do {(res).r=ADD32_ovflw((a).r,(b).r); (res).i=ADD32_ovflw((a).i,(b).i); \
|
|
||||||
}while(0)
|
|
||||||
#define C_SUB( res, a,b)\
|
|
||||||
do {(res).r=SUB32_ovflw((a).r,(b).r); (res).i=SUB32_ovflw((a).i,(b).i); \
|
|
||||||
}while(0)
|
|
||||||
#define C_ADDTO( res , a)\
|
|
||||||
do {(res).r = ADD32_ovflw((res).r, (a).r); (res).i = ADD32_ovflw((res).i,(a).i);\
|
|
||||||
}while(0)
|
|
||||||
|
|
||||||
#define C_SUBFROM( res , a)\
|
|
||||||
do {(res).r = ADD32_ovflw((res).r,(a).r); (res).i = SUB32_ovflw((res).i,(a).i); \
|
|
||||||
}while(0)
|
|
||||||
|
|
||||||
#if defined(OPUS_ARM_INLINE_ASM)
|
|
||||||
#include "arm/kiss_fft_armv4.h"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if defined(OPUS_ARM_INLINE_EDSP)
|
|
||||||
#include "arm/kiss_fft_armv5e.h"
|
|
||||||
#endif
|
|
||||||
#if defined(MIPSr1_ASM)
|
|
||||||
#include "mips/kiss_fft_mipsr1.h"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#else /* not FIXED_POINT*/
|
|
||||||
|
|
||||||
# define S_MUL(a,b) ( (a)*(b) )
|
|
||||||
#define C_MUL(m,a,b) \
|
|
||||||
do{ (m).r = (a).r*(b).r - (a).i*(b).i;\
|
|
||||||
(m).i = (a).r*(b).i + (a).i*(b).r; }while(0)
|
|
||||||
#define C_MULC(m,a,b) \
|
|
||||||
do{ (m).r = (a).r*(b).r + (a).i*(b).i;\
|
|
||||||
(m).i = (a).i*(b).r - (a).r*(b).i; }while(0)
|
|
||||||
|
|
||||||
#define C_MUL4(m,a,b) C_MUL(m,a,b)
|
|
||||||
|
|
||||||
# define C_FIXDIV(c,div) /* NOOP */
|
|
||||||
# define C_MULBYSCALAR( c, s ) \
|
|
||||||
do{ (c).r *= (s);\
|
|
||||||
(c).i *= (s); }while(0)
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef CHECK_OVERFLOW_OP
|
|
||||||
# define CHECK_OVERFLOW_OP(a,op,b) /* noop */
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef C_ADD
|
|
||||||
#define C_ADD( res, a,b)\
|
|
||||||
do { \
|
|
||||||
CHECK_OVERFLOW_OP((a).r,+,(b).r)\
|
|
||||||
CHECK_OVERFLOW_OP((a).i,+,(b).i)\
|
|
||||||
(res).r=(a).r+(b).r; (res).i=(a).i+(b).i; \
|
|
||||||
}while(0)
|
|
||||||
#define C_SUB( res, a,b)\
|
|
||||||
do { \
|
|
||||||
CHECK_OVERFLOW_OP((a).r,-,(b).r)\
|
|
||||||
CHECK_OVERFLOW_OP((a).i,-,(b).i)\
|
|
||||||
(res).r=(a).r-(b).r; (res).i=(a).i-(b).i; \
|
|
||||||
}while(0)
|
|
||||||
#define C_ADDTO( res , a)\
|
|
||||||
do { \
|
|
||||||
CHECK_OVERFLOW_OP((res).r,+,(a).r)\
|
|
||||||
CHECK_OVERFLOW_OP((res).i,+,(a).i)\
|
|
||||||
(res).r += (a).r; (res).i += (a).i;\
|
|
||||||
}while(0)
|
|
||||||
|
|
||||||
#define C_SUBFROM( res , a)\
|
|
||||||
do {\
|
|
||||||
CHECK_OVERFLOW_OP((res).r,-,(a).r)\
|
|
||||||
CHECK_OVERFLOW_OP((res).i,-,(a).i)\
|
|
||||||
(res).r -= (a).r; (res).i -= (a).i; \
|
|
||||||
}while(0)
|
|
||||||
#endif /* C_ADD defined */
|
|
||||||
|
|
||||||
#ifdef FIXED_POINT
|
|
||||||
/*# define KISS_FFT_COS(phase) TRIG_UPSCALE*floor(MIN(32767,MAX(-32767,.5+32768 * cos (phase))))
|
|
||||||
# define KISS_FFT_SIN(phase) TRIG_UPSCALE*floor(MIN(32767,MAX(-32767,.5+32768 * sin (phase))))*/
|
|
||||||
# define KISS_FFT_COS(phase) floor(.5+TWID_MAX*cos (phase))
|
|
||||||
# define KISS_FFT_SIN(phase) floor(.5+TWID_MAX*sin (phase))
|
|
||||||
# define HALF_OF(x) ((x)>>1)
|
|
||||||
#elif defined(USE_SIMD)
|
|
||||||
# define KISS_FFT_COS(phase) _mm_set1_ps( cos(phase) )
|
|
||||||
# define KISS_FFT_SIN(phase) _mm_set1_ps( sin(phase) )
|
|
||||||
# define HALF_OF(x) ((x)*_mm_set1_ps(.5f))
|
|
||||||
#else
|
|
||||||
# define KISS_FFT_COS(phase) (kiss_fft_scalar) cos(phase)
|
|
||||||
# define KISS_FFT_SIN(phase) (kiss_fft_scalar) sin(phase)
|
|
||||||
# define HALF_OF(x) ((x)*.5f)
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#define kf_cexp(x,phase) \
|
|
||||||
do{ \
|
|
||||||
(x)->r = KISS_FFT_COS(phase);\
|
|
||||||
(x)->i = KISS_FFT_SIN(phase);\
|
|
||||||
}while(0)
|
|
||||||
|
|
||||||
#define kf_cexp2(x,phase) \
|
|
||||||
do{ \
|
|
||||||
(x)->r = TRIG_UPSCALE*celt_cos_norm((phase));\
|
|
||||||
(x)->i = TRIG_UPSCALE*celt_cos_norm((phase)-32768);\
|
|
||||||
}while(0)
|
|
||||||
|
|
||||||
#endif /* KISS_FFT_GUTS_H */
|
|
288
node_modules/@discordjs/opus/deps/opus/celt/arch.h
generated
vendored
288
node_modules/@discordjs/opus/deps/opus/celt/arch.h
generated
vendored
@ -1,288 +0,0 @@
|
|||||||
/* Copyright (c) 2003-2008 Jean-Marc Valin
|
|
||||||
Copyright (c) 2007-2008 CSIRO
|
|
||||||
Copyright (c) 2007-2009 Xiph.Org Foundation
|
|
||||||
Written by Jean-Marc Valin */
|
|
||||||
/**
|
|
||||||
@file arch.h
|
|
||||||
@brief Various architecture definitions for CELT
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
Redistribution and use in source and binary forms, with or without
|
|
||||||
modification, are permitted provided that the following conditions
|
|
||||||
are met:
|
|
||||||
|
|
||||||
- Redistributions of source code must retain the above copyright
|
|
||||||
notice, this list of conditions and the following disclaimer.
|
|
||||||
|
|
||||||
- Redistributions in binary form must reproduce the above copyright
|
|
||||||
notice, this list of conditions and the following disclaimer in the
|
|
||||||
documentation and/or other materials provided with the distribution.
|
|
||||||
|
|
||||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
||||||
``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
||||||
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
||||||
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
|
|
||||||
OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
|
||||||
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
||||||
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
|
||||||
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
|
||||||
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
||||||
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
||||||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifndef ARCH_H
|
|
||||||
#define ARCH_H
|
|
||||||
|
|
||||||
#include "opus_types.h"
|
|
||||||
#include "opus_defines.h"
|
|
||||||
|
|
||||||
# if !defined(__GNUC_PREREQ)
|
|
||||||
# if defined(__GNUC__)&&defined(__GNUC_MINOR__)
|
|
||||||
# define __GNUC_PREREQ(_maj,_min) \
|
|
||||||
((__GNUC__<<16)+__GNUC_MINOR__>=((_maj)<<16)+(_min))
|
|
||||||
# else
|
|
||||||
# define __GNUC_PREREQ(_maj,_min) 0
|
|
||||||
# endif
|
|
||||||
# endif
|
|
||||||
|
|
||||||
#if OPUS_GNUC_PREREQ(3, 0)
|
|
||||||
#define opus_likely(x) (__builtin_expect(!!(x), 1))
|
|
||||||
#define opus_unlikely(x) (__builtin_expect(!!(x), 0))
|
|
||||||
#else
|
|
||||||
#define opus_likely(x) (!!(x))
|
|
||||||
#define opus_unlikely(x) (!!(x))
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#define CELT_SIG_SCALE 32768.f
|
|
||||||
|
|
||||||
#define CELT_FATAL(str) celt_fatal(str, __FILE__, __LINE__);
|
|
||||||
|
|
||||||
#if defined(ENABLE_ASSERTIONS) || defined(ENABLE_HARDENING)
|
|
||||||
#ifdef __GNUC__
|
|
||||||
__attribute__((noreturn))
|
|
||||||
#endif
|
|
||||||
void celt_fatal(const char *str, const char *file, int line);
|
|
||||||
|
|
||||||
#if defined(CELT_C) && !defined(OVERRIDE_celt_fatal)
|
|
||||||
#include <stdio.h>
|
|
||||||
#include <stdlib.h>
|
|
||||||
#ifdef __GNUC__
|
|
||||||
__attribute__((noreturn))
|
|
||||||
#endif
|
|
||||||
void celt_fatal(const char *str, const char *file, int line)
|
|
||||||
{
|
|
||||||
fprintf (stderr, "Fatal (internal) error in %s, line %d: %s\n", file, line, str);
|
|
||||||
abort();
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#define celt_assert(cond) {if (!(cond)) {CELT_FATAL("assertion failed: " #cond);}}
|
|
||||||
#define celt_assert2(cond, message) {if (!(cond)) {CELT_FATAL("assertion failed: " #cond "\n" message);}}
|
|
||||||
#define MUST_SUCCEED(call) celt_assert((call) == OPUS_OK)
|
|
||||||
#else
|
|
||||||
#define celt_assert(cond)
|
|
||||||
#define celt_assert2(cond, message)
|
|
||||||
#define MUST_SUCCEED(call) do {if((call) != OPUS_OK) {RESTORE_STACK; return OPUS_INTERNAL_ERROR;} } while (0)
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if defined(ENABLE_ASSERTIONS)
|
|
||||||
#define celt_sig_assert(cond) {if (!(cond)) {CELT_FATAL("signal assertion failed: " #cond);}}
|
|
||||||
#else
|
|
||||||
#define celt_sig_assert(cond)
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#define IMUL32(a,b) ((a)*(b))
|
|
||||||
|
|
||||||
#define MIN16(a,b) ((a) < (b) ? (a) : (b)) /**< Minimum 16-bit value. */
|
|
||||||
#define MAX16(a,b) ((a) > (b) ? (a) : (b)) /**< Maximum 16-bit value. */
|
|
||||||
#define MIN32(a,b) ((a) < (b) ? (a) : (b)) /**< Minimum 32-bit value. */
|
|
||||||
#define MAX32(a,b) ((a) > (b) ? (a) : (b)) /**< Maximum 32-bit value. */
|
|
||||||
#define IMIN(a,b) ((a) < (b) ? (a) : (b)) /**< Minimum int value. */
|
|
||||||
#define IMAX(a,b) ((a) > (b) ? (a) : (b)) /**< Maximum int value. */
|
|
||||||
#define UADD32(a,b) ((a)+(b))
|
|
||||||
#define USUB32(a,b) ((a)-(b))
|
|
||||||
|
|
||||||
/* Set this if opus_int64 is a native type of the CPU. */
|
|
||||||
/* Assume that all LP64 architectures have fast 64-bit types; also x86_64
|
|
||||||
(which can be ILP32 for x32) and Win64 (which is LLP64). */
|
|
||||||
#if defined(__x86_64__) || defined(__LP64__) || defined(_WIN64)
|
|
||||||
#define OPUS_FAST_INT64 1
|
|
||||||
#else
|
|
||||||
#define OPUS_FAST_INT64 0
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#define PRINT_MIPS(file)
|
|
||||||
|
|
||||||
#ifdef FIXED_POINT
|
|
||||||
|
|
||||||
typedef opus_int16 opus_val16;
|
|
||||||
typedef opus_int32 opus_val32;
|
|
||||||
typedef opus_int64 opus_val64;
|
|
||||||
|
|
||||||
typedef opus_val32 celt_sig;
|
|
||||||
typedef opus_val16 celt_norm;
|
|
||||||
typedef opus_val32 celt_ener;
|
|
||||||
|
|
||||||
#define celt_isnan(x) 0
|
|
||||||
|
|
||||||
#define Q15ONE 32767
|
|
||||||
|
|
||||||
#define SIG_SHIFT 12
|
|
||||||
/* Safe saturation value for 32-bit signals. Should be less than
|
|
||||||
2^31*(1-0.85) to avoid blowing up on DC at deemphasis.*/
|
|
||||||
#define SIG_SAT (300000000)
|
|
||||||
|
|
||||||
#define NORM_SCALING 16384
|
|
||||||
|
|
||||||
#define DB_SHIFT 10
|
|
||||||
|
|
||||||
#define EPSILON 1
|
|
||||||
#define VERY_SMALL 0
|
|
||||||
#define VERY_LARGE16 ((opus_val16)32767)
|
|
||||||
#define Q15_ONE ((opus_val16)32767)
|
|
||||||
|
|
||||||
#define SCALEIN(a) (a)
|
|
||||||
#define SCALEOUT(a) (a)
|
|
||||||
|
|
||||||
#define ABS16(x) ((x) < 0 ? (-(x)) : (x))
|
|
||||||
#define ABS32(x) ((x) < 0 ? (-(x)) : (x))
|
|
||||||
|
|
||||||
static OPUS_INLINE opus_int16 SAT16(opus_int32 x) {
|
|
||||||
return x > 32767 ? 32767 : x < -32768 ? -32768 : (opus_int16)x;
|
|
||||||
}
|
|
||||||
|
|
||||||
#ifdef FIXED_DEBUG
|
|
||||||
#include "fixed_debug.h"
|
|
||||||
#else
|
|
||||||
|
|
||||||
#include "fixed_generic.h"
|
|
||||||
|
|
||||||
#ifdef OPUS_ARM_PRESUME_AARCH64_NEON_INTR
|
|
||||||
#include "arm/fixed_arm64.h"
|
|
||||||
#elif defined (OPUS_ARM_INLINE_EDSP)
|
|
||||||
#include "arm/fixed_armv5e.h"
|
|
||||||
#elif defined (OPUS_ARM_INLINE_ASM)
|
|
||||||
#include "arm/fixed_armv4.h"
|
|
||||||
#elif defined (BFIN_ASM)
|
|
||||||
#include "fixed_bfin.h"
|
|
||||||
#elif defined (TI_C5X_ASM)
|
|
||||||
#include "fixed_c5x.h"
|
|
||||||
#elif defined (TI_C6X_ASM)
|
|
||||||
#include "fixed_c6x.h"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#else /* FIXED_POINT */
|
|
||||||
|
|
||||||
typedef float opus_val16;
|
|
||||||
typedef float opus_val32;
|
|
||||||
typedef float opus_val64;
|
|
||||||
|
|
||||||
typedef float celt_sig;
|
|
||||||
typedef float celt_norm;
|
|
||||||
typedef float celt_ener;
|
|
||||||
|
|
||||||
#ifdef FLOAT_APPROX
|
|
||||||
/* This code should reliably detect NaN/inf even when -ffast-math is used.
|
|
||||||
Assumes IEEE 754 format. */
|
|
||||||
static OPUS_INLINE int celt_isnan(float x)
|
|
||||||
{
|
|
||||||
union {float f; opus_uint32 i;} in;
|
|
||||||
in.f = x;
|
|
||||||
return ((in.i>>23)&0xFF)==0xFF && (in.i&0x007FFFFF)!=0;
|
|
||||||
}
|
|
||||||
#else
|
|
||||||
#ifdef __FAST_MATH__
|
|
||||||
#error Cannot build libopus with -ffast-math unless FLOAT_APPROX is defined. This could result in crashes on extreme (e.g. NaN) input
|
|
||||||
#endif
|
|
||||||
#define celt_isnan(x) ((x)!=(x))
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#define Q15ONE 1.0f
|
|
||||||
|
|
||||||
#define NORM_SCALING 1.f
|
|
||||||
|
|
||||||
#define EPSILON 1e-15f
|
|
||||||
#define VERY_SMALL 1e-30f
|
|
||||||
#define VERY_LARGE16 1e15f
|
|
||||||
#define Q15_ONE ((opus_val16)1.f)
|
|
||||||
|
|
||||||
/* This appears to be the same speed as C99's fabsf() but it's more portable. */
|
|
||||||
#define ABS16(x) ((float)fabs(x))
|
|
||||||
#define ABS32(x) ((float)fabs(x))
|
|
||||||
|
|
||||||
#define QCONST16(x,bits) (x)
|
|
||||||
#define QCONST32(x,bits) (x)
|
|
||||||
|
|
||||||
#define NEG16(x) (-(x))
|
|
||||||
#define NEG32(x) (-(x))
|
|
||||||
#define NEG32_ovflw(x) (-(x))
|
|
||||||
#define EXTRACT16(x) (x)
|
|
||||||
#define EXTEND32(x) (x)
|
|
||||||
#define SHR16(a,shift) (a)
|
|
||||||
#define SHL16(a,shift) (a)
|
|
||||||
#define SHR32(a,shift) (a)
|
|
||||||
#define SHL32(a,shift) (a)
|
|
||||||
#define PSHR32(a,shift) (a)
|
|
||||||
#define VSHR32(a,shift) (a)
|
|
||||||
|
|
||||||
#define PSHR(a,shift) (a)
|
|
||||||
#define SHR(a,shift) (a)
|
|
||||||
#define SHL(a,shift) (a)
|
|
||||||
#define SATURATE(x,a) (x)
|
|
||||||
#define SATURATE16(x) (x)
|
|
||||||
|
|
||||||
#define ROUND16(a,shift) (a)
|
|
||||||
#define SROUND16(a,shift) (a)
|
|
||||||
#define HALF16(x) (.5f*(x))
|
|
||||||
#define HALF32(x) (.5f*(x))
|
|
||||||
|
|
||||||
#define ADD16(a,b) ((a)+(b))
|
|
||||||
#define SUB16(a,b) ((a)-(b))
|
|
||||||
#define ADD32(a,b) ((a)+(b))
|
|
||||||
#define SUB32(a,b) ((a)-(b))
|
|
||||||
#define ADD32_ovflw(a,b) ((a)+(b))
|
|
||||||
#define SUB32_ovflw(a,b) ((a)-(b))
|
|
||||||
#define MULT16_16_16(a,b) ((a)*(b))
|
|
||||||
#define MULT16_16(a,b) ((opus_val32)(a)*(opus_val32)(b))
|
|
||||||
#define MAC16_16(c,a,b) ((c)+(opus_val32)(a)*(opus_val32)(b))
|
|
||||||
|
|
||||||
#define MULT16_32_Q15(a,b) ((a)*(b))
|
|
||||||
#define MULT16_32_Q16(a,b) ((a)*(b))
|
|
||||||
|
|
||||||
#define MULT32_32_Q31(a,b) ((a)*(b))
|
|
||||||
|
|
||||||
#define MAC16_32_Q15(c,a,b) ((c)+(a)*(b))
|
|
||||||
#define MAC16_32_Q16(c,a,b) ((c)+(a)*(b))
|
|
||||||
|
|
||||||
#define MULT16_16_Q11_32(a,b) ((a)*(b))
|
|
||||||
#define MULT16_16_Q11(a,b) ((a)*(b))
|
|
||||||
#define MULT16_16_Q13(a,b) ((a)*(b))
|
|
||||||
#define MULT16_16_Q14(a,b) ((a)*(b))
|
|
||||||
#define MULT16_16_Q15(a,b) ((a)*(b))
|
|
||||||
#define MULT16_16_P15(a,b) ((a)*(b))
|
|
||||||
#define MULT16_16_P13(a,b) ((a)*(b))
|
|
||||||
#define MULT16_16_P14(a,b) ((a)*(b))
|
|
||||||
#define MULT16_32_P16(a,b) ((a)*(b))
|
|
||||||
|
|
||||||
#define DIV32_16(a,b) (((opus_val32)(a))/(opus_val16)(b))
|
|
||||||
#define DIV32(a,b) (((opus_val32)(a))/(opus_val32)(b))
|
|
||||||
|
|
||||||
#define SCALEIN(a) ((a)*CELT_SIG_SCALE)
|
|
||||||
#define SCALEOUT(a) ((a)*(1/CELT_SIG_SCALE))
|
|
||||||
|
|
||||||
#define SIG2WORD16(x) (x)
|
|
||||||
|
|
||||||
#endif /* !FIXED_POINT */
|
|
||||||
|
|
||||||
#ifndef GLOBAL_STACK_SIZE
|
|
||||||
#ifdef FIXED_POINT
|
|
||||||
#define GLOBAL_STACK_SIZE 120000
|
|
||||||
#else
|
|
||||||
#define GLOBAL_STACK_SIZE 120000
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif /* ARCH_H */
|
|
353
node_modules/@discordjs/opus/deps/opus/celt/arm/arm2gnu.pl
generated
vendored
353
node_modules/@discordjs/opus/deps/opus/celt/arm/arm2gnu.pl
generated
vendored
@ -1,353 +0,0 @@
|
|||||||
#!/usr/bin/perl
|
|
||||||
# Copyright (C) 2002-2013 Xiph.org Foundation
|
|
||||||
#
|
|
||||||
# Redistribution and use in source and binary forms, with or without
|
|
||||||
# modification, are permitted provided that the following conditions
|
|
||||||
# are met:
|
|
||||||
#
|
|
||||||
# - Redistributions of source code must retain the above copyright
|
|
||||||
# notice, this list of conditions and the following disclaimer.
|
|
||||||
#
|
|
||||||
# - Redistributions in binary form must reproduce the above copyright
|
|
||||||
# notice, this list of conditions and the following disclaimer in the
|
|
||||||
# documentation and/or other materials provided with the distribution.
|
|
||||||
#
|
|
||||||
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
||||||
# ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
||||||
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
||||||
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
|
|
||||||
# OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
|
||||||
# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
||||||
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
|
||||||
# PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
|
||||||
# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
||||||
# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
||||||
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
||||||
|
|
||||||
my $bigend; # little/big endian
|
|
||||||
my $nxstack;
|
|
||||||
my $apple = 0;
|
|
||||||
my $symprefix = "";
|
|
||||||
|
|
||||||
$nxstack = 0;
|
|
||||||
|
|
||||||
eval 'exec /usr/local/bin/perl -S $0 ${1+"$@"}'
|
|
||||||
if $running_under_some_shell;
|
|
||||||
|
|
||||||
while ($ARGV[0] =~ /^-/) {
|
|
||||||
$_ = shift;
|
|
||||||
last if /^--$/;
|
|
||||||
if (/^-n$/) {
|
|
||||||
$nflag++;
|
|
||||||
next;
|
|
||||||
}
|
|
||||||
if (/^--apple$/) {
|
|
||||||
$apple = 1;
|
|
||||||
$symprefix = "_";
|
|
||||||
next;
|
|
||||||
}
|
|
||||||
die "I don't recognize this switch: $_\\n";
|
|
||||||
}
|
|
||||||
$printit++ unless $nflag;
|
|
||||||
|
|
||||||
$\ = "\n"; # automatically add newline on print
|
|
||||||
$n=0;
|
|
||||||
|
|
||||||
$thumb = 0; # ARM mode by default, not Thumb.
|
|
||||||
@proc_stack = ();
|
|
||||||
|
|
||||||
printf (" .syntax unified\n");
|
|
||||||
|
|
||||||
LINE:
|
|
||||||
while (<>) {
|
|
||||||
|
|
||||||
# For ADRLs we need to add a new line after the substituted one.
|
|
||||||
$addPadding = 0;
|
|
||||||
|
|
||||||
# First, we do not dare to touch *anything* inside double quotes, do we?
|
|
||||||
# Second, if you want a dollar character in the string,
|
|
||||||
# insert two of them -- that's how ARM C and assembler treat strings.
|
|
||||||
s/^([A-Za-z_]\w*)[ \t]+DCB[ \t]*\"/$1: .ascii \"/ && do { s/\$\$/\$/g; next };
|
|
||||||
s/\bDCB\b[ \t]*\"/.ascii \"/ && do { s/\$\$/\$/g; next };
|
|
||||||
s/^(\S+)\s+RN\s+(\S+)/$1 .req r$2/ && do { s/\$\$/\$/g; next };
|
|
||||||
# If there's nothing on a line but a comment, don't try to apply any further
|
|
||||||
# substitutions (this is a cheap hack to avoid mucking up the license header)
|
|
||||||
s/^([ \t]*);/$1@/ && do { s/\$\$/\$/g; next };
|
|
||||||
# If substituted -- leave immediately !
|
|
||||||
|
|
||||||
s/@/,:/;
|
|
||||||
s/;/@/;
|
|
||||||
while ( /@.*'/ ) {
|
|
||||||
s/(@.*)'/$1/g;
|
|
||||||
}
|
|
||||||
s/\{FALSE\}/0/g;
|
|
||||||
s/\{TRUE\}/1/g;
|
|
||||||
s/\{(\w\w\w\w+)\}/$1/g;
|
|
||||||
s/\bINCLUDE[ \t]*([^ \t\n]+)/.include \"$1\"/;
|
|
||||||
s/\bGET[ \t]*([^ \t\n]+)/.include \"${ my $x=$1; $x =~ s|\.s|-gnu.S|; \$x }\"/;
|
|
||||||
s/\bIMPORT\b/.extern/;
|
|
||||||
s/\bEXPORT\b\s*/.global $symprefix/;
|
|
||||||
s/^(\s+)\[/$1IF/;
|
|
||||||
s/^(\s+)\|/$1ELSE/;
|
|
||||||
s/^(\s+)\]/$1ENDIF/;
|
|
||||||
s/IF *:DEF:/ .ifdef/;
|
|
||||||
s/IF *:LNOT: *:DEF:/ .ifndef/;
|
|
||||||
s/ELSE/ .else/;
|
|
||||||
s/ENDIF/ .endif/;
|
|
||||||
|
|
||||||
if( /\bIF\b/ ) {
|
|
||||||
s/\bIF\b/ .if/;
|
|
||||||
s/=/==/;
|
|
||||||
}
|
|
||||||
if ( $n == 2) {
|
|
||||||
s/\$/\\/g;
|
|
||||||
}
|
|
||||||
if ($n == 1) {
|
|
||||||
s/\$//g;
|
|
||||||
s/label//g;
|
|
||||||
$n = 2;
|
|
||||||
}
|
|
||||||
if ( /MACRO/ ) {
|
|
||||||
s/MACRO *\n/.macro/;
|
|
||||||
$n=1;
|
|
||||||
}
|
|
||||||
if ( /\bMEND\b/ ) {
|
|
||||||
s/\bMEND\b/.endm/;
|
|
||||||
$n=0;
|
|
||||||
}
|
|
||||||
|
|
||||||
# ".rdata" doesn't work in 'as' version 2.13.2, as it is ".rodata" there.
|
|
||||||
#
|
|
||||||
if ( /\bAREA\b/ ) {
|
|
||||||
my $align;
|
|
||||||
$align = "2";
|
|
||||||
if ( /ALIGN=(\d+)/ ) {
|
|
||||||
$align = $1;
|
|
||||||
}
|
|
||||||
if ( /CODE/ ) {
|
|
||||||
$nxstack = 1;
|
|
||||||
}
|
|
||||||
s/^(.+)CODE(.+)READONLY(.*)/ .text/;
|
|
||||||
s/^(.+)DATA(.+)READONLY(.*)/ .section .rdata/;
|
|
||||||
s/^(.+)\|\|\.data\|\|(.+)/ .data/;
|
|
||||||
s/^(.+)\|\|\.bss\|\|(.+)/ .bss/;
|
|
||||||
s/$/; .p2align $align/;
|
|
||||||
# Enable NEON instructions but don't produce a binary that requires
|
|
||||||
# ARMv7. RVCT does not have equivalent directives, so we just do this
|
|
||||||
# for all CODE areas.
|
|
||||||
if ( /.text/ ) {
|
|
||||||
# Separating .arch, .fpu, etc., by semicolons does not work (gas
|
|
||||||
# thinks the semicolon is part of the arch name, even when there's
|
|
||||||
# whitespace separating them). Sadly this means our line numbers
|
|
||||||
# won't match the original source file (we could use the .line
|
|
||||||
# directive, which is documented to be obsolete, but then gdb will
|
|
||||||
# show the wrong line in the translated source file).
|
|
||||||
s/$/; .arch armv7-a\n .fpu neon\n .object_arch armv4t/ unless ($apple);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
s/\|\|\.constdata\$(\d+)\|\|/.L_CONST$1/; # ||.constdata$3||
|
|
||||||
s/\|\|\.bss\$(\d+)\|\|/.L_BSS$1/; # ||.bss$2||
|
|
||||||
s/\|\|\.data\$(\d+)\|\|/.L_DATA$1/; # ||.data$2||
|
|
||||||
s/\|\|([a-zA-Z0-9_]+)\@([a-zA-Z0-9_]+)\|\|/@ $&/;
|
|
||||||
s/^(\s+)\%(\s)/ .space $1/;
|
|
||||||
|
|
||||||
s/\|(.+)\.(\d+)\|/\.$1_$2/; # |L80.123| -> .L80_123
|
|
||||||
s/\bCODE32\b/.code 32/ && do {$thumb = 0};
|
|
||||||
s/\bCODE16\b/.code 16/ && do {$thumb = 1};
|
|
||||||
if (/\bPROC\b/)
|
|
||||||
{
|
|
||||||
my $prefix;
|
|
||||||
my $proc;
|
|
||||||
/^([A-Za-z_\.]\w+)\b/;
|
|
||||||
$proc = $1;
|
|
||||||
$prefix = "";
|
|
||||||
if ($proc)
|
|
||||||
{
|
|
||||||
$prefix = $prefix.sprintf("\t.type\t%s, %%function", $proc) unless ($apple);
|
|
||||||
# Make sure we $prefix isn't empty here (for the $apple case).
|
|
||||||
# We handle mangling the label here, make sure it doesn't match
|
|
||||||
# the label handling below (if $prefix would be empty).
|
|
||||||
$prefix = $prefix."; ";
|
|
||||||
push(@proc_stack, $proc);
|
|
||||||
s/^[A-Za-z_\.]\w+/$symprefix$&:/;
|
|
||||||
}
|
|
||||||
$prefix = $prefix."\t.thumb_func; " if ($thumb);
|
|
||||||
s/\bPROC\b/@ $&/;
|
|
||||||
$_ = $prefix.$_;
|
|
||||||
}
|
|
||||||
s/^(\s*)(S|Q|SH|U|UQ|UH)ASX\b/$1$2ADDSUBX/;
|
|
||||||
s/^(\s*)(S|Q|SH|U|UQ|UH)SAX\b/$1$2SUBADDX/;
|
|
||||||
if (/\bENDP\b/)
|
|
||||||
{
|
|
||||||
my $proc;
|
|
||||||
s/\bENDP\b/@ $&/;
|
|
||||||
$proc = pop(@proc_stack);
|
|
||||||
$_ = "\t.size $proc, .-$proc".$_ if ($proc && !$apple);
|
|
||||||
}
|
|
||||||
s/\bSUBT\b/@ $&/;
|
|
||||||
s/\bDATA\b/@ $&/; # DATA directive is deprecated -- Asm guide, p.7-25
|
|
||||||
s/\bKEEP\b/@ $&/;
|
|
||||||
s/\bEXPORTAS\b/@ $&/;
|
|
||||||
s/\|\|(.)+\bEQU\b/@ $&/;
|
|
||||||
s/\|\|([\w\$]+)\|\|/$1/;
|
|
||||||
s/\bENTRY\b/@ $&/;
|
|
||||||
s/\bASSERT\b/@ $&/;
|
|
||||||
s/\bGBLL\b/@ $&/;
|
|
||||||
s/\bGBLA\b/@ $&/;
|
|
||||||
s/^\W+OPT\b/@ $&/;
|
|
||||||
s/:OR:/|/g;
|
|
||||||
s/:SHL:/<</g;
|
|
||||||
s/:SHR:/>>/g;
|
|
||||||
s/:AND:/&/g;
|
|
||||||
s/:LAND:/&&/g;
|
|
||||||
s/CPSR/cpsr/;
|
|
||||||
s/SPSR/spsr/;
|
|
||||||
s/ALIGN$/.balign 4/;
|
|
||||||
s/ALIGN\s+([0-9x]+)$/.balign $1/;
|
|
||||||
s/psr_cxsf/psr_all/;
|
|
||||||
s/LTORG/.ltorg/;
|
|
||||||
s/^([A-Za-z_]\w*)[ \t]+EQU/ .set $1,/;
|
|
||||||
s/^([A-Za-z_]\w*)[ \t]+SETL/ .set $1,/;
|
|
||||||
s/^([A-Za-z_]\w*)[ \t]+SETA/ .set $1,/;
|
|
||||||
s/^([A-Za-z_]\w*)[ \t]+\*/ .set $1,/;
|
|
||||||
|
|
||||||
# {PC} + 0xdeadfeed --> . + 0xdeadfeed
|
|
||||||
s/\{PC\} \+/ \. +/;
|
|
||||||
|
|
||||||
# Single hex constant on the line !
|
|
||||||
#
|
|
||||||
# >>> NOTE <<<
|
|
||||||
# Double-precision floats in gcc are always mixed-endian, which means
|
|
||||||
# bytes in two words are little-endian, but words are big-endian.
|
|
||||||
# So, 0x0000deadfeed0000 would be stored as 0x0000dead at low address
|
|
||||||
# and 0xfeed0000 at high address.
|
|
||||||
#
|
|
||||||
s/\bDCFD\b[ \t]+0x([a-fA-F0-9]{8})([a-fA-F0-9]{8})/.long 0x$1, 0x$2/;
|
|
||||||
# Only decimal constants on the line, no hex !
|
|
||||||
s/\bDCFD\b[ \t]+([0-9\.\-]+)/.double $1/;
|
|
||||||
|
|
||||||
# Single hex constant on the line !
|
|
||||||
# s/\bDCFS\b[ \t]+0x([a-f0-9]{8})([a-f0-9]{8})/.long 0x$1, 0x$2/;
|
|
||||||
# Only decimal constants on the line, no hex !
|
|
||||||
# s/\bDCFS\b[ \t]+([0-9\.\-]+)/.double $1/;
|
|
||||||
s/\bDCFS[ \t]+0x/.word 0x/;
|
|
||||||
s/\bDCFS\b/.float/;
|
|
||||||
|
|
||||||
s/^([A-Za-z_]\w*)[ \t]+DCD/$1 .word/;
|
|
||||||
s/\bDCD\b/.word/;
|
|
||||||
s/^([A-Za-z_]\w*)[ \t]+DCW/$1 .short/;
|
|
||||||
s/\bDCW\b/.short/;
|
|
||||||
s/^([A-Za-z_]\w*)[ \t]+DCB/$1 .byte/;
|
|
||||||
s/\bDCB\b/.byte/;
|
|
||||||
s/^([A-Za-z_]\w*)[ \t]+\%/.comm $1,/;
|
|
||||||
s/^[A-Za-z_\.]\w+/$&:/;
|
|
||||||
s/^(\d+)/$1:/;
|
|
||||||
s/\%(\d+)/$1b_or_f/;
|
|
||||||
s/\%[Bb](\d+)/$1b/;
|
|
||||||
s/\%[Ff](\d+)/$1f/;
|
|
||||||
s/\%[Ff][Tt](\d+)/$1f/;
|
|
||||||
s/&([\dA-Fa-f]+)/0x$1/;
|
|
||||||
if ( /\b2_[01]+\b/ ) {
|
|
||||||
s/\b2_([01]+)\b/conv$1&&&&/g;
|
|
||||||
while ( /[01][01][01][01]&&&&/ ) {
|
|
||||||
s/0000&&&&/&&&&0/g;
|
|
||||||
s/0001&&&&/&&&&1/g;
|
|
||||||
s/0010&&&&/&&&&2/g;
|
|
||||||
s/0011&&&&/&&&&3/g;
|
|
||||||
s/0100&&&&/&&&&4/g;
|
|
||||||
s/0101&&&&/&&&&5/g;
|
|
||||||
s/0110&&&&/&&&&6/g;
|
|
||||||
s/0111&&&&/&&&&7/g;
|
|
||||||
s/1000&&&&/&&&&8/g;
|
|
||||||
s/1001&&&&/&&&&9/g;
|
|
||||||
s/1010&&&&/&&&&A/g;
|
|
||||||
s/1011&&&&/&&&&B/g;
|
|
||||||
s/1100&&&&/&&&&C/g;
|
|
||||||
s/1101&&&&/&&&&D/g;
|
|
||||||
s/1110&&&&/&&&&E/g;
|
|
||||||
s/1111&&&&/&&&&F/g;
|
|
||||||
}
|
|
||||||
s/000&&&&/&&&&0/g;
|
|
||||||
s/001&&&&/&&&&1/g;
|
|
||||||
s/010&&&&/&&&&2/g;
|
|
||||||
s/011&&&&/&&&&3/g;
|
|
||||||
s/100&&&&/&&&&4/g;
|
|
||||||
s/101&&&&/&&&&5/g;
|
|
||||||
s/110&&&&/&&&&6/g;
|
|
||||||
s/111&&&&/&&&&7/g;
|
|
||||||
s/00&&&&/&&&&0/g;
|
|
||||||
s/01&&&&/&&&&1/g;
|
|
||||||
s/10&&&&/&&&&2/g;
|
|
||||||
s/11&&&&/&&&&3/g;
|
|
||||||
s/0&&&&/&&&&0/g;
|
|
||||||
s/1&&&&/&&&&1/g;
|
|
||||||
s/conv&&&&/0x/g;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ( /commandline/)
|
|
||||||
{
|
|
||||||
if( /-bigend/)
|
|
||||||
{
|
|
||||||
$bigend=1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if ( /\bDCDU\b/ )
|
|
||||||
{
|
|
||||||
my $cmd=$_;
|
|
||||||
my $value;
|
|
||||||
my $prefix;
|
|
||||||
my $w1;
|
|
||||||
my $w2;
|
|
||||||
my $w3;
|
|
||||||
my $w4;
|
|
||||||
|
|
||||||
s/\s+DCDU\b/@ $&/;
|
|
||||||
|
|
||||||
$cmd =~ /\bDCDU\b\s+0x(\d+)/;
|
|
||||||
$value = $1;
|
|
||||||
$value =~ /(\w\w)(\w\w)(\w\w)(\w\w)/;
|
|
||||||
$w1 = $1;
|
|
||||||
$w2 = $2;
|
|
||||||
$w3 = $3;
|
|
||||||
$w4 = $4;
|
|
||||||
|
|
||||||
if( $bigend ne "")
|
|
||||||
{
|
|
||||||
# big endian
|
|
||||||
$prefix = "\t.byte\t0x".$w1.";".
|
|
||||||
"\t.byte\t0x".$w2.";".
|
|
||||||
"\t.byte\t0x".$w3.";".
|
|
||||||
"\t.byte\t0x".$w4."; ";
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
# little endian
|
|
||||||
$prefix = "\t.byte\t0x".$w4.";".
|
|
||||||
"\t.byte\t0x".$w3.";".
|
|
||||||
"\t.byte\t0x".$w2.";".
|
|
||||||
"\t.byte\t0x".$w1."; ";
|
|
||||||
}
|
|
||||||
$_=$prefix.$_;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ( /\badrl\b/i )
|
|
||||||
{
|
|
||||||
s/\badrl\s+(\w+)\s*,\s*(\w+)/ldr $1,=$2/i;
|
|
||||||
$addPadding = 1;
|
|
||||||
}
|
|
||||||
s/\bEND\b/@ END/;
|
|
||||||
} continue {
|
|
||||||
printf ("%s", $_) if $printit;
|
|
||||||
if ($addPadding != 0)
|
|
||||||
{
|
|
||||||
printf (" mov r0,r0\n");
|
|
||||||
$addPadding = 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
#If we had a code section, mark that this object doesn't need an executable
|
|
||||||
# stack.
|
|
||||||
if ($nxstack && !$apple) {
|
|
||||||
printf (" .section\t.note.GNU-stack,\"\",\%\%progbits\n");
|
|
||||||
}
|
|
160
node_modules/@discordjs/opus/deps/opus/celt/arm/arm_celt_map.c
generated
vendored
160
node_modules/@discordjs/opus/deps/opus/celt/arm/arm_celt_map.c
generated
vendored
@ -1,160 +0,0 @@
|
|||||||
/* Copyright (c) 2010 Xiph.Org Foundation
|
|
||||||
* Copyright (c) 2013 Parrot */
|
|
||||||
/*
|
|
||||||
Redistribution and use in source and binary forms, with or without
|
|
||||||
modification, are permitted provided that the following conditions
|
|
||||||
are met:
|
|
||||||
|
|
||||||
- Redistributions of source code must retain the above copyright
|
|
||||||
notice, this list of conditions and the following disclaimer.
|
|
||||||
|
|
||||||
- Redistributions in binary form must reproduce the above copyright
|
|
||||||
notice, this list of conditions and the following disclaimer in the
|
|
||||||
documentation and/or other materials provided with the distribution.
|
|
||||||
|
|
||||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
||||||
``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
||||||
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
||||||
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
|
|
||||||
OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
|
||||||
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
||||||
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
|
||||||
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
|
||||||
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
||||||
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
||||||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifdef HAVE_CONFIG_H
|
|
||||||
#include "config.h"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include "pitch.h"
|
|
||||||
#include "kiss_fft.h"
|
|
||||||
#include "mdct.h"
|
|
||||||
|
|
||||||
#if defined(OPUS_HAVE_RTCD)
|
|
||||||
|
|
||||||
# if defined(OPUS_ARM_MAY_HAVE_NEON_INTR) && !defined(OPUS_ARM_PRESUME_NEON_INTR)
|
|
||||||
opus_val32 (*const CELT_INNER_PROD_IMPL[OPUS_ARCHMASK+1])(const opus_val16 *x, const opus_val16 *y, int N) = {
|
|
||||||
celt_inner_prod_c, /* ARMv4 */
|
|
||||||
celt_inner_prod_c, /* EDSP */
|
|
||||||
celt_inner_prod_c, /* Media */
|
|
||||||
celt_inner_prod_neon /* NEON */
|
|
||||||
};
|
|
||||||
|
|
||||||
void (*const DUAL_INNER_PROD_IMPL[OPUS_ARCHMASK+1])(const opus_val16 *x, const opus_val16 *y01, const opus_val16 *y02,
|
|
||||||
int N, opus_val32 *xy1, opus_val32 *xy2) = {
|
|
||||||
dual_inner_prod_c, /* ARMv4 */
|
|
||||||
dual_inner_prod_c, /* EDSP */
|
|
||||||
dual_inner_prod_c, /* Media */
|
|
||||||
dual_inner_prod_neon /* NEON */
|
|
||||||
};
|
|
||||||
# endif
|
|
||||||
|
|
||||||
# if defined(FIXED_POINT)
|
|
||||||
# if ((defined(OPUS_ARM_MAY_HAVE_NEON) && !defined(OPUS_ARM_PRESUME_NEON)) || \
|
|
||||||
(defined(OPUS_ARM_MAY_HAVE_MEDIA) && !defined(OPUS_ARM_PRESUME_MEDIA)) || \
|
|
||||||
(defined(OPUS_ARM_MAY_HAVE_EDSP) && !defined(OPUS_ARM_PRESUME_EDSP)))
|
|
||||||
opus_val32 (*const CELT_PITCH_XCORR_IMPL[OPUS_ARCHMASK+1])(const opus_val16 *,
|
|
||||||
const opus_val16 *, opus_val32 *, int, int, int) = {
|
|
||||||
celt_pitch_xcorr_c, /* ARMv4 */
|
|
||||||
MAY_HAVE_EDSP(celt_pitch_xcorr), /* EDSP */
|
|
||||||
MAY_HAVE_MEDIA(celt_pitch_xcorr), /* Media */
|
|
||||||
MAY_HAVE_NEON(celt_pitch_xcorr) /* NEON */
|
|
||||||
};
|
|
||||||
|
|
||||||
# endif
|
|
||||||
# else /* !FIXED_POINT */
|
|
||||||
# if defined(OPUS_ARM_MAY_HAVE_NEON_INTR) && !defined(OPUS_ARM_PRESUME_NEON_INTR)
|
|
||||||
void (*const CELT_PITCH_XCORR_IMPL[OPUS_ARCHMASK+1])(const opus_val16 *,
|
|
||||||
const opus_val16 *, opus_val32 *, int, int, int) = {
|
|
||||||
celt_pitch_xcorr_c, /* ARMv4 */
|
|
||||||
celt_pitch_xcorr_c, /* EDSP */
|
|
||||||
celt_pitch_xcorr_c, /* Media */
|
|
||||||
celt_pitch_xcorr_float_neon /* Neon */
|
|
||||||
};
|
|
||||||
# endif
|
|
||||||
# endif /* FIXED_POINT */
|
|
||||||
|
|
||||||
#if defined(FIXED_POINT) && defined(OPUS_HAVE_RTCD) && \
|
|
||||||
defined(OPUS_ARM_MAY_HAVE_NEON_INTR) && !defined(OPUS_ARM_PRESUME_NEON_INTR)
|
|
||||||
|
|
||||||
void (*const XCORR_KERNEL_IMPL[OPUS_ARCHMASK + 1])(
|
|
||||||
const opus_val16 *x,
|
|
||||||
const opus_val16 *y,
|
|
||||||
opus_val32 sum[4],
|
|
||||||
int len
|
|
||||||
) = {
|
|
||||||
xcorr_kernel_c, /* ARMv4 */
|
|
||||||
xcorr_kernel_c, /* EDSP */
|
|
||||||
xcorr_kernel_c, /* Media */
|
|
||||||
xcorr_kernel_neon_fixed, /* Neon */
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif
|
|
||||||
|
|
||||||
# if defined(OPUS_ARM_MAY_HAVE_NEON_INTR)
|
|
||||||
# if defined(HAVE_ARM_NE10)
|
|
||||||
# if defined(CUSTOM_MODES)
|
|
||||||
int (*const OPUS_FFT_ALLOC_ARCH_IMPL[OPUS_ARCHMASK+1])(kiss_fft_state *st) = {
|
|
||||||
opus_fft_alloc_arch_c, /* ARMv4 */
|
|
||||||
opus_fft_alloc_arch_c, /* EDSP */
|
|
||||||
opus_fft_alloc_arch_c, /* Media */
|
|
||||||
opus_fft_alloc_arm_neon /* Neon with NE10 library support */
|
|
||||||
};
|
|
||||||
|
|
||||||
void (*const OPUS_FFT_FREE_ARCH_IMPL[OPUS_ARCHMASK+1])(kiss_fft_state *st) = {
|
|
||||||
opus_fft_free_arch_c, /* ARMv4 */
|
|
||||||
opus_fft_free_arch_c, /* EDSP */
|
|
||||||
opus_fft_free_arch_c, /* Media */
|
|
||||||
opus_fft_free_arm_neon /* Neon with NE10 */
|
|
||||||
};
|
|
||||||
# endif /* CUSTOM_MODES */
|
|
||||||
|
|
||||||
void (*const OPUS_FFT[OPUS_ARCHMASK+1])(const kiss_fft_state *cfg,
|
|
||||||
const kiss_fft_cpx *fin,
|
|
||||||
kiss_fft_cpx *fout) = {
|
|
||||||
opus_fft_c, /* ARMv4 */
|
|
||||||
opus_fft_c, /* EDSP */
|
|
||||||
opus_fft_c, /* Media */
|
|
||||||
opus_fft_neon /* Neon with NE10 */
|
|
||||||
};
|
|
||||||
|
|
||||||
void (*const OPUS_IFFT[OPUS_ARCHMASK+1])(const kiss_fft_state *cfg,
|
|
||||||
const kiss_fft_cpx *fin,
|
|
||||||
kiss_fft_cpx *fout) = {
|
|
||||||
opus_ifft_c, /* ARMv4 */
|
|
||||||
opus_ifft_c, /* EDSP */
|
|
||||||
opus_ifft_c, /* Media */
|
|
||||||
opus_ifft_neon /* Neon with NE10 */
|
|
||||||
};
|
|
||||||
|
|
||||||
void (*const CLT_MDCT_FORWARD_IMPL[OPUS_ARCHMASK+1])(const mdct_lookup *l,
|
|
||||||
kiss_fft_scalar *in,
|
|
||||||
kiss_fft_scalar * OPUS_RESTRICT out,
|
|
||||||
const opus_val16 *window,
|
|
||||||
int overlap, int shift,
|
|
||||||
int stride, int arch) = {
|
|
||||||
clt_mdct_forward_c, /* ARMv4 */
|
|
||||||
clt_mdct_forward_c, /* EDSP */
|
|
||||||
clt_mdct_forward_c, /* Media */
|
|
||||||
clt_mdct_forward_neon /* Neon with NE10 */
|
|
||||||
};
|
|
||||||
|
|
||||||
void (*const CLT_MDCT_BACKWARD_IMPL[OPUS_ARCHMASK+1])(const mdct_lookup *l,
|
|
||||||
kiss_fft_scalar *in,
|
|
||||||
kiss_fft_scalar * OPUS_RESTRICT out,
|
|
||||||
const opus_val16 *window,
|
|
||||||
int overlap, int shift,
|
|
||||||
int stride, int arch) = {
|
|
||||||
clt_mdct_backward_c, /* ARMv4 */
|
|
||||||
clt_mdct_backward_c, /* EDSP */
|
|
||||||
clt_mdct_backward_c, /* Media */
|
|
||||||
clt_mdct_backward_neon /* Neon with NE10 */
|
|
||||||
};
|
|
||||||
|
|
||||||
# endif /* HAVE_ARM_NE10 */
|
|
||||||
# endif /* OPUS_ARM_MAY_HAVE_NEON_INTR */
|
|
||||||
|
|
||||||
#endif /* OPUS_HAVE_RTCD */
|
|
185
node_modules/@discordjs/opus/deps/opus/celt/arm/armcpu.c
generated
vendored
185
node_modules/@discordjs/opus/deps/opus/celt/arm/armcpu.c
generated
vendored
@ -1,185 +0,0 @@
|
|||||||
/* Copyright (c) 2010 Xiph.Org Foundation
|
|
||||||
* Copyright (c) 2013 Parrot */
|
|
||||||
/*
|
|
||||||
Redistribution and use in source and binary forms, with or without
|
|
||||||
modification, are permitted provided that the following conditions
|
|
||||||
are met:
|
|
||||||
|
|
||||||
- Redistributions of source code must retain the above copyright
|
|
||||||
notice, this list of conditions and the following disclaimer.
|
|
||||||
|
|
||||||
- Redistributions in binary form must reproduce the above copyright
|
|
||||||
notice, this list of conditions and the following disclaimer in the
|
|
||||||
documentation and/or other materials provided with the distribution.
|
|
||||||
|
|
||||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
||||||
``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
||||||
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
||||||
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
|
|
||||||
OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
|
||||||
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
||||||
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
|
||||||
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
|
||||||
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
||||||
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
||||||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
||||||
*/
|
|
||||||
|
|
||||||
/* Original code from libtheora modified to suit to Opus */
|
|
||||||
|
|
||||||
#ifdef HAVE_CONFIG_H
|
|
||||||
#include "config.h"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef OPUS_HAVE_RTCD
|
|
||||||
|
|
||||||
#include "armcpu.h"
|
|
||||||
#include "cpu_support.h"
|
|
||||||
#include "os_support.h"
|
|
||||||
#include "opus_types.h"
|
|
||||||
#include "arch.h"
|
|
||||||
|
|
||||||
#define OPUS_CPU_ARM_V4_FLAG (1<<OPUS_ARCH_ARM_V4)
|
|
||||||
#define OPUS_CPU_ARM_EDSP_FLAG (1<<OPUS_ARCH_ARM_EDSP)
|
|
||||||
#define OPUS_CPU_ARM_MEDIA_FLAG (1<<OPUS_ARCH_ARM_MEDIA)
|
|
||||||
#define OPUS_CPU_ARM_NEON_FLAG (1<<OPUS_ARCH_ARM_NEON)
|
|
||||||
|
|
||||||
#if defined(_MSC_VER)
|
|
||||||
/*For GetExceptionCode() and EXCEPTION_ILLEGAL_INSTRUCTION.*/
|
|
||||||
# define WIN32_LEAN_AND_MEAN
|
|
||||||
# define WIN32_EXTRA_LEAN
|
|
||||||
# include <windows.h>
|
|
||||||
|
|
||||||
static OPUS_INLINE opus_uint32 opus_cpu_capabilities(void){
|
|
||||||
opus_uint32 flags;
|
|
||||||
flags=0;
|
|
||||||
/* MSVC has no OPUS_INLINE __asm support for ARM, but it does let you __emit
|
|
||||||
* instructions via their assembled hex code.
|
|
||||||
* All of these instructions should be essentially nops. */
|
|
||||||
# if defined(OPUS_ARM_MAY_HAVE_EDSP) || defined(OPUS_ARM_MAY_HAVE_MEDIA) \
|
|
||||||
|| defined(OPUS_ARM_MAY_HAVE_NEON) || defined(OPUS_ARM_MAY_HAVE_NEON_INTR)
|
|
||||||
__try{
|
|
||||||
/*PLD [r13]*/
|
|
||||||
__emit(0xF5DDF000);
|
|
||||||
flags|=OPUS_CPU_ARM_EDSP_FLAG;
|
|
||||||
}
|
|
||||||
__except(GetExceptionCode()==EXCEPTION_ILLEGAL_INSTRUCTION){
|
|
||||||
/*Ignore exception.*/
|
|
||||||
}
|
|
||||||
# if defined(OPUS_ARM_MAY_HAVE_MEDIA) \
|
|
||||||
|| defined(OPUS_ARM_MAY_HAVE_NEON) || defined(OPUS_ARM_MAY_HAVE_NEON_INTR)
|
|
||||||
__try{
|
|
||||||
/*SHADD8 r3,r3,r3*/
|
|
||||||
__emit(0xE6333F93);
|
|
||||||
flags|=OPUS_CPU_ARM_MEDIA_FLAG;
|
|
||||||
}
|
|
||||||
__except(GetExceptionCode()==EXCEPTION_ILLEGAL_INSTRUCTION){
|
|
||||||
/*Ignore exception.*/
|
|
||||||
}
|
|
||||||
# if defined(OPUS_ARM_MAY_HAVE_NEON) || defined(OPUS_ARM_MAY_HAVE_NEON_INTR)
|
|
||||||
__try{
|
|
||||||
/*VORR q0,q0,q0*/
|
|
||||||
__emit(0xF2200150);
|
|
||||||
flags|=OPUS_CPU_ARM_NEON_FLAG;
|
|
||||||
}
|
|
||||||
__except(GetExceptionCode()==EXCEPTION_ILLEGAL_INSTRUCTION){
|
|
||||||
/*Ignore exception.*/
|
|
||||||
}
|
|
||||||
# endif
|
|
||||||
# endif
|
|
||||||
# endif
|
|
||||||
return flags;
|
|
||||||
}
|
|
||||||
|
|
||||||
#elif defined(__linux__)
|
|
||||||
/* Linux based */
|
|
||||||
opus_uint32 opus_cpu_capabilities(void)
|
|
||||||
{
|
|
||||||
opus_uint32 flags = 0;
|
|
||||||
FILE *cpuinfo;
|
|
||||||
|
|
||||||
/* Reading /proc/self/auxv would be easier, but that doesn't work reliably on
|
|
||||||
* Android */
|
|
||||||
cpuinfo = fopen("/proc/cpuinfo", "r");
|
|
||||||
|
|
||||||
if(cpuinfo != NULL)
|
|
||||||
{
|
|
||||||
/* 512 should be enough for anybody (it's even enough for all the flags that
|
|
||||||
* x86 has accumulated... so far). */
|
|
||||||
char buf[512];
|
|
||||||
|
|
||||||
while(fgets(buf, 512, cpuinfo) != NULL)
|
|
||||||
{
|
|
||||||
# if defined(OPUS_ARM_MAY_HAVE_EDSP) || defined(OPUS_ARM_MAY_HAVE_MEDIA) \
|
|
||||||
|| defined(OPUS_ARM_MAY_HAVE_NEON) || defined(OPUS_ARM_MAY_HAVE_NEON_INTR)
|
|
||||||
/* Search for edsp and neon flag */
|
|
||||||
if(memcmp(buf, "Features", 8) == 0)
|
|
||||||
{
|
|
||||||
char *p;
|
|
||||||
p = strstr(buf, " edsp");
|
|
||||||
if(p != NULL && (p[5] == ' ' || p[5] == '\n'))
|
|
||||||
flags |= OPUS_CPU_ARM_EDSP_FLAG;
|
|
||||||
|
|
||||||
# if defined(OPUS_ARM_MAY_HAVE_NEON) || defined(OPUS_ARM_MAY_HAVE_NEON_INTR)
|
|
||||||
p = strstr(buf, " neon");
|
|
||||||
if(p != NULL && (p[5] == ' ' || p[5] == '\n'))
|
|
||||||
flags |= OPUS_CPU_ARM_NEON_FLAG;
|
|
||||||
# endif
|
|
||||||
}
|
|
||||||
# endif
|
|
||||||
|
|
||||||
# if defined(OPUS_ARM_MAY_HAVE_MEDIA) \
|
|
||||||
|| defined(OPUS_ARM_MAY_HAVE_NEON) || defined(OPUS_ARM_MAY_HAVE_NEON_INTR)
|
|
||||||
/* Search for media capabilities (>= ARMv6) */
|
|
||||||
if(memcmp(buf, "CPU architecture:", 17) == 0)
|
|
||||||
{
|
|
||||||
int version;
|
|
||||||
version = atoi(buf+17);
|
|
||||||
|
|
||||||
if(version >= 6)
|
|
||||||
flags |= OPUS_CPU_ARM_MEDIA_FLAG;
|
|
||||||
}
|
|
||||||
# endif
|
|
||||||
}
|
|
||||||
|
|
||||||
fclose(cpuinfo);
|
|
||||||
}
|
|
||||||
return flags;
|
|
||||||
}
|
|
||||||
#else
|
|
||||||
/* The feature registers which can tell us what the processor supports are
|
|
||||||
* accessible in priveleged modes only, so we can't have a general user-space
|
|
||||||
* detection method like on x86.*/
|
|
||||||
# error "Configured to use ARM asm but no CPU detection method available for " \
|
|
||||||
"your platform. Reconfigure with --disable-rtcd (or send patches)."
|
|
||||||
#endif
|
|
||||||
|
|
||||||
int opus_select_arch(void)
|
|
||||||
{
|
|
||||||
opus_uint32 flags = opus_cpu_capabilities();
|
|
||||||
int arch = 0;
|
|
||||||
|
|
||||||
if(!(flags & OPUS_CPU_ARM_EDSP_FLAG)) {
|
|
||||||
/* Asserts ensure arch values are sequential */
|
|
||||||
celt_assert(arch == OPUS_ARCH_ARM_V4);
|
|
||||||
return arch;
|
|
||||||
}
|
|
||||||
arch++;
|
|
||||||
|
|
||||||
if(!(flags & OPUS_CPU_ARM_MEDIA_FLAG)) {
|
|
||||||
celt_assert(arch == OPUS_ARCH_ARM_EDSP);
|
|
||||||
return arch;
|
|
||||||
}
|
|
||||||
arch++;
|
|
||||||
|
|
||||||
if(!(flags & OPUS_CPU_ARM_NEON_FLAG)) {
|
|
||||||
celt_assert(arch == OPUS_ARCH_ARM_MEDIA);
|
|
||||||
return arch;
|
|
||||||
}
|
|
||||||
arch++;
|
|
||||||
|
|
||||||
celt_assert(arch == OPUS_ARCH_ARM_NEON);
|
|
||||||
return arch;
|
|
||||||
}
|
|
||||||
|
|
||||||
#endif
|
|
77
node_modules/@discordjs/opus/deps/opus/celt/arm/armcpu.h
generated
vendored
77
node_modules/@discordjs/opus/deps/opus/celt/arm/armcpu.h
generated
vendored
@ -1,77 +0,0 @@
|
|||||||
/* Copyright (c) 2010 Xiph.Org Foundation
|
|
||||||
* Copyright (c) 2013 Parrot */
|
|
||||||
/*
|
|
||||||
Redistribution and use in source and binary forms, with or without
|
|
||||||
modification, are permitted provided that the following conditions
|
|
||||||
are met:
|
|
||||||
|
|
||||||
- Redistributions of source code must retain the above copyright
|
|
||||||
notice, this list of conditions and the following disclaimer.
|
|
||||||
|
|
||||||
- Redistributions in binary form must reproduce the above copyright
|
|
||||||
notice, this list of conditions and the following disclaimer in the
|
|
||||||
documentation and/or other materials provided with the distribution.
|
|
||||||
|
|
||||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
||||||
``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
||||||
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
||||||
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
|
|
||||||
OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
|
||||||
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
||||||
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
|
||||||
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
|
||||||
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
||||||
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
||||||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#if !defined(ARMCPU_H)
|
|
||||||
# define ARMCPU_H
|
|
||||||
|
|
||||||
# if defined(OPUS_ARM_MAY_HAVE_EDSP)
|
|
||||||
# define MAY_HAVE_EDSP(name) name ## _edsp
|
|
||||||
# else
|
|
||||||
# define MAY_HAVE_EDSP(name) name ## _c
|
|
||||||
# endif
|
|
||||||
|
|
||||||
# if defined(OPUS_ARM_MAY_HAVE_MEDIA)
|
|
||||||
# define MAY_HAVE_MEDIA(name) name ## _media
|
|
||||||
# else
|
|
||||||
# define MAY_HAVE_MEDIA(name) MAY_HAVE_EDSP(name)
|
|
||||||
# endif
|
|
||||||
|
|
||||||
# if defined(OPUS_ARM_MAY_HAVE_NEON)
|
|
||||||
# define MAY_HAVE_NEON(name) name ## _neon
|
|
||||||
# else
|
|
||||||
# define MAY_HAVE_NEON(name) MAY_HAVE_MEDIA(name)
|
|
||||||
# endif
|
|
||||||
|
|
||||||
# if defined(OPUS_ARM_PRESUME_EDSP)
|
|
||||||
# define PRESUME_EDSP(name) name ## _edsp
|
|
||||||
# else
|
|
||||||
# define PRESUME_EDSP(name) name ## _c
|
|
||||||
# endif
|
|
||||||
|
|
||||||
# if defined(OPUS_ARM_PRESUME_MEDIA)
|
|
||||||
# define PRESUME_MEDIA(name) name ## _media
|
|
||||||
# else
|
|
||||||
# define PRESUME_MEDIA(name) PRESUME_EDSP(name)
|
|
||||||
# endif
|
|
||||||
|
|
||||||
# if defined(OPUS_ARM_PRESUME_NEON)
|
|
||||||
# define PRESUME_NEON(name) name ## _neon
|
|
||||||
# else
|
|
||||||
# define PRESUME_NEON(name) PRESUME_MEDIA(name)
|
|
||||||
# endif
|
|
||||||
|
|
||||||
# if defined(OPUS_HAVE_RTCD)
|
|
||||||
int opus_select_arch(void);
|
|
||||||
|
|
||||||
#define OPUS_ARCH_ARM_V4 (0)
|
|
||||||
#define OPUS_ARCH_ARM_EDSP (1)
|
|
||||||
#define OPUS_ARCH_ARM_MEDIA (2)
|
|
||||||
#define OPUS_ARCH_ARM_NEON (3)
|
|
||||||
|
|
||||||
# endif
|
|
||||||
|
|
||||||
#endif
|
|
37
node_modules/@discordjs/opus/deps/opus/celt/arm/armopts.s.in
generated
vendored
37
node_modules/@discordjs/opus/deps/opus/celt/arm/armopts.s.in
generated
vendored
@ -1,37 +0,0 @@
|
|||||||
/* Copyright (C) 2013 Mozilla Corporation */
|
|
||||||
/*
|
|
||||||
Redistribution and use in source and binary forms, with or without
|
|
||||||
modification, are permitted provided that the following conditions
|
|
||||||
are met:
|
|
||||||
|
|
||||||
- Redistributions of source code must retain the above copyright
|
|
||||||
notice, this list of conditions and the following disclaimer.
|
|
||||||
|
|
||||||
- Redistributions in binary form must reproduce the above copyright
|
|
||||||
notice, this list of conditions and the following disclaimer in the
|
|
||||||
documentation and/or other materials provided with the distribution.
|
|
||||||
|
|
||||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
||||||
``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
||||||
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
||||||
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
|
|
||||||
OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
|
||||||
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
||||||
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
|
||||||
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
|
||||||
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
||||||
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
||||||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
||||||
*/
|
|
||||||
|
|
||||||
; Set the following to 1 if we have EDSP instructions
|
|
||||||
; (LDRD/STRD, etc., ARMv5E and later).
|
|
||||||
OPUS_ARM_MAY_HAVE_EDSP * @OPUS_ARM_MAY_HAVE_EDSP@
|
|
||||||
|
|
||||||
; Set the following to 1 if we have ARMv6 media instructions.
|
|
||||||
OPUS_ARM_MAY_HAVE_MEDIA * @OPUS_ARM_MAY_HAVE_MEDIA@
|
|
||||||
|
|
||||||
; Set the following to 1 if we have NEON (some ARMv7)
|
|
||||||
OPUS_ARM_MAY_HAVE_NEON * @OPUS_ARM_MAY_HAVE_NEON@
|
|
||||||
|
|
||||||
END
|
|
173
node_modules/@discordjs/opus/deps/opus/celt/arm/celt_fft_ne10.c
generated
vendored
173
node_modules/@discordjs/opus/deps/opus/celt/arm/celt_fft_ne10.c
generated
vendored
@ -1,173 +0,0 @@
|
|||||||
/* Copyright (c) 2015 Xiph.Org Foundation
|
|
||||||
Written by Viswanath Puttagunta */
|
|
||||||
/**
|
|
||||||
@file celt_fft_ne10.c
|
|
||||||
@brief ARM Neon optimizations for fft using NE10 library
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*
|
|
||||||
Redistribution and use in source and binary forms, with or without
|
|
||||||
modification, are permitted provided that the following conditions
|
|
||||||
are met:
|
|
||||||
|
|
||||||
- Redistributions of source code must retain the above copyright
|
|
||||||
notice, this list of conditions and the following disclaimer.
|
|
||||||
|
|
||||||
- Redistributions in binary form must reproduce the above copyright
|
|
||||||
notice, this list of conditions and the following disclaimer in the
|
|
||||||
documentation and/or other materials provided with the distribution.
|
|
||||||
|
|
||||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
||||||
``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
||||||
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
||||||
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
|
|
||||||
OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
|
||||||
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
||||||
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
|
||||||
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
|
||||||
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
||||||
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
||||||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifndef SKIP_CONFIG_H
|
|
||||||
#ifdef HAVE_CONFIG_H
|
|
||||||
#include "config.h"
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include <NE10_dsp.h>
|
|
||||||
#include "os_support.h"
|
|
||||||
#include "kiss_fft.h"
|
|
||||||
#include "stack_alloc.h"
|
|
||||||
|
|
||||||
#if !defined(FIXED_POINT)
|
|
||||||
# define NE10_FFT_ALLOC_C2C_TYPE_NEON ne10_fft_alloc_c2c_float32_neon
|
|
||||||
# define NE10_FFT_CFG_TYPE_T ne10_fft_cfg_float32_t
|
|
||||||
# define NE10_FFT_STATE_TYPE_T ne10_fft_state_float32_t
|
|
||||||
# define NE10_FFT_DESTROY_C2C_TYPE ne10_fft_destroy_c2c_float32
|
|
||||||
# define NE10_FFT_CPX_TYPE_T ne10_fft_cpx_float32_t
|
|
||||||
# define NE10_FFT_C2C_1D_TYPE_NEON ne10_fft_c2c_1d_float32_neon
|
|
||||||
#else
|
|
||||||
# define NE10_FFT_ALLOC_C2C_TYPE_NEON(nfft) ne10_fft_alloc_c2c_int32_neon(nfft)
|
|
||||||
# define NE10_FFT_CFG_TYPE_T ne10_fft_cfg_int32_t
|
|
||||||
# define NE10_FFT_STATE_TYPE_T ne10_fft_state_int32_t
|
|
||||||
# define NE10_FFT_DESTROY_C2C_TYPE ne10_fft_destroy_c2c_int32
|
|
||||||
# define NE10_FFT_DESTROY_C2C_TYPE ne10_fft_destroy_c2c_int32
|
|
||||||
# define NE10_FFT_CPX_TYPE_T ne10_fft_cpx_int32_t
|
|
||||||
# define NE10_FFT_C2C_1D_TYPE_NEON ne10_fft_c2c_1d_int32_neon
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if defined(CUSTOM_MODES)
|
|
||||||
|
|
||||||
/* nfft lengths in NE10 that support scaled fft */
|
|
||||||
# define NE10_FFTSCALED_SUPPORT_MAX 4
|
|
||||||
static const int ne10_fft_scaled_support[NE10_FFTSCALED_SUPPORT_MAX] = {
|
|
||||||
480, 240, 120, 60
|
|
||||||
};
|
|
||||||
|
|
||||||
int opus_fft_alloc_arm_neon(kiss_fft_state *st)
|
|
||||||
{
|
|
||||||
int i;
|
|
||||||
size_t memneeded = sizeof(struct arch_fft_state);
|
|
||||||
|
|
||||||
st->arch_fft = (arch_fft_state *)opus_alloc(memneeded);
|
|
||||||
if (!st->arch_fft)
|
|
||||||
return -1;
|
|
||||||
|
|
||||||
for (i = 0; i < NE10_FFTSCALED_SUPPORT_MAX; i++) {
|
|
||||||
if(st->nfft == ne10_fft_scaled_support[i])
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
if (i == NE10_FFTSCALED_SUPPORT_MAX) {
|
|
||||||
/* This nfft length (scaled fft) is not supported in NE10 */
|
|
||||||
st->arch_fft->is_supported = 0;
|
|
||||||
st->arch_fft->priv = NULL;
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
st->arch_fft->is_supported = 1;
|
|
||||||
st->arch_fft->priv = (void *)NE10_FFT_ALLOC_C2C_TYPE_NEON(st->nfft);
|
|
||||||
if (st->arch_fft->priv == NULL) {
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
void opus_fft_free_arm_neon(kiss_fft_state *st)
|
|
||||||
{
|
|
||||||
NE10_FFT_CFG_TYPE_T cfg;
|
|
||||||
|
|
||||||
if (!st->arch_fft)
|
|
||||||
return;
|
|
||||||
|
|
||||||
cfg = (NE10_FFT_CFG_TYPE_T)st->arch_fft->priv;
|
|
||||||
if (cfg)
|
|
||||||
NE10_FFT_DESTROY_C2C_TYPE(cfg);
|
|
||||||
opus_free(st->arch_fft);
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
void opus_fft_neon(const kiss_fft_state *st,
|
|
||||||
const kiss_fft_cpx *fin,
|
|
||||||
kiss_fft_cpx *fout)
|
|
||||||
{
|
|
||||||
NE10_FFT_STATE_TYPE_T state;
|
|
||||||
NE10_FFT_CFG_TYPE_T cfg = &state;
|
|
||||||
VARDECL(NE10_FFT_CPX_TYPE_T, buffer);
|
|
||||||
SAVE_STACK;
|
|
||||||
ALLOC(buffer, st->nfft, NE10_FFT_CPX_TYPE_T);
|
|
||||||
|
|
||||||
if (!st->arch_fft->is_supported) {
|
|
||||||
/* This nfft length (scaled fft) not supported in NE10 */
|
|
||||||
opus_fft_c(st, fin, fout);
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
memcpy((void *)cfg, st->arch_fft->priv, sizeof(NE10_FFT_STATE_TYPE_T));
|
|
||||||
state.buffer = (NE10_FFT_CPX_TYPE_T *)&buffer[0];
|
|
||||||
#if !defined(FIXED_POINT)
|
|
||||||
state.is_forward_scaled = 1;
|
|
||||||
|
|
||||||
NE10_FFT_C2C_1D_TYPE_NEON((NE10_FFT_CPX_TYPE_T *)fout,
|
|
||||||
(NE10_FFT_CPX_TYPE_T *)fin,
|
|
||||||
cfg, 0);
|
|
||||||
#else
|
|
||||||
NE10_FFT_C2C_1D_TYPE_NEON((NE10_FFT_CPX_TYPE_T *)fout,
|
|
||||||
(NE10_FFT_CPX_TYPE_T *)fin,
|
|
||||||
cfg, 0, 1);
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
RESTORE_STACK;
|
|
||||||
}
|
|
||||||
|
|
||||||
void opus_ifft_neon(const kiss_fft_state *st,
|
|
||||||
const kiss_fft_cpx *fin,
|
|
||||||
kiss_fft_cpx *fout)
|
|
||||||
{
|
|
||||||
NE10_FFT_STATE_TYPE_T state;
|
|
||||||
NE10_FFT_CFG_TYPE_T cfg = &state;
|
|
||||||
VARDECL(NE10_FFT_CPX_TYPE_T, buffer);
|
|
||||||
SAVE_STACK;
|
|
||||||
ALLOC(buffer, st->nfft, NE10_FFT_CPX_TYPE_T);
|
|
||||||
|
|
||||||
if (!st->arch_fft->is_supported) {
|
|
||||||
/* This nfft length (scaled fft) not supported in NE10 */
|
|
||||||
opus_ifft_c(st, fin, fout);
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
memcpy((void *)cfg, st->arch_fft->priv, sizeof(NE10_FFT_STATE_TYPE_T));
|
|
||||||
state.buffer = (NE10_FFT_CPX_TYPE_T *)&buffer[0];
|
|
||||||
#if !defined(FIXED_POINT)
|
|
||||||
state.is_backward_scaled = 0;
|
|
||||||
|
|
||||||
NE10_FFT_C2C_1D_TYPE_NEON((NE10_FFT_CPX_TYPE_T *)fout,
|
|
||||||
(NE10_FFT_CPX_TYPE_T *)fin,
|
|
||||||
cfg, 1);
|
|
||||||
#else
|
|
||||||
NE10_FFT_C2C_1D_TYPE_NEON((NE10_FFT_CPX_TYPE_T *)fout,
|
|
||||||
(NE10_FFT_CPX_TYPE_T *)fin,
|
|
||||||
cfg, 1, 0);
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
RESTORE_STACK;
|
|
||||||
}
|
|
258
node_modules/@discordjs/opus/deps/opus/celt/arm/celt_mdct_ne10.c
generated
vendored
258
node_modules/@discordjs/opus/deps/opus/celt/arm/celt_mdct_ne10.c
generated
vendored
@ -1,258 +0,0 @@
|
|||||||
/* Copyright (c) 2015 Xiph.Org Foundation
|
|
||||||
Written by Viswanath Puttagunta */
|
|
||||||
/**
|
|
||||||
@file celt_mdct_ne10.c
|
|
||||||
@brief ARM Neon optimizations for mdct using NE10 library
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*
|
|
||||||
Redistribution and use in source and binary forms, with or without
|
|
||||||
modification, are permitted provided that the following conditions
|
|
||||||
are met:
|
|
||||||
|
|
||||||
- Redistributions of source code must retain the above copyright
|
|
||||||
notice, this list of conditions and the following disclaimer.
|
|
||||||
|
|
||||||
- Redistributions in binary form must reproduce the above copyright
|
|
||||||
notice, this list of conditions and the following disclaimer in the
|
|
||||||
documentation and/or other materials provided with the distribution.
|
|
||||||
|
|
||||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
||||||
``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
||||||
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
||||||
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
|
|
||||||
OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
|
||||||
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
||||||
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
|
||||||
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
|
||||||
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
||||||
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
||||||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifndef SKIP_CONFIG_H
|
|
||||||
#ifdef HAVE_CONFIG_H
|
|
||||||
#include "config.h"
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include "kiss_fft.h"
|
|
||||||
#include "_kiss_fft_guts.h"
|
|
||||||
#include "mdct.h"
|
|
||||||
#include "stack_alloc.h"
|
|
||||||
|
|
||||||
void clt_mdct_forward_neon(const mdct_lookup *l,
|
|
||||||
kiss_fft_scalar *in,
|
|
||||||
kiss_fft_scalar * OPUS_RESTRICT out,
|
|
||||||
const opus_val16 *window,
|
|
||||||
int overlap, int shift, int stride, int arch)
|
|
||||||
{
|
|
||||||
int i;
|
|
||||||
int N, N2, N4;
|
|
||||||
VARDECL(kiss_fft_scalar, f);
|
|
||||||
VARDECL(kiss_fft_cpx, f2);
|
|
||||||
const kiss_fft_state *st = l->kfft[shift];
|
|
||||||
const kiss_twiddle_scalar *trig;
|
|
||||||
|
|
||||||
SAVE_STACK;
|
|
||||||
|
|
||||||
N = l->n;
|
|
||||||
trig = l->trig;
|
|
||||||
for (i=0;i<shift;i++)
|
|
||||||
{
|
|
||||||
N >>= 1;
|
|
||||||
trig += N;
|
|
||||||
}
|
|
||||||
N2 = N>>1;
|
|
||||||
N4 = N>>2;
|
|
||||||
|
|
||||||
ALLOC(f, N2, kiss_fft_scalar);
|
|
||||||
ALLOC(f2, N4, kiss_fft_cpx);
|
|
||||||
|
|
||||||
/* Consider the input to be composed of four blocks: [a, b, c, d] */
|
|
||||||
/* Window, shuffle, fold */
|
|
||||||
{
|
|
||||||
/* Temp pointers to make it really clear to the compiler what we're doing */
|
|
||||||
const kiss_fft_scalar * OPUS_RESTRICT xp1 = in+(overlap>>1);
|
|
||||||
const kiss_fft_scalar * OPUS_RESTRICT xp2 = in+N2-1+(overlap>>1);
|
|
||||||
kiss_fft_scalar * OPUS_RESTRICT yp = f;
|
|
||||||
const opus_val16 * OPUS_RESTRICT wp1 = window+(overlap>>1);
|
|
||||||
const opus_val16 * OPUS_RESTRICT wp2 = window+(overlap>>1)-1;
|
|
||||||
for(i=0;i<((overlap+3)>>2);i++)
|
|
||||||
{
|
|
||||||
/* Real part arranged as -d-cR, Imag part arranged as -b+aR*/
|
|
||||||
*yp++ = MULT16_32_Q15(*wp2, xp1[N2]) + MULT16_32_Q15(*wp1,*xp2);
|
|
||||||
*yp++ = MULT16_32_Q15(*wp1, *xp1) - MULT16_32_Q15(*wp2, xp2[-N2]);
|
|
||||||
xp1+=2;
|
|
||||||
xp2-=2;
|
|
||||||
wp1+=2;
|
|
||||||
wp2-=2;
|
|
||||||
}
|
|
||||||
wp1 = window;
|
|
||||||
wp2 = window+overlap-1;
|
|
||||||
for(;i<N4-((overlap+3)>>2);i++)
|
|
||||||
{
|
|
||||||
/* Real part arranged as a-bR, Imag part arranged as -c-dR */
|
|
||||||
*yp++ = *xp2;
|
|
||||||
*yp++ = *xp1;
|
|
||||||
xp1+=2;
|
|
||||||
xp2-=2;
|
|
||||||
}
|
|
||||||
for(;i<N4;i++)
|
|
||||||
{
|
|
||||||
/* Real part arranged as a-bR, Imag part arranged as -c-dR */
|
|
||||||
*yp++ = -MULT16_32_Q15(*wp1, xp1[-N2]) + MULT16_32_Q15(*wp2, *xp2);
|
|
||||||
*yp++ = MULT16_32_Q15(*wp2, *xp1) + MULT16_32_Q15(*wp1, xp2[N2]);
|
|
||||||
xp1+=2;
|
|
||||||
xp2-=2;
|
|
||||||
wp1+=2;
|
|
||||||
wp2-=2;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
/* Pre-rotation */
|
|
||||||
{
|
|
||||||
kiss_fft_scalar * OPUS_RESTRICT yp = f;
|
|
||||||
const kiss_twiddle_scalar *t = &trig[0];
|
|
||||||
for(i=0;i<N4;i++)
|
|
||||||
{
|
|
||||||
kiss_fft_cpx yc;
|
|
||||||
kiss_twiddle_scalar t0, t1;
|
|
||||||
kiss_fft_scalar re, im, yr, yi;
|
|
||||||
t0 = t[i];
|
|
||||||
t1 = t[N4+i];
|
|
||||||
re = *yp++;
|
|
||||||
im = *yp++;
|
|
||||||
yr = S_MUL(re,t0) - S_MUL(im,t1);
|
|
||||||
yi = S_MUL(im,t0) + S_MUL(re,t1);
|
|
||||||
yc.r = yr;
|
|
||||||
yc.i = yi;
|
|
||||||
f2[i] = yc;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
opus_fft(st, f2, (kiss_fft_cpx *)f, arch);
|
|
||||||
|
|
||||||
/* Post-rotate */
|
|
||||||
{
|
|
||||||
/* Temp pointers to make it really clear to the compiler what we're doing */
|
|
||||||
const kiss_fft_cpx * OPUS_RESTRICT fp = (kiss_fft_cpx *)f;
|
|
||||||
kiss_fft_scalar * OPUS_RESTRICT yp1 = out;
|
|
||||||
kiss_fft_scalar * OPUS_RESTRICT yp2 = out+stride*(N2-1);
|
|
||||||
const kiss_twiddle_scalar *t = &trig[0];
|
|
||||||
/* Temp pointers to make it really clear to the compiler what we're doing */
|
|
||||||
for(i=0;i<N4;i++)
|
|
||||||
{
|
|
||||||
kiss_fft_scalar yr, yi;
|
|
||||||
yr = S_MUL(fp->i,t[N4+i]) - S_MUL(fp->r,t[i]);
|
|
||||||
yi = S_MUL(fp->r,t[N4+i]) + S_MUL(fp->i,t[i]);
|
|
||||||
*yp1 = yr;
|
|
||||||
*yp2 = yi;
|
|
||||||
fp++;
|
|
||||||
yp1 += 2*stride;
|
|
||||||
yp2 -= 2*stride;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
RESTORE_STACK;
|
|
||||||
}
|
|
||||||
|
|
||||||
void clt_mdct_backward_neon(const mdct_lookup *l,
|
|
||||||
kiss_fft_scalar *in,
|
|
||||||
kiss_fft_scalar * OPUS_RESTRICT out,
|
|
||||||
const opus_val16 * OPUS_RESTRICT window,
|
|
||||||
int overlap, int shift, int stride, int arch)
|
|
||||||
{
|
|
||||||
int i;
|
|
||||||
int N, N2, N4;
|
|
||||||
VARDECL(kiss_fft_scalar, f);
|
|
||||||
const kiss_twiddle_scalar *trig;
|
|
||||||
const kiss_fft_state *st = l->kfft[shift];
|
|
||||||
|
|
||||||
N = l->n;
|
|
||||||
trig = l->trig;
|
|
||||||
for (i=0;i<shift;i++)
|
|
||||||
{
|
|
||||||
N >>= 1;
|
|
||||||
trig += N;
|
|
||||||
}
|
|
||||||
N2 = N>>1;
|
|
||||||
N4 = N>>2;
|
|
||||||
|
|
||||||
ALLOC(f, N2, kiss_fft_scalar);
|
|
||||||
|
|
||||||
/* Pre-rotate */
|
|
||||||
{
|
|
||||||
/* Temp pointers to make it really clear to the compiler what we're doing */
|
|
||||||
const kiss_fft_scalar * OPUS_RESTRICT xp1 = in;
|
|
||||||
const kiss_fft_scalar * OPUS_RESTRICT xp2 = in+stride*(N2-1);
|
|
||||||
kiss_fft_scalar * OPUS_RESTRICT yp = f;
|
|
||||||
const kiss_twiddle_scalar * OPUS_RESTRICT t = &trig[0];
|
|
||||||
for(i=0;i<N4;i++)
|
|
||||||
{
|
|
||||||
kiss_fft_scalar yr, yi;
|
|
||||||
yr = S_MUL(*xp2, t[i]) + S_MUL(*xp1, t[N4+i]);
|
|
||||||
yi = S_MUL(*xp1, t[i]) - S_MUL(*xp2, t[N4+i]);
|
|
||||||
yp[2*i] = yr;
|
|
||||||
yp[2*i+1] = yi;
|
|
||||||
xp1+=2*stride;
|
|
||||||
xp2-=2*stride;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
opus_ifft(st, (kiss_fft_cpx *)f, (kiss_fft_cpx*)(out+(overlap>>1)), arch);
|
|
||||||
|
|
||||||
/* Post-rotate and de-shuffle from both ends of the buffer at once to make
|
|
||||||
it in-place. */
|
|
||||||
{
|
|
||||||
kiss_fft_scalar * yp0 = out+(overlap>>1);
|
|
||||||
kiss_fft_scalar * yp1 = out+(overlap>>1)+N2-2;
|
|
||||||
const kiss_twiddle_scalar *t = &trig[0];
|
|
||||||
/* Loop to (N4+1)>>1 to handle odd N4. When N4 is odd, the
|
|
||||||
middle pair will be computed twice. */
|
|
||||||
for(i=0;i<(N4+1)>>1;i++)
|
|
||||||
{
|
|
||||||
kiss_fft_scalar re, im, yr, yi;
|
|
||||||
kiss_twiddle_scalar t0, t1;
|
|
||||||
re = yp0[0];
|
|
||||||
im = yp0[1];
|
|
||||||
t0 = t[i];
|
|
||||||
t1 = t[N4+i];
|
|
||||||
/* We'd scale up by 2 here, but instead it's done when mixing the windows */
|
|
||||||
yr = S_MUL(re,t0) + S_MUL(im,t1);
|
|
||||||
yi = S_MUL(re,t1) - S_MUL(im,t0);
|
|
||||||
re = yp1[0];
|
|
||||||
im = yp1[1];
|
|
||||||
yp0[0] = yr;
|
|
||||||
yp1[1] = yi;
|
|
||||||
|
|
||||||
t0 = t[(N4-i-1)];
|
|
||||||
t1 = t[(N2-i-1)];
|
|
||||||
/* We'd scale up by 2 here, but instead it's done when mixing the windows */
|
|
||||||
yr = S_MUL(re,t0) + S_MUL(im,t1);
|
|
||||||
yi = S_MUL(re,t1) - S_MUL(im,t0);
|
|
||||||
yp1[0] = yr;
|
|
||||||
yp0[1] = yi;
|
|
||||||
yp0 += 2;
|
|
||||||
yp1 -= 2;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Mirror on both sides for TDAC */
|
|
||||||
{
|
|
||||||
kiss_fft_scalar * OPUS_RESTRICT xp1 = out+overlap-1;
|
|
||||||
kiss_fft_scalar * OPUS_RESTRICT yp1 = out;
|
|
||||||
const opus_val16 * OPUS_RESTRICT wp1 = window;
|
|
||||||
const opus_val16 * OPUS_RESTRICT wp2 = window+overlap-1;
|
|
||||||
|
|
||||||
for(i = 0; i < overlap/2; i++)
|
|
||||||
{
|
|
||||||
kiss_fft_scalar x1, x2;
|
|
||||||
x1 = *xp1;
|
|
||||||
x2 = *yp1;
|
|
||||||
*yp1++ = MULT16_32_Q15(*wp2, x2) - MULT16_32_Q15(*wp1, x1);
|
|
||||||
*xp1-- = MULT16_32_Q15(*wp1, x2) + MULT16_32_Q15(*wp2, x1);
|
|
||||||
wp1++;
|
|
||||||
wp2--;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
RESTORE_STACK;
|
|
||||||
}
|
|
211
node_modules/@discordjs/opus/deps/opus/celt/arm/celt_neon_intr.c
generated
vendored
211
node_modules/@discordjs/opus/deps/opus/celt/arm/celt_neon_intr.c
generated
vendored
@ -1,211 +0,0 @@
|
|||||||
/* Copyright (c) 2014-2015 Xiph.Org Foundation
|
|
||||||
Written by Viswanath Puttagunta */
|
|
||||||
/**
|
|
||||||
@file celt_neon_intr.c
|
|
||||||
@brief ARM Neon Intrinsic optimizations for celt
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*
|
|
||||||
Redistribution and use in source and binary forms, with or without
|
|
||||||
modification, are permitted provided that the following conditions
|
|
||||||
are met:
|
|
||||||
|
|
||||||
- Redistributions of source code must retain the above copyright
|
|
||||||
notice, this list of conditions and the following disclaimer.
|
|
||||||
|
|
||||||
- Redistributions in binary form must reproduce the above copyright
|
|
||||||
notice, this list of conditions and the following disclaimer in the
|
|
||||||
documentation and/or other materials provided with the distribution.
|
|
||||||
|
|
||||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
||||||
``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
||||||
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
||||||
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
|
|
||||||
OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
|
||||||
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
||||||
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
|
||||||
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
|
||||||
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
||||||
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
||||||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifdef HAVE_CONFIG_H
|
|
||||||
#include "config.h"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include <arm_neon.h>
|
|
||||||
#include "../pitch.h"
|
|
||||||
|
|
||||||
#if defined(FIXED_POINT)
|
|
||||||
void xcorr_kernel_neon_fixed(const opus_val16 * x, const opus_val16 * y, opus_val32 sum[4], int len)
|
|
||||||
{
|
|
||||||
int j;
|
|
||||||
int32x4_t a = vld1q_s32(sum);
|
|
||||||
/* Load y[0...3] */
|
|
||||||
/* This requires len>0 to always be valid (which we assert in the C code). */
|
|
||||||
int16x4_t y0 = vld1_s16(y);
|
|
||||||
y += 4;
|
|
||||||
|
|
||||||
for (j = 0; j + 8 <= len; j += 8)
|
|
||||||
{
|
|
||||||
/* Load x[0...7] */
|
|
||||||
int16x8_t xx = vld1q_s16(x);
|
|
||||||
int16x4_t x0 = vget_low_s16(xx);
|
|
||||||
int16x4_t x4 = vget_high_s16(xx);
|
|
||||||
/* Load y[4...11] */
|
|
||||||
int16x8_t yy = vld1q_s16(y);
|
|
||||||
int16x4_t y4 = vget_low_s16(yy);
|
|
||||||
int16x4_t y8 = vget_high_s16(yy);
|
|
||||||
int32x4_t a0 = vmlal_lane_s16(a, y0, x0, 0);
|
|
||||||
int32x4_t a1 = vmlal_lane_s16(a0, y4, x4, 0);
|
|
||||||
|
|
||||||
int16x4_t y1 = vext_s16(y0, y4, 1);
|
|
||||||
int16x4_t y5 = vext_s16(y4, y8, 1);
|
|
||||||
int32x4_t a2 = vmlal_lane_s16(a1, y1, x0, 1);
|
|
||||||
int32x4_t a3 = vmlal_lane_s16(a2, y5, x4, 1);
|
|
||||||
|
|
||||||
int16x4_t y2 = vext_s16(y0, y4, 2);
|
|
||||||
int16x4_t y6 = vext_s16(y4, y8, 2);
|
|
||||||
int32x4_t a4 = vmlal_lane_s16(a3, y2, x0, 2);
|
|
||||||
int32x4_t a5 = vmlal_lane_s16(a4, y6, x4, 2);
|
|
||||||
|
|
||||||
int16x4_t y3 = vext_s16(y0, y4, 3);
|
|
||||||
int16x4_t y7 = vext_s16(y4, y8, 3);
|
|
||||||
int32x4_t a6 = vmlal_lane_s16(a5, y3, x0, 3);
|
|
||||||
int32x4_t a7 = vmlal_lane_s16(a6, y7, x4, 3);
|
|
||||||
|
|
||||||
y0 = y8;
|
|
||||||
a = a7;
|
|
||||||
x += 8;
|
|
||||||
y += 8;
|
|
||||||
}
|
|
||||||
|
|
||||||
for (; j < len; j++)
|
|
||||||
{
|
|
||||||
int16x4_t x0 = vld1_dup_s16(x); /* load next x */
|
|
||||||
int32x4_t a0 = vmlal_s16(a, y0, x0);
|
|
||||||
|
|
||||||
int16x4_t y4 = vld1_dup_s16(y); /* load next y */
|
|
||||||
y0 = vext_s16(y0, y4, 1);
|
|
||||||
a = a0;
|
|
||||||
x++;
|
|
||||||
y++;
|
|
||||||
}
|
|
||||||
|
|
||||||
vst1q_s32(sum, a);
|
|
||||||
}
|
|
||||||
|
|
||||||
#else
|
|
||||||
/*
|
|
||||||
* Function: xcorr_kernel_neon_float
|
|
||||||
* ---------------------------------
|
|
||||||
* Computes 4 correlation values and stores them in sum[4]
|
|
||||||
*/
|
|
||||||
static void xcorr_kernel_neon_float(const float32_t *x, const float32_t *y,
|
|
||||||
float32_t sum[4], int len) {
|
|
||||||
float32x4_t YY[3];
|
|
||||||
float32x4_t YEXT[3];
|
|
||||||
float32x4_t XX[2];
|
|
||||||
float32x2_t XX_2;
|
|
||||||
float32x4_t SUMM;
|
|
||||||
const float32_t *xi = x;
|
|
||||||
const float32_t *yi = y;
|
|
||||||
|
|
||||||
celt_assert(len>0);
|
|
||||||
|
|
||||||
YY[0] = vld1q_f32(yi);
|
|
||||||
SUMM = vdupq_n_f32(0);
|
|
||||||
|
|
||||||
/* Consume 8 elements in x vector and 12 elements in y
|
|
||||||
* vector. However, the 12'th element never really gets
|
|
||||||
* touched in this loop. So, if len == 8, then we only
|
|
||||||
* must access y[0] to y[10]. y[11] must not be accessed
|
|
||||||
* hence make sure len > 8 and not len >= 8
|
|
||||||
*/
|
|
||||||
while (len > 8) {
|
|
||||||
yi += 4;
|
|
||||||
YY[1] = vld1q_f32(yi);
|
|
||||||
yi += 4;
|
|
||||||
YY[2] = vld1q_f32(yi);
|
|
||||||
|
|
||||||
XX[0] = vld1q_f32(xi);
|
|
||||||
xi += 4;
|
|
||||||
XX[1] = vld1q_f32(xi);
|
|
||||||
xi += 4;
|
|
||||||
|
|
||||||
SUMM = vmlaq_lane_f32(SUMM, YY[0], vget_low_f32(XX[0]), 0);
|
|
||||||
YEXT[0] = vextq_f32(YY[0], YY[1], 1);
|
|
||||||
SUMM = vmlaq_lane_f32(SUMM, YEXT[0], vget_low_f32(XX[0]), 1);
|
|
||||||
YEXT[1] = vextq_f32(YY[0], YY[1], 2);
|
|
||||||
SUMM = vmlaq_lane_f32(SUMM, YEXT[1], vget_high_f32(XX[0]), 0);
|
|
||||||
YEXT[2] = vextq_f32(YY[0], YY[1], 3);
|
|
||||||
SUMM = vmlaq_lane_f32(SUMM, YEXT[2], vget_high_f32(XX[0]), 1);
|
|
||||||
|
|
||||||
SUMM = vmlaq_lane_f32(SUMM, YY[1], vget_low_f32(XX[1]), 0);
|
|
||||||
YEXT[0] = vextq_f32(YY[1], YY[2], 1);
|
|
||||||
SUMM = vmlaq_lane_f32(SUMM, YEXT[0], vget_low_f32(XX[1]), 1);
|
|
||||||
YEXT[1] = vextq_f32(YY[1], YY[2], 2);
|
|
||||||
SUMM = vmlaq_lane_f32(SUMM, YEXT[1], vget_high_f32(XX[1]), 0);
|
|
||||||
YEXT[2] = vextq_f32(YY[1], YY[2], 3);
|
|
||||||
SUMM = vmlaq_lane_f32(SUMM, YEXT[2], vget_high_f32(XX[1]), 1);
|
|
||||||
|
|
||||||
YY[0] = YY[2];
|
|
||||||
len -= 8;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Consume 4 elements in x vector and 8 elements in y
|
|
||||||
* vector. However, the 8'th element in y never really gets
|
|
||||||
* touched in this loop. So, if len == 4, then we only
|
|
||||||
* must access y[0] to y[6]. y[7] must not be accessed
|
|
||||||
* hence make sure len>4 and not len>=4
|
|
||||||
*/
|
|
||||||
if (len > 4) {
|
|
||||||
yi += 4;
|
|
||||||
YY[1] = vld1q_f32(yi);
|
|
||||||
|
|
||||||
XX[0] = vld1q_f32(xi);
|
|
||||||
xi += 4;
|
|
||||||
|
|
||||||
SUMM = vmlaq_lane_f32(SUMM, YY[0], vget_low_f32(XX[0]), 0);
|
|
||||||
YEXT[0] = vextq_f32(YY[0], YY[1], 1);
|
|
||||||
SUMM = vmlaq_lane_f32(SUMM, YEXT[0], vget_low_f32(XX[0]), 1);
|
|
||||||
YEXT[1] = vextq_f32(YY[0], YY[1], 2);
|
|
||||||
SUMM = vmlaq_lane_f32(SUMM, YEXT[1], vget_high_f32(XX[0]), 0);
|
|
||||||
YEXT[2] = vextq_f32(YY[0], YY[1], 3);
|
|
||||||
SUMM = vmlaq_lane_f32(SUMM, YEXT[2], vget_high_f32(XX[0]), 1);
|
|
||||||
|
|
||||||
YY[0] = YY[1];
|
|
||||||
len -= 4;
|
|
||||||
}
|
|
||||||
|
|
||||||
while (--len > 0) {
|
|
||||||
XX_2 = vld1_dup_f32(xi++);
|
|
||||||
SUMM = vmlaq_lane_f32(SUMM, YY[0], XX_2, 0);
|
|
||||||
YY[0]= vld1q_f32(++yi);
|
|
||||||
}
|
|
||||||
|
|
||||||
XX_2 = vld1_dup_f32(xi);
|
|
||||||
SUMM = vmlaq_lane_f32(SUMM, YY[0], XX_2, 0);
|
|
||||||
|
|
||||||
vst1q_f32(sum, SUMM);
|
|
||||||
}
|
|
||||||
|
|
||||||
void celt_pitch_xcorr_float_neon(const opus_val16 *_x, const opus_val16 *_y,
|
|
||||||
opus_val32 *xcorr, int len, int max_pitch, int arch) {
|
|
||||||
int i;
|
|
||||||
(void)arch;
|
|
||||||
celt_assert(max_pitch > 0);
|
|
||||||
celt_sig_assert((((unsigned char *)_x-(unsigned char *)NULL)&3)==0);
|
|
||||||
|
|
||||||
for (i = 0; i < (max_pitch-3); i += 4) {
|
|
||||||
xcorr_kernel_neon_float((const float32_t *)_x, (const float32_t *)_y+i,
|
|
||||||
(float32_t *)xcorr+i, len);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* In case max_pitch isn't a multiple of 4, do non-unrolled version. */
|
|
||||||
for (; i < max_pitch; i++) {
|
|
||||||
xcorr[i] = celt_inner_prod_neon(_x, _y+i, len);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
#endif
|
|
555
node_modules/@discordjs/opus/deps/opus/celt/arm/celt_pitch_xcorr_arm-gnu.S
generated
vendored
555
node_modules/@discordjs/opus/deps/opus/celt/arm/celt_pitch_xcorr_arm-gnu.S
generated
vendored
@ -1,555 +0,0 @@
|
|||||||
.syntax unified
|
|
||||||
@ Copyright (c) 2007-2008 CSIRO
|
|
||||||
@ Copyright (c) 2007-2009 Xiph.Org Foundation
|
|
||||||
@ Copyright (c) 2013 Parrot
|
|
||||||
@ Written by Aurélien Zanelli
|
|
||||||
@
|
|
||||||
@ Redistribution and use in source and binary forms, with or without
|
|
||||||
@ modification, are permitted provided that the following conditions
|
|
||||||
@ are met:
|
|
||||||
@
|
|
||||||
@ - Redistributions of source code must retain the above copyright
|
|
||||||
@ notice, this list of conditions and the following disclaimer.
|
|
||||||
@
|
|
||||||
@ - Redistributions in binary form must reproduce the above copyright
|
|
||||||
@ notice, this list of conditions and the following disclaimer in the
|
|
||||||
@ documentation and/or other materials provided with the distribution.
|
|
||||||
@
|
|
||||||
@ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
||||||
@ ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
||||||
@ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
||||||
@ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
|
|
||||||
@ OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
|
||||||
@ EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
||||||
@ PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
|
||||||
@ PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
|
||||||
@ LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
||||||
@ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
||||||
@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
||||||
|
|
||||||
.text; .p2align 2; .arch armv7-a
|
|
||||||
.fpu neon
|
|
||||||
.object_arch armv4t
|
|
||||||
|
|
||||||
.include "celt/arm/armopts-gnu.S"
|
|
||||||
|
|
||||||
.if OPUS_ARM_MAY_HAVE_EDSP
|
|
||||||
.global celt_pitch_xcorr_edsp
|
|
||||||
.endif
|
|
||||||
|
|
||||||
.if OPUS_ARM_MAY_HAVE_NEON
|
|
||||||
.global celt_pitch_xcorr_neon
|
|
||||||
.endif
|
|
||||||
|
|
||||||
.if OPUS_ARM_MAY_HAVE_NEON
|
|
||||||
|
|
||||||
@ Compute sum[k]=sum(x[j]*y[j+k],j=0...len-1), k=0...3
|
|
||||||
.type xcorr_kernel_neon, %function; xcorr_kernel_neon: @ PROC
|
|
||||||
xcorr_kernel_neon_start:
|
|
||||||
@ input:
|
|
||||||
@ r3 = int len
|
|
||||||
@ r4 = opus_val16 *x
|
|
||||||
@ r5 = opus_val16 *y
|
|
||||||
@ q0 = opus_val32 sum[4]
|
|
||||||
@ output:
|
|
||||||
@ q0 = opus_val32 sum[4]
|
|
||||||
@ preserved: r0-r3, r6-r11, d2, q4-q7, q9-q15
|
|
||||||
@ internal usage:
|
|
||||||
@ r12 = int j
|
|
||||||
@ d3 = y_3|y_2|y_1|y_0
|
|
||||||
@ q2 = y_B|y_A|y_9|y_8|y_7|y_6|y_5|y_4
|
|
||||||
@ q3 = x_7|x_6|x_5|x_4|x_3|x_2|x_1|x_0
|
|
||||||
@ q8 = scratch
|
|
||||||
@
|
|
||||||
@ Load y[0...3]
|
|
||||||
@ This requires len>0 to always be valid (which we assert in the C code).
|
|
||||||
VLD1.16 {d5}, [r5]!
|
|
||||||
SUBS r12, r3, #8
|
|
||||||
BLE xcorr_kernel_neon_process4
|
|
||||||
@ Process 8 samples at a time.
|
|
||||||
@ This loop loads one y value more than we actually need. Therefore we have to
|
|
||||||
@ stop as soon as there are 8 or fewer samples left (instead of 7), to avoid
|
|
||||||
@ reading past the end of the array.
|
|
||||||
xcorr_kernel_neon_process8:
|
|
||||||
@ This loop has 19 total instructions (10 cycles to issue, minimum), with
|
|
||||||
@ - 2 cycles of ARM insrtuctions,
|
|
||||||
@ - 10 cycles of load/store/byte permute instructions, and
|
|
||||||
@ - 9 cycles of data processing instructions.
|
|
||||||
@ On a Cortex A8, we dual-issue the maximum amount (9 cycles) between the
|
|
||||||
@ latter two categories, meaning the whole loop should run in 10 cycles per
|
|
||||||
@ iteration, barring cache misses.
|
|
||||||
@
|
|
||||||
@ Load x[0...7]
|
|
||||||
VLD1.16 {d6, d7}, [r4]!
|
|
||||||
@ Unlike VMOV, VAND is a data processsing instruction (and doesn't get
|
|
||||||
@ assembled to VMOV, like VORR would), so it dual-issues with the prior VLD1.
|
|
||||||
VAND d3, d5, d5
|
|
||||||
SUBS r12, r12, #8
|
|
||||||
@ Load y[4...11]
|
|
||||||
VLD1.16 {d4, d5}, [r5]!
|
|
||||||
VMLAL.S16 q0, d3, d6[0]
|
|
||||||
VEXT.16 d16, d3, d4, #1
|
|
||||||
VMLAL.S16 q0, d4, d7[0]
|
|
||||||
VEXT.16 d17, d4, d5, #1
|
|
||||||
VMLAL.S16 q0, d16, d6[1]
|
|
||||||
VEXT.16 d16, d3, d4, #2
|
|
||||||
VMLAL.S16 q0, d17, d7[1]
|
|
||||||
VEXT.16 d17, d4, d5, #2
|
|
||||||
VMLAL.S16 q0, d16, d6[2]
|
|
||||||
VEXT.16 d16, d3, d4, #3
|
|
||||||
VMLAL.S16 q0, d17, d7[2]
|
|
||||||
VEXT.16 d17, d4, d5, #3
|
|
||||||
VMLAL.S16 q0, d16, d6[3]
|
|
||||||
VMLAL.S16 q0, d17, d7[3]
|
|
||||||
BGT xcorr_kernel_neon_process8
|
|
||||||
@ Process 4 samples here if we have > 4 left (still reading one extra y value).
|
|
||||||
xcorr_kernel_neon_process4:
|
|
||||||
ADDS r12, r12, #4
|
|
||||||
BLE xcorr_kernel_neon_process2
|
|
||||||
@ Load x[0...3]
|
|
||||||
VLD1.16 d6, [r4]!
|
|
||||||
@ Use VAND since it's a data processing instruction again.
|
|
||||||
VAND d4, d5, d5
|
|
||||||
SUB r12, r12, #4
|
|
||||||
@ Load y[4...7]
|
|
||||||
VLD1.16 d5, [r5]!
|
|
||||||
VMLAL.S16 q0, d4, d6[0]
|
|
||||||
VEXT.16 d16, d4, d5, #1
|
|
||||||
VMLAL.S16 q0, d16, d6[1]
|
|
||||||
VEXT.16 d16, d4, d5, #2
|
|
||||||
VMLAL.S16 q0, d16, d6[2]
|
|
||||||
VEXT.16 d16, d4, d5, #3
|
|
||||||
VMLAL.S16 q0, d16, d6[3]
|
|
||||||
@ Process 2 samples here if we have > 2 left (still reading one extra y value).
|
|
||||||
xcorr_kernel_neon_process2:
|
|
||||||
ADDS r12, r12, #2
|
|
||||||
BLE xcorr_kernel_neon_process1
|
|
||||||
@ Load x[0...1]
|
|
||||||
VLD2.16 {d6[],d7[]}, [r4]!
|
|
||||||
@ Use VAND since it's a data processing instruction again.
|
|
||||||
VAND d4, d5, d5
|
|
||||||
SUB r12, r12, #2
|
|
||||||
@ Load y[4...5]
|
|
||||||
VLD1.32 {d5[]}, [r5]!
|
|
||||||
VMLAL.S16 q0, d4, d6
|
|
||||||
VEXT.16 d16, d4, d5, #1
|
|
||||||
@ Replace bottom copy of {y5,y4} in d5 with {y3,y2} from d4, using VSRI
|
|
||||||
@ instead of VEXT, since it's a data-processing instruction.
|
|
||||||
VSRI.64 d5, d4, #32
|
|
||||||
VMLAL.S16 q0, d16, d7
|
|
||||||
@ Process 1 sample using the extra y value we loaded above.
|
|
||||||
xcorr_kernel_neon_process1:
|
|
||||||
@ Load next *x
|
|
||||||
VLD1.16 {d6[]}, [r4]!
|
|
||||||
ADDS r12, r12, #1
|
|
||||||
@ y[0...3] are left in d5 from prior iteration(s) (if any)
|
|
||||||
VMLAL.S16 q0, d5, d6
|
|
||||||
MOVLE pc, lr
|
|
||||||
@ Now process 1 last sample, not reading ahead.
|
|
||||||
@ Load last *y
|
|
||||||
VLD1.16 {d4[]}, [r5]!
|
|
||||||
VSRI.64 d4, d5, #16
|
|
||||||
@ Load last *x
|
|
||||||
VLD1.16 {d6[]}, [r4]!
|
|
||||||
VMLAL.S16 q0, d4, d6
|
|
||||||
MOV pc, lr
|
|
||||||
.size xcorr_kernel_neon, .-xcorr_kernel_neon @ ENDP
|
|
||||||
|
|
||||||
@ opus_val32 celt_pitch_xcorr_neon(opus_val16 *_x, opus_val16 *_y,
|
|
||||||
@ opus_val32 *xcorr, int len, int max_pitch, int arch)
|
|
||||||
.type celt_pitch_xcorr_neon, %function; celt_pitch_xcorr_neon: @ PROC
|
|
||||||
@ input:
|
|
||||||
@ r0 = opus_val16 *_x
|
|
||||||
@ r1 = opus_val16 *_y
|
|
||||||
@ r2 = opus_val32 *xcorr
|
|
||||||
@ r3 = int len
|
|
||||||
@ output:
|
|
||||||
@ r0 = int maxcorr
|
|
||||||
@ internal usage:
|
|
||||||
@ r4 = opus_val16 *x (for xcorr_kernel_neon())
|
|
||||||
@ r5 = opus_val16 *y (for xcorr_kernel_neon())
|
|
||||||
@ r6 = int max_pitch
|
|
||||||
@ r12 = int j
|
|
||||||
@ q15 = int maxcorr[4] (q15 is not used by xcorr_kernel_neon())
|
|
||||||
@ ignored:
|
|
||||||
@ int arch
|
|
||||||
STMFD sp!, {r4-r6, lr}
|
|
||||||
LDR r6, [sp, #16]
|
|
||||||
VMOV.S32 q15, #1
|
|
||||||
@ if (max_pitch < 4) goto celt_pitch_xcorr_neon_process4_done
|
|
||||||
SUBS r6, r6, #4
|
|
||||||
BLT celt_pitch_xcorr_neon_process4_done
|
|
||||||
celt_pitch_xcorr_neon_process4:
|
|
||||||
@ xcorr_kernel_neon parameters:
|
|
||||||
@ r3 = len, r4 = _x, r5 = _y, q0 = {0, 0, 0, 0}
|
|
||||||
MOV r4, r0
|
|
||||||
MOV r5, r1
|
|
||||||
VEOR q0, q0, q0
|
|
||||||
@ xcorr_kernel_neon only modifies r4, r5, r12, and q0...q3.
|
|
||||||
@ So we don't save/restore any other registers.
|
|
||||||
BL xcorr_kernel_neon_start
|
|
||||||
SUBS r6, r6, #4
|
|
||||||
VST1.32 {q0}, [r2]!
|
|
||||||
@ _y += 4
|
|
||||||
ADD r1, r1, #8
|
|
||||||
VMAX.S32 q15, q15, q0
|
|
||||||
@ if (max_pitch < 4) goto celt_pitch_xcorr_neon_process4_done
|
|
||||||
BGE celt_pitch_xcorr_neon_process4
|
|
||||||
@ We have less than 4 sums left to compute.
|
|
||||||
celt_pitch_xcorr_neon_process4_done:
|
|
||||||
ADDS r6, r6, #4
|
|
||||||
@ Reduce maxcorr to a single value
|
|
||||||
VMAX.S32 d30, d30, d31
|
|
||||||
VPMAX.S32 d30, d30, d30
|
|
||||||
@ if (max_pitch <= 0) goto celt_pitch_xcorr_neon_done
|
|
||||||
BLE celt_pitch_xcorr_neon_done
|
|
||||||
@ Now compute each remaining sum one at a time.
|
|
||||||
celt_pitch_xcorr_neon_process_remaining:
|
|
||||||
MOV r4, r0
|
|
||||||
MOV r5, r1
|
|
||||||
VMOV.I32 q0, #0
|
|
||||||
SUBS r12, r3, #8
|
|
||||||
BLT celt_pitch_xcorr_neon_process_remaining4
|
|
||||||
@ Sum terms 8 at a time.
|
|
||||||
celt_pitch_xcorr_neon_process_remaining_loop8:
|
|
||||||
@ Load x[0...7]
|
|
||||||
VLD1.16 {q1}, [r4]!
|
|
||||||
@ Load y[0...7]
|
|
||||||
VLD1.16 {q2}, [r5]!
|
|
||||||
SUBS r12, r12, #8
|
|
||||||
VMLAL.S16 q0, d4, d2
|
|
||||||
VMLAL.S16 q0, d5, d3
|
|
||||||
BGE celt_pitch_xcorr_neon_process_remaining_loop8
|
|
||||||
@ Sum terms 4 at a time.
|
|
||||||
celt_pitch_xcorr_neon_process_remaining4:
|
|
||||||
ADDS r12, r12, #4
|
|
||||||
BLT celt_pitch_xcorr_neon_process_remaining4_done
|
|
||||||
@ Load x[0...3]
|
|
||||||
VLD1.16 {d2}, [r4]!
|
|
||||||
@ Load y[0...3]
|
|
||||||
VLD1.16 {d3}, [r5]!
|
|
||||||
SUB r12, r12, #4
|
|
||||||
VMLAL.S16 q0, d3, d2
|
|
||||||
celt_pitch_xcorr_neon_process_remaining4_done:
|
|
||||||
@ Reduce the sum to a single value.
|
|
||||||
VADD.S32 d0, d0, d1
|
|
||||||
VPADDL.S32 d0, d0
|
|
||||||
ADDS r12, r12, #4
|
|
||||||
BLE celt_pitch_xcorr_neon_process_remaining_loop_done
|
|
||||||
@ Sum terms 1 at a time.
|
|
||||||
celt_pitch_xcorr_neon_process_remaining_loop1:
|
|
||||||
VLD1.16 {d2[]}, [r4]!
|
|
||||||
VLD1.16 {d3[]}, [r5]!
|
|
||||||
SUBS r12, r12, #1
|
|
||||||
VMLAL.S16 q0, d2, d3
|
|
||||||
BGT celt_pitch_xcorr_neon_process_remaining_loop1
|
|
||||||
celt_pitch_xcorr_neon_process_remaining_loop_done:
|
|
||||||
VST1.32 {d0[0]}, [r2]!
|
|
||||||
VMAX.S32 d30, d30, d0
|
|
||||||
SUBS r6, r6, #1
|
|
||||||
@ _y++
|
|
||||||
ADD r1, r1, #2
|
|
||||||
@ if (--max_pitch > 0) goto celt_pitch_xcorr_neon_process_remaining
|
|
||||||
BGT celt_pitch_xcorr_neon_process_remaining
|
|
||||||
celt_pitch_xcorr_neon_done:
|
|
||||||
VMOV.32 r0, d30[0]
|
|
||||||
LDMFD sp!, {r4-r6, pc}
|
|
||||||
.size celt_pitch_xcorr_neon, .-celt_pitch_xcorr_neon @ ENDP
|
|
||||||
|
|
||||||
.endif
|
|
||||||
|
|
||||||
.if OPUS_ARM_MAY_HAVE_EDSP
|
|
||||||
|
|
||||||
@ This will get used on ARMv7 devices without NEON, so it has been optimized
|
|
||||||
@ to take advantage of dual-issuing where possible.
|
|
||||||
.type xcorr_kernel_edsp, %function; xcorr_kernel_edsp: @ PROC
|
|
||||||
xcorr_kernel_edsp_start:
|
|
||||||
@ input:
|
|
||||||
@ r3 = int len
|
|
||||||
@ r4 = opus_val16 *_x (must be 32-bit aligned)
|
|
||||||
@ r5 = opus_val16 *_y (must be 32-bit aligned)
|
|
||||||
@ r6...r9 = opus_val32 sum[4]
|
|
||||||
@ output:
|
|
||||||
@ r6...r9 = opus_val32 sum[4]
|
|
||||||
@ preserved: r0-r5
|
|
||||||
@ internal usage
|
|
||||||
@ r2 = int j
|
|
||||||
@ r12,r14 = opus_val16 x[4]
|
|
||||||
@ r10,r11 = opus_val16 y[4]
|
|
||||||
STMFD sp!, {r2,r4,r5,lr}
|
|
||||||
LDR r10, [r5], #4 @ Load y[0...1]
|
|
||||||
SUBS r2, r3, #4 @ j = len-4
|
|
||||||
LDR r11, [r5], #4 @ Load y[2...3]
|
|
||||||
BLE xcorr_kernel_edsp_process4_done
|
|
||||||
LDR r12, [r4], #4 @ Load x[0...1]
|
|
||||||
@ Stall
|
|
||||||
xcorr_kernel_edsp_process4:
|
|
||||||
@ The multiplies must issue from pipeline 0, and can't dual-issue with each
|
|
||||||
@ other. Every other instruction here dual-issues with a multiply, and is
|
|
||||||
@ thus "free". There should be no stalls in the body of the loop.
|
|
||||||
SMLABB r6, r12, r10, r6 @ sum[0] = MAC16_16(sum[0],x_0,y_0)
|
|
||||||
LDR r14, [r4], #4 @ Load x[2...3]
|
|
||||||
SMLABT r7, r12, r10, r7 @ sum[1] = MAC16_16(sum[1],x_0,y_1)
|
|
||||||
SUBS r2, r2, #4 @ j-=4
|
|
||||||
SMLABB r8, r12, r11, r8 @ sum[2] = MAC16_16(sum[2],x_0,y_2)
|
|
||||||
SMLABT r9, r12, r11, r9 @ sum[3] = MAC16_16(sum[3],x_0,y_3)
|
|
||||||
SMLATT r6, r12, r10, r6 @ sum[0] = MAC16_16(sum[0],x_1,y_1)
|
|
||||||
LDR r10, [r5], #4 @ Load y[4...5]
|
|
||||||
SMLATB r7, r12, r11, r7 @ sum[1] = MAC16_16(sum[1],x_1,y_2)
|
|
||||||
SMLATT r8, r12, r11, r8 @ sum[2] = MAC16_16(sum[2],x_1,y_3)
|
|
||||||
SMLATB r9, r12, r10, r9 @ sum[3] = MAC16_16(sum[3],x_1,y_4)
|
|
||||||
LDRGT r12, [r4], #4 @ Load x[0...1]
|
|
||||||
SMLABB r6, r14, r11, r6 @ sum[0] = MAC16_16(sum[0],x_2,y_2)
|
|
||||||
SMLABT r7, r14, r11, r7 @ sum[1] = MAC16_16(sum[1],x_2,y_3)
|
|
||||||
SMLABB r8, r14, r10, r8 @ sum[2] = MAC16_16(sum[2],x_2,y_4)
|
|
||||||
SMLABT r9, r14, r10, r9 @ sum[3] = MAC16_16(sum[3],x_2,y_5)
|
|
||||||
SMLATT r6, r14, r11, r6 @ sum[0] = MAC16_16(sum[0],x_3,y_3)
|
|
||||||
LDR r11, [r5], #4 @ Load y[6...7]
|
|
||||||
SMLATB r7, r14, r10, r7 @ sum[1] = MAC16_16(sum[1],x_3,y_4)
|
|
||||||
SMLATT r8, r14, r10, r8 @ sum[2] = MAC16_16(sum[2],x_3,y_5)
|
|
||||||
SMLATB r9, r14, r11, r9 @ sum[3] = MAC16_16(sum[3],x_3,y_6)
|
|
||||||
BGT xcorr_kernel_edsp_process4
|
|
||||||
xcorr_kernel_edsp_process4_done:
|
|
||||||
ADDS r2, r2, #4
|
|
||||||
BLE xcorr_kernel_edsp_done
|
|
||||||
LDRH r12, [r4], #2 @ r12 = *x++
|
|
||||||
SUBS r2, r2, #1 @ j--
|
|
||||||
@ Stall
|
|
||||||
SMLABB r6, r12, r10, r6 @ sum[0] = MAC16_16(sum[0],x,y_0)
|
|
||||||
LDRHGT r14, [r4], #2 @ r14 = *x++
|
|
||||||
SMLABT r7, r12, r10, r7 @ sum[1] = MAC16_16(sum[1],x,y_1)
|
|
||||||
SMLABB r8, r12, r11, r8 @ sum[2] = MAC16_16(sum[2],x,y_2)
|
|
||||||
SMLABT r9, r12, r11, r9 @ sum[3] = MAC16_16(sum[3],x,y_3)
|
|
||||||
BLE xcorr_kernel_edsp_done
|
|
||||||
SMLABT r6, r14, r10, r6 @ sum[0] = MAC16_16(sum[0],x,y_1)
|
|
||||||
SUBS r2, r2, #1 @ j--
|
|
||||||
SMLABB r7, r14, r11, r7 @ sum[1] = MAC16_16(sum[1],x,y_2)
|
|
||||||
LDRH r10, [r5], #2 @ r10 = y_4 = *y++
|
|
||||||
SMLABT r8, r14, r11, r8 @ sum[2] = MAC16_16(sum[2],x,y_3)
|
|
||||||
LDRHGT r12, [r4], #2 @ r12 = *x++
|
|
||||||
SMLABB r9, r14, r10, r9 @ sum[3] = MAC16_16(sum[3],x,y_4)
|
|
||||||
BLE xcorr_kernel_edsp_done
|
|
||||||
SMLABB r6, r12, r11, r6 @ sum[0] = MAC16_16(sum[0],tmp,y_2)
|
|
||||||
CMP r2, #1 @ j--
|
|
||||||
SMLABT r7, r12, r11, r7 @ sum[1] = MAC16_16(sum[1],tmp,y_3)
|
|
||||||
LDRH r2, [r5], #2 @ r2 = y_5 = *y++
|
|
||||||
SMLABB r8, r12, r10, r8 @ sum[2] = MAC16_16(sum[2],tmp,y_4)
|
|
||||||
LDRHGT r14, [r4] @ r14 = *x
|
|
||||||
SMLABB r9, r12, r2, r9 @ sum[3] = MAC16_16(sum[3],tmp,y_5)
|
|
||||||
BLE xcorr_kernel_edsp_done
|
|
||||||
SMLABT r6, r14, r11, r6 @ sum[0] = MAC16_16(sum[0],tmp,y_3)
|
|
||||||
LDRH r11, [r5] @ r11 = y_6 = *y
|
|
||||||
SMLABB r7, r14, r10, r7 @ sum[1] = MAC16_16(sum[1],tmp,y_4)
|
|
||||||
SMLABB r8, r14, r2, r8 @ sum[2] = MAC16_16(sum[2],tmp,y_5)
|
|
||||||
SMLABB r9, r14, r11, r9 @ sum[3] = MAC16_16(sum[3],tmp,y_6)
|
|
||||||
xcorr_kernel_edsp_done:
|
|
||||||
LDMFD sp!, {r2,r4,r5,pc}
|
|
||||||
.size xcorr_kernel_edsp, .-xcorr_kernel_edsp @ ENDP
|
|
||||||
|
|
||||||
.type celt_pitch_xcorr_edsp, %function; celt_pitch_xcorr_edsp: @ PROC
|
|
||||||
@ input:
|
|
||||||
@ r0 = opus_val16 *_x (must be 32-bit aligned)
|
|
||||||
@ r1 = opus_val16 *_y (only needs to be 16-bit aligned)
|
|
||||||
@ r2 = opus_val32 *xcorr
|
|
||||||
@ r3 = int len
|
|
||||||
@ output:
|
|
||||||
@ r0 = maxcorr
|
|
||||||
@ internal usage
|
|
||||||
@ r4 = opus_val16 *x
|
|
||||||
@ r5 = opus_val16 *y
|
|
||||||
@ r6 = opus_val32 sum0
|
|
||||||
@ r7 = opus_val32 sum1
|
|
||||||
@ r8 = opus_val32 sum2
|
|
||||||
@ r9 = opus_val32 sum3
|
|
||||||
@ r1 = int max_pitch
|
|
||||||
@ r12 = int j
|
|
||||||
@ ignored:
|
|
||||||
@ int arch
|
|
||||||
STMFD sp!, {r4-r11, lr}
|
|
||||||
MOV r5, r1
|
|
||||||
LDR r1, [sp, #36]
|
|
||||||
MOV r4, r0
|
|
||||||
TST r5, #3
|
|
||||||
@ maxcorr = 1
|
|
||||||
MOV r0, #1
|
|
||||||
BEQ celt_pitch_xcorr_edsp_process1u_done
|
|
||||||
@ Compute one sum at the start to make y 32-bit aligned.
|
|
||||||
SUBS r12, r3, #4
|
|
||||||
@ r14 = sum = 0
|
|
||||||
MOV r14, #0
|
|
||||||
LDRH r8, [r5], #2
|
|
||||||
BLE celt_pitch_xcorr_edsp_process1u_loop4_done
|
|
||||||
LDR r6, [r4], #4
|
|
||||||
MOV r8, r8, LSL #16
|
|
||||||
celt_pitch_xcorr_edsp_process1u_loop4:
|
|
||||||
LDR r9, [r5], #4
|
|
||||||
SMLABT r14, r6, r8, r14 @ sum = MAC16_16(sum, x_0, y_0)
|
|
||||||
LDR r7, [r4], #4
|
|
||||||
SMLATB r14, r6, r9, r14 @ sum = MAC16_16(sum, x_1, y_1)
|
|
||||||
LDR r8, [r5], #4
|
|
||||||
SMLABT r14, r7, r9, r14 @ sum = MAC16_16(sum, x_2, y_2)
|
|
||||||
SUBS r12, r12, #4 @ j-=4
|
|
||||||
SMLATB r14, r7, r8, r14 @ sum = MAC16_16(sum, x_3, y_3)
|
|
||||||
LDRGT r6, [r4], #4
|
|
||||||
BGT celt_pitch_xcorr_edsp_process1u_loop4
|
|
||||||
MOV r8, r8, LSR #16
|
|
||||||
celt_pitch_xcorr_edsp_process1u_loop4_done:
|
|
||||||
ADDS r12, r12, #4
|
|
||||||
celt_pitch_xcorr_edsp_process1u_loop1:
|
|
||||||
LDRHGE r6, [r4], #2
|
|
||||||
@ Stall
|
|
||||||
SMLABBGE r14, r6, r8, r14 @ sum = MAC16_16(sum, *x, *y)
|
|
||||||
SUBSGE r12, r12, #1
|
|
||||||
LDRHGT r8, [r5], #2
|
|
||||||
BGT celt_pitch_xcorr_edsp_process1u_loop1
|
|
||||||
@ Restore _x
|
|
||||||
SUB r4, r4, r3, LSL #1
|
|
||||||
@ Restore and advance _y
|
|
||||||
SUB r5, r5, r3, LSL #1
|
|
||||||
@ maxcorr = max(maxcorr, sum)
|
|
||||||
CMP r0, r14
|
|
||||||
ADD r5, r5, #2
|
|
||||||
MOVLT r0, r14
|
|
||||||
SUBS r1, r1, #1
|
|
||||||
@ xcorr[i] = sum
|
|
||||||
STR r14, [r2], #4
|
|
||||||
BLE celt_pitch_xcorr_edsp_done
|
|
||||||
celt_pitch_xcorr_edsp_process1u_done:
|
|
||||||
@ if (max_pitch < 4) goto celt_pitch_xcorr_edsp_process2
|
|
||||||
SUBS r1, r1, #4
|
|
||||||
BLT celt_pitch_xcorr_edsp_process2
|
|
||||||
celt_pitch_xcorr_edsp_process4:
|
|
||||||
@ xcorr_kernel_edsp parameters:
|
|
||||||
@ r3 = len, r4 = _x, r5 = _y, r6...r9 = sum[4] = {0, 0, 0, 0}
|
|
||||||
MOV r6, #0
|
|
||||||
MOV r7, #0
|
|
||||||
MOV r8, #0
|
|
||||||
MOV r9, #0
|
|
||||||
BL xcorr_kernel_edsp_start @ xcorr_kernel_edsp(_x, _y+i, xcorr+i, len)
|
|
||||||
@ maxcorr = max(maxcorr, sum0, sum1, sum2, sum3)
|
|
||||||
CMP r0, r6
|
|
||||||
@ _y+=4
|
|
||||||
ADD r5, r5, #8
|
|
||||||
MOVLT r0, r6
|
|
||||||
CMP r0, r7
|
|
||||||
MOVLT r0, r7
|
|
||||||
CMP r0, r8
|
|
||||||
MOVLT r0, r8
|
|
||||||
CMP r0, r9
|
|
||||||
MOVLT r0, r9
|
|
||||||
STMIA r2!, {r6-r9}
|
|
||||||
SUBS r1, r1, #4
|
|
||||||
BGE celt_pitch_xcorr_edsp_process4
|
|
||||||
celt_pitch_xcorr_edsp_process2:
|
|
||||||
ADDS r1, r1, #2
|
|
||||||
BLT celt_pitch_xcorr_edsp_process1a
|
|
||||||
SUBS r12, r3, #4
|
|
||||||
@ {r10, r11} = {sum0, sum1} = {0, 0}
|
|
||||||
MOV r10, #0
|
|
||||||
MOV r11, #0
|
|
||||||
LDR r8, [r5], #4
|
|
||||||
BLE celt_pitch_xcorr_edsp_process2_loop_done
|
|
||||||
LDR r6, [r4], #4
|
|
||||||
LDR r9, [r5], #4
|
|
||||||
celt_pitch_xcorr_edsp_process2_loop4:
|
|
||||||
SMLABB r10, r6, r8, r10 @ sum0 = MAC16_16(sum0, x_0, y_0)
|
|
||||||
LDR r7, [r4], #4
|
|
||||||
SMLABT r11, r6, r8, r11 @ sum1 = MAC16_16(sum1, x_0, y_1)
|
|
||||||
SUBS r12, r12, #4 @ j-=4
|
|
||||||
SMLATT r10, r6, r8, r10 @ sum0 = MAC16_16(sum0, x_1, y_1)
|
|
||||||
LDR r8, [r5], #4
|
|
||||||
SMLATB r11, r6, r9, r11 @ sum1 = MAC16_16(sum1, x_1, y_2)
|
|
||||||
LDRGT r6, [r4], #4
|
|
||||||
SMLABB r10, r7, r9, r10 @ sum0 = MAC16_16(sum0, x_2, y_2)
|
|
||||||
SMLABT r11, r7, r9, r11 @ sum1 = MAC16_16(sum1, x_2, y_3)
|
|
||||||
SMLATT r10, r7, r9, r10 @ sum0 = MAC16_16(sum0, x_3, y_3)
|
|
||||||
LDRGT r9, [r5], #4
|
|
||||||
SMLATB r11, r7, r8, r11 @ sum1 = MAC16_16(sum1, x_3, y_4)
|
|
||||||
BGT celt_pitch_xcorr_edsp_process2_loop4
|
|
||||||
celt_pitch_xcorr_edsp_process2_loop_done:
|
|
||||||
ADDS r12, r12, #2
|
|
||||||
BLE celt_pitch_xcorr_edsp_process2_1
|
|
||||||
LDR r6, [r4], #4
|
|
||||||
@ Stall
|
|
||||||
SMLABB r10, r6, r8, r10 @ sum0 = MAC16_16(sum0, x_0, y_0)
|
|
||||||
LDR r9, [r5], #4
|
|
||||||
SMLABT r11, r6, r8, r11 @ sum1 = MAC16_16(sum1, x_0, y_1)
|
|
||||||
SUB r12, r12, #2
|
|
||||||
SMLATT r10, r6, r8, r10 @ sum0 = MAC16_16(sum0, x_1, y_1)
|
|
||||||
MOV r8, r9
|
|
||||||
SMLATB r11, r6, r9, r11 @ sum1 = MAC16_16(sum1, x_1, y_2)
|
|
||||||
celt_pitch_xcorr_edsp_process2_1:
|
|
||||||
LDRH r6, [r4], #2
|
|
||||||
ADDS r12, r12, #1
|
|
||||||
@ Stall
|
|
||||||
SMLABB r10, r6, r8, r10 @ sum0 = MAC16_16(sum0, x_0, y_0)
|
|
||||||
LDRHGT r7, [r4], #2
|
|
||||||
SMLABT r11, r6, r8, r11 @ sum1 = MAC16_16(sum1, x_0, y_1)
|
|
||||||
BLE celt_pitch_xcorr_edsp_process2_done
|
|
||||||
LDRH r9, [r5], #2
|
|
||||||
SMLABT r10, r7, r8, r10 @ sum0 = MAC16_16(sum0, x_0, y_1)
|
|
||||||
SMLABB r11, r7, r9, r11 @ sum1 = MAC16_16(sum1, x_0, y_2)
|
|
||||||
celt_pitch_xcorr_edsp_process2_done:
|
|
||||||
@ Restore _x
|
|
||||||
SUB r4, r4, r3, LSL #1
|
|
||||||
@ Restore and advance _y
|
|
||||||
SUB r5, r5, r3, LSL #1
|
|
||||||
@ maxcorr = max(maxcorr, sum0)
|
|
||||||
CMP r0, r10
|
|
||||||
ADD r5, r5, #2
|
|
||||||
MOVLT r0, r10
|
|
||||||
SUB r1, r1, #2
|
|
||||||
@ maxcorr = max(maxcorr, sum1)
|
|
||||||
CMP r0, r11
|
|
||||||
@ xcorr[i] = sum
|
|
||||||
STR r10, [r2], #4
|
|
||||||
MOVLT r0, r11
|
|
||||||
STR r11, [r2], #4
|
|
||||||
celt_pitch_xcorr_edsp_process1a:
|
|
||||||
ADDS r1, r1, #1
|
|
||||||
BLT celt_pitch_xcorr_edsp_done
|
|
||||||
SUBS r12, r3, #4
|
|
||||||
@ r14 = sum = 0
|
|
||||||
MOV r14, #0
|
|
||||||
BLT celt_pitch_xcorr_edsp_process1a_loop_done
|
|
||||||
LDR r6, [r4], #4
|
|
||||||
LDR r8, [r5], #4
|
|
||||||
LDR r7, [r4], #4
|
|
||||||
LDR r9, [r5], #4
|
|
||||||
celt_pitch_xcorr_edsp_process1a_loop4:
|
|
||||||
SMLABB r14, r6, r8, r14 @ sum = MAC16_16(sum, x_0, y_0)
|
|
||||||
SUBS r12, r12, #4 @ j-=4
|
|
||||||
SMLATT r14, r6, r8, r14 @ sum = MAC16_16(sum, x_1, y_1)
|
|
||||||
LDRGE r6, [r4], #4
|
|
||||||
SMLABB r14, r7, r9, r14 @ sum = MAC16_16(sum, x_2, y_2)
|
|
||||||
LDRGE r8, [r5], #4
|
|
||||||
SMLATT r14, r7, r9, r14 @ sum = MAC16_16(sum, x_3, y_3)
|
|
||||||
LDRGE r7, [r4], #4
|
|
||||||
LDRGE r9, [r5], #4
|
|
||||||
BGE celt_pitch_xcorr_edsp_process1a_loop4
|
|
||||||
celt_pitch_xcorr_edsp_process1a_loop_done:
|
|
||||||
ADDS r12, r12, #2
|
|
||||||
LDRGE r6, [r4], #4
|
|
||||||
LDRGE r8, [r5], #4
|
|
||||||
@ Stall
|
|
||||||
SMLABBGE r14, r6, r8, r14 @ sum = MAC16_16(sum, x_0, y_0)
|
|
||||||
SUBGE r12, r12, #2
|
|
||||||
SMLATTGE r14, r6, r8, r14 @ sum = MAC16_16(sum, x_1, y_1)
|
|
||||||
ADDS r12, r12, #1
|
|
||||||
LDRHGE r6, [r4], #2
|
|
||||||
LDRHGE r8, [r5], #2
|
|
||||||
@ Stall
|
|
||||||
SMLABBGE r14, r6, r8, r14 @ sum = MAC16_16(sum, *x, *y)
|
|
||||||
@ maxcorr = max(maxcorr, sum)
|
|
||||||
CMP r0, r14
|
|
||||||
@ xcorr[i] = sum
|
|
||||||
STR r14, [r2], #4
|
|
||||||
MOVLT r0, r14
|
|
||||||
celt_pitch_xcorr_edsp_done:
|
|
||||||
LDMFD sp!, {r4-r11, pc}
|
|
||||||
.size celt_pitch_xcorr_edsp, .-celt_pitch_xcorr_edsp @ ENDP
|
|
||||||
|
|
||||||
.endif
|
|
||||||
|
|
||||||
@ END:
|
|
||||||
.section .note.GNU-stack,"",%progbits
|
|
551
node_modules/@discordjs/opus/deps/opus/celt/arm/celt_pitch_xcorr_arm.s
generated
vendored
551
node_modules/@discordjs/opus/deps/opus/celt/arm/celt_pitch_xcorr_arm.s
generated
vendored
@ -1,551 +0,0 @@
|
|||||||
; Copyright (c) 2007-2008 CSIRO
|
|
||||||
; Copyright (c) 2007-2009 Xiph.Org Foundation
|
|
||||||
; Copyright (c) 2013 Parrot
|
|
||||||
; Written by Aurélien Zanelli
|
|
||||||
;
|
|
||||||
; Redistribution and use in source and binary forms, with or without
|
|
||||||
; modification, are permitted provided that the following conditions
|
|
||||||
; are met:
|
|
||||||
;
|
|
||||||
; - Redistributions of source code must retain the above copyright
|
|
||||||
; notice, this list of conditions and the following disclaimer.
|
|
||||||
;
|
|
||||||
; - Redistributions in binary form must reproduce the above copyright
|
|
||||||
; notice, this list of conditions and the following disclaimer in the
|
|
||||||
; documentation and/or other materials provided with the distribution.
|
|
||||||
;
|
|
||||||
; THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
||||||
; ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
||||||
; LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
||||||
; A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
|
|
||||||
; OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
|
||||||
; EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
||||||
; PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
|
||||||
; PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
|
||||||
; LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
||||||
; NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
||||||
; SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
||||||
|
|
||||||
AREA |.text|, CODE, READONLY
|
|
||||||
|
|
||||||
GET celt/arm/armopts.s
|
|
||||||
|
|
||||||
IF OPUS_ARM_MAY_HAVE_EDSP
|
|
||||||
EXPORT celt_pitch_xcorr_edsp
|
|
||||||
ENDIF
|
|
||||||
|
|
||||||
IF OPUS_ARM_MAY_HAVE_NEON
|
|
||||||
EXPORT celt_pitch_xcorr_neon
|
|
||||||
ENDIF
|
|
||||||
|
|
||||||
IF OPUS_ARM_MAY_HAVE_NEON
|
|
||||||
|
|
||||||
; Compute sum[k]=sum(x[j]*y[j+k],j=0...len-1), k=0...3
|
|
||||||
xcorr_kernel_neon PROC
|
|
||||||
xcorr_kernel_neon_start
|
|
||||||
; input:
|
|
||||||
; r3 = int len
|
|
||||||
; r4 = opus_val16 *x
|
|
||||||
; r5 = opus_val16 *y
|
|
||||||
; q0 = opus_val32 sum[4]
|
|
||||||
; output:
|
|
||||||
; q0 = opus_val32 sum[4]
|
|
||||||
; preserved: r0-r3, r6-r11, d2, q4-q7, q9-q15
|
|
||||||
; internal usage:
|
|
||||||
; r12 = int j
|
|
||||||
; d3 = y_3|y_2|y_1|y_0
|
|
||||||
; q2 = y_B|y_A|y_9|y_8|y_7|y_6|y_5|y_4
|
|
||||||
; q3 = x_7|x_6|x_5|x_4|x_3|x_2|x_1|x_0
|
|
||||||
; q8 = scratch
|
|
||||||
;
|
|
||||||
; Load y[0...3]
|
|
||||||
; This requires len>0 to always be valid (which we assert in the C code).
|
|
||||||
VLD1.16 {d5}, [r5]!
|
|
||||||
SUBS r12, r3, #8
|
|
||||||
BLE xcorr_kernel_neon_process4
|
|
||||||
; Process 8 samples at a time.
|
|
||||||
; This loop loads one y value more than we actually need. Therefore we have to
|
|
||||||
; stop as soon as there are 8 or fewer samples left (instead of 7), to avoid
|
|
||||||
; reading past the end of the array.
|
|
||||||
xcorr_kernel_neon_process8
|
|
||||||
; This loop has 19 total instructions (10 cycles to issue, minimum), with
|
|
||||||
; - 2 cycles of ARM insrtuctions,
|
|
||||||
; - 10 cycles of load/store/byte permute instructions, and
|
|
||||||
; - 9 cycles of data processing instructions.
|
|
||||||
; On a Cortex A8, we dual-issue the maximum amount (9 cycles) between the
|
|
||||||
; latter two categories, meaning the whole loop should run in 10 cycles per
|
|
||||||
; iteration, barring cache misses.
|
|
||||||
;
|
|
||||||
; Load x[0...7]
|
|
||||||
VLD1.16 {d6, d7}, [r4]!
|
|
||||||
; Unlike VMOV, VAND is a data processsing instruction (and doesn't get
|
|
||||||
; assembled to VMOV, like VORR would), so it dual-issues with the prior VLD1.
|
|
||||||
VAND d3, d5, d5
|
|
||||||
SUBS r12, r12, #8
|
|
||||||
; Load y[4...11]
|
|
||||||
VLD1.16 {d4, d5}, [r5]!
|
|
||||||
VMLAL.S16 q0, d3, d6[0]
|
|
||||||
VEXT.16 d16, d3, d4, #1
|
|
||||||
VMLAL.S16 q0, d4, d7[0]
|
|
||||||
VEXT.16 d17, d4, d5, #1
|
|
||||||
VMLAL.S16 q0, d16, d6[1]
|
|
||||||
VEXT.16 d16, d3, d4, #2
|
|
||||||
VMLAL.S16 q0, d17, d7[1]
|
|
||||||
VEXT.16 d17, d4, d5, #2
|
|
||||||
VMLAL.S16 q0, d16, d6[2]
|
|
||||||
VEXT.16 d16, d3, d4, #3
|
|
||||||
VMLAL.S16 q0, d17, d7[2]
|
|
||||||
VEXT.16 d17, d4, d5, #3
|
|
||||||
VMLAL.S16 q0, d16, d6[3]
|
|
||||||
VMLAL.S16 q0, d17, d7[3]
|
|
||||||
BGT xcorr_kernel_neon_process8
|
|
||||||
; Process 4 samples here if we have > 4 left (still reading one extra y value).
|
|
||||||
xcorr_kernel_neon_process4
|
|
||||||
ADDS r12, r12, #4
|
|
||||||
BLE xcorr_kernel_neon_process2
|
|
||||||
; Load x[0...3]
|
|
||||||
VLD1.16 d6, [r4]!
|
|
||||||
; Use VAND since it's a data processing instruction again.
|
|
||||||
VAND d4, d5, d5
|
|
||||||
SUB r12, r12, #4
|
|
||||||
; Load y[4...7]
|
|
||||||
VLD1.16 d5, [r5]!
|
|
||||||
VMLAL.S16 q0, d4, d6[0]
|
|
||||||
VEXT.16 d16, d4, d5, #1
|
|
||||||
VMLAL.S16 q0, d16, d6[1]
|
|
||||||
VEXT.16 d16, d4, d5, #2
|
|
||||||
VMLAL.S16 q0, d16, d6[2]
|
|
||||||
VEXT.16 d16, d4, d5, #3
|
|
||||||
VMLAL.S16 q0, d16, d6[3]
|
|
||||||
; Process 2 samples here if we have > 2 left (still reading one extra y value).
|
|
||||||
xcorr_kernel_neon_process2
|
|
||||||
ADDS r12, r12, #2
|
|
||||||
BLE xcorr_kernel_neon_process1
|
|
||||||
; Load x[0...1]
|
|
||||||
VLD2.16 {d6[],d7[]}, [r4]!
|
|
||||||
; Use VAND since it's a data processing instruction again.
|
|
||||||
VAND d4, d5, d5
|
|
||||||
SUB r12, r12, #2
|
|
||||||
; Load y[4...5]
|
|
||||||
VLD1.32 {d5[]}, [r5]!
|
|
||||||
VMLAL.S16 q0, d4, d6
|
|
||||||
VEXT.16 d16, d4, d5, #1
|
|
||||||
; Replace bottom copy of {y5,y4} in d5 with {y3,y2} from d4, using VSRI
|
|
||||||
; instead of VEXT, since it's a data-processing instruction.
|
|
||||||
VSRI.64 d5, d4, #32
|
|
||||||
VMLAL.S16 q0, d16, d7
|
|
||||||
; Process 1 sample using the extra y value we loaded above.
|
|
||||||
xcorr_kernel_neon_process1
|
|
||||||
; Load next *x
|
|
||||||
VLD1.16 {d6[]}, [r4]!
|
|
||||||
ADDS r12, r12, #1
|
|
||||||
; y[0...3] are left in d5 from prior iteration(s) (if any)
|
|
||||||
VMLAL.S16 q0, d5, d6
|
|
||||||
MOVLE pc, lr
|
|
||||||
; Now process 1 last sample, not reading ahead.
|
|
||||||
; Load last *y
|
|
||||||
VLD1.16 {d4[]}, [r5]!
|
|
||||||
VSRI.64 d4, d5, #16
|
|
||||||
; Load last *x
|
|
||||||
VLD1.16 {d6[]}, [r4]!
|
|
||||||
VMLAL.S16 q0, d4, d6
|
|
||||||
MOV pc, lr
|
|
||||||
ENDP
|
|
||||||
|
|
||||||
; opus_val32 celt_pitch_xcorr_neon(opus_val16 *_x, opus_val16 *_y,
|
|
||||||
; opus_val32 *xcorr, int len, int max_pitch, int arch)
|
|
||||||
celt_pitch_xcorr_neon PROC
|
|
||||||
; input:
|
|
||||||
; r0 = opus_val16 *_x
|
|
||||||
; r1 = opus_val16 *_y
|
|
||||||
; r2 = opus_val32 *xcorr
|
|
||||||
; r3 = int len
|
|
||||||
; output:
|
|
||||||
; r0 = int maxcorr
|
|
||||||
; internal usage:
|
|
||||||
; r4 = opus_val16 *x (for xcorr_kernel_neon())
|
|
||||||
; r5 = opus_val16 *y (for xcorr_kernel_neon())
|
|
||||||
; r6 = int max_pitch
|
|
||||||
; r12 = int j
|
|
||||||
; q15 = int maxcorr[4] (q15 is not used by xcorr_kernel_neon())
|
|
||||||
; ignored:
|
|
||||||
; int arch
|
|
||||||
STMFD sp!, {r4-r6, lr}
|
|
||||||
LDR r6, [sp, #16]
|
|
||||||
VMOV.S32 q15, #1
|
|
||||||
; if (max_pitch < 4) goto celt_pitch_xcorr_neon_process4_done
|
|
||||||
SUBS r6, r6, #4
|
|
||||||
BLT celt_pitch_xcorr_neon_process4_done
|
|
||||||
celt_pitch_xcorr_neon_process4
|
|
||||||
; xcorr_kernel_neon parameters:
|
|
||||||
; r3 = len, r4 = _x, r5 = _y, q0 = {0, 0, 0, 0}
|
|
||||||
MOV r4, r0
|
|
||||||
MOV r5, r1
|
|
||||||
VEOR q0, q0, q0
|
|
||||||
; xcorr_kernel_neon only modifies r4, r5, r12, and q0...q3.
|
|
||||||
; So we don't save/restore any other registers.
|
|
||||||
BL xcorr_kernel_neon_start
|
|
||||||
SUBS r6, r6, #4
|
|
||||||
VST1.32 {q0}, [r2]!
|
|
||||||
; _y += 4
|
|
||||||
ADD r1, r1, #8
|
|
||||||
VMAX.S32 q15, q15, q0
|
|
||||||
; if (max_pitch < 4) goto celt_pitch_xcorr_neon_process4_done
|
|
||||||
BGE celt_pitch_xcorr_neon_process4
|
|
||||||
; We have less than 4 sums left to compute.
|
|
||||||
celt_pitch_xcorr_neon_process4_done
|
|
||||||
ADDS r6, r6, #4
|
|
||||||
; Reduce maxcorr to a single value
|
|
||||||
VMAX.S32 d30, d30, d31
|
|
||||||
VPMAX.S32 d30, d30, d30
|
|
||||||
; if (max_pitch <= 0) goto celt_pitch_xcorr_neon_done
|
|
||||||
BLE celt_pitch_xcorr_neon_done
|
|
||||||
; Now compute each remaining sum one at a time.
|
|
||||||
celt_pitch_xcorr_neon_process_remaining
|
|
||||||
MOV r4, r0
|
|
||||||
MOV r5, r1
|
|
||||||
VMOV.I32 q0, #0
|
|
||||||
SUBS r12, r3, #8
|
|
||||||
BLT celt_pitch_xcorr_neon_process_remaining4
|
|
||||||
; Sum terms 8 at a time.
|
|
||||||
celt_pitch_xcorr_neon_process_remaining_loop8
|
|
||||||
; Load x[0...7]
|
|
||||||
VLD1.16 {q1}, [r4]!
|
|
||||||
; Load y[0...7]
|
|
||||||
VLD1.16 {q2}, [r5]!
|
|
||||||
SUBS r12, r12, #8
|
|
||||||
VMLAL.S16 q0, d4, d2
|
|
||||||
VMLAL.S16 q0, d5, d3
|
|
||||||
BGE celt_pitch_xcorr_neon_process_remaining_loop8
|
|
||||||
; Sum terms 4 at a time.
|
|
||||||
celt_pitch_xcorr_neon_process_remaining4
|
|
||||||
ADDS r12, r12, #4
|
|
||||||
BLT celt_pitch_xcorr_neon_process_remaining4_done
|
|
||||||
; Load x[0...3]
|
|
||||||
VLD1.16 {d2}, [r4]!
|
|
||||||
; Load y[0...3]
|
|
||||||
VLD1.16 {d3}, [r5]!
|
|
||||||
SUB r12, r12, #4
|
|
||||||
VMLAL.S16 q0, d3, d2
|
|
||||||
celt_pitch_xcorr_neon_process_remaining4_done
|
|
||||||
; Reduce the sum to a single value.
|
|
||||||
VADD.S32 d0, d0, d1
|
|
||||||
VPADDL.S32 d0, d0
|
|
||||||
ADDS r12, r12, #4
|
|
||||||
BLE celt_pitch_xcorr_neon_process_remaining_loop_done
|
|
||||||
; Sum terms 1 at a time.
|
|
||||||
celt_pitch_xcorr_neon_process_remaining_loop1
|
|
||||||
VLD1.16 {d2[]}, [r4]!
|
|
||||||
VLD1.16 {d3[]}, [r5]!
|
|
||||||
SUBS r12, r12, #1
|
|
||||||
VMLAL.S16 q0, d2, d3
|
|
||||||
BGT celt_pitch_xcorr_neon_process_remaining_loop1
|
|
||||||
celt_pitch_xcorr_neon_process_remaining_loop_done
|
|
||||||
VST1.32 {d0[0]}, [r2]!
|
|
||||||
VMAX.S32 d30, d30, d0
|
|
||||||
SUBS r6, r6, #1
|
|
||||||
; _y++
|
|
||||||
ADD r1, r1, #2
|
|
||||||
; if (--max_pitch > 0) goto celt_pitch_xcorr_neon_process_remaining
|
|
||||||
BGT celt_pitch_xcorr_neon_process_remaining
|
|
||||||
celt_pitch_xcorr_neon_done
|
|
||||||
VMOV.32 r0, d30[0]
|
|
||||||
LDMFD sp!, {r4-r6, pc}
|
|
||||||
ENDP
|
|
||||||
|
|
||||||
ENDIF
|
|
||||||
|
|
||||||
IF OPUS_ARM_MAY_HAVE_EDSP
|
|
||||||
|
|
||||||
; This will get used on ARMv7 devices without NEON, so it has been optimized
|
|
||||||
; to take advantage of dual-issuing where possible.
|
|
||||||
xcorr_kernel_edsp PROC
|
|
||||||
xcorr_kernel_edsp_start
|
|
||||||
; input:
|
|
||||||
; r3 = int len
|
|
||||||
; r4 = opus_val16 *_x (must be 32-bit aligned)
|
|
||||||
; r5 = opus_val16 *_y (must be 32-bit aligned)
|
|
||||||
; r6...r9 = opus_val32 sum[4]
|
|
||||||
; output:
|
|
||||||
; r6...r9 = opus_val32 sum[4]
|
|
||||||
; preserved: r0-r5
|
|
||||||
; internal usage
|
|
||||||
; r2 = int j
|
|
||||||
; r12,r14 = opus_val16 x[4]
|
|
||||||
; r10,r11 = opus_val16 y[4]
|
|
||||||
STMFD sp!, {r2,r4,r5,lr}
|
|
||||||
LDR r10, [r5], #4 ; Load y[0...1]
|
|
||||||
SUBS r2, r3, #4 ; j = len-4
|
|
||||||
LDR r11, [r5], #4 ; Load y[2...3]
|
|
||||||
BLE xcorr_kernel_edsp_process4_done
|
|
||||||
LDR r12, [r4], #4 ; Load x[0...1]
|
|
||||||
; Stall
|
|
||||||
xcorr_kernel_edsp_process4
|
|
||||||
; The multiplies must issue from pipeline 0, and can't dual-issue with each
|
|
||||||
; other. Every other instruction here dual-issues with a multiply, and is
|
|
||||||
; thus "free". There should be no stalls in the body of the loop.
|
|
||||||
SMLABB r6, r12, r10, r6 ; sum[0] = MAC16_16(sum[0],x_0,y_0)
|
|
||||||
LDR r14, [r4], #4 ; Load x[2...3]
|
|
||||||
SMLABT r7, r12, r10, r7 ; sum[1] = MAC16_16(sum[1],x_0,y_1)
|
|
||||||
SUBS r2, r2, #4 ; j-=4
|
|
||||||
SMLABB r8, r12, r11, r8 ; sum[2] = MAC16_16(sum[2],x_0,y_2)
|
|
||||||
SMLABT r9, r12, r11, r9 ; sum[3] = MAC16_16(sum[3],x_0,y_3)
|
|
||||||
SMLATT r6, r12, r10, r6 ; sum[0] = MAC16_16(sum[0],x_1,y_1)
|
|
||||||
LDR r10, [r5], #4 ; Load y[4...5]
|
|
||||||
SMLATB r7, r12, r11, r7 ; sum[1] = MAC16_16(sum[1],x_1,y_2)
|
|
||||||
SMLATT r8, r12, r11, r8 ; sum[2] = MAC16_16(sum[2],x_1,y_3)
|
|
||||||
SMLATB r9, r12, r10, r9 ; sum[3] = MAC16_16(sum[3],x_1,y_4)
|
|
||||||
LDRGT r12, [r4], #4 ; Load x[0...1]
|
|
||||||
SMLABB r6, r14, r11, r6 ; sum[0] = MAC16_16(sum[0],x_2,y_2)
|
|
||||||
SMLABT r7, r14, r11, r7 ; sum[1] = MAC16_16(sum[1],x_2,y_3)
|
|
||||||
SMLABB r8, r14, r10, r8 ; sum[2] = MAC16_16(sum[2],x_2,y_4)
|
|
||||||
SMLABT r9, r14, r10, r9 ; sum[3] = MAC16_16(sum[3],x_2,y_5)
|
|
||||||
SMLATT r6, r14, r11, r6 ; sum[0] = MAC16_16(sum[0],x_3,y_3)
|
|
||||||
LDR r11, [r5], #4 ; Load y[6...7]
|
|
||||||
SMLATB r7, r14, r10, r7 ; sum[1] = MAC16_16(sum[1],x_3,y_4)
|
|
||||||
SMLATT r8, r14, r10, r8 ; sum[2] = MAC16_16(sum[2],x_3,y_5)
|
|
||||||
SMLATB r9, r14, r11, r9 ; sum[3] = MAC16_16(sum[3],x_3,y_6)
|
|
||||||
BGT xcorr_kernel_edsp_process4
|
|
||||||
xcorr_kernel_edsp_process4_done
|
|
||||||
ADDS r2, r2, #4
|
|
||||||
BLE xcorr_kernel_edsp_done
|
|
||||||
LDRH r12, [r4], #2 ; r12 = *x++
|
|
||||||
SUBS r2, r2, #1 ; j--
|
|
||||||
; Stall
|
|
||||||
SMLABB r6, r12, r10, r6 ; sum[0] = MAC16_16(sum[0],x,y_0)
|
|
||||||
LDRHGT r14, [r4], #2 ; r14 = *x++
|
|
||||||
SMLABT r7, r12, r10, r7 ; sum[1] = MAC16_16(sum[1],x,y_1)
|
|
||||||
SMLABB r8, r12, r11, r8 ; sum[2] = MAC16_16(sum[2],x,y_2)
|
|
||||||
SMLABT r9, r12, r11, r9 ; sum[3] = MAC16_16(sum[3],x,y_3)
|
|
||||||
BLE xcorr_kernel_edsp_done
|
|
||||||
SMLABT r6, r14, r10, r6 ; sum[0] = MAC16_16(sum[0],x,y_1)
|
|
||||||
SUBS r2, r2, #1 ; j--
|
|
||||||
SMLABB r7, r14, r11, r7 ; sum[1] = MAC16_16(sum[1],x,y_2)
|
|
||||||
LDRH r10, [r5], #2 ; r10 = y_4 = *y++
|
|
||||||
SMLABT r8, r14, r11, r8 ; sum[2] = MAC16_16(sum[2],x,y_3)
|
|
||||||
LDRHGT r12, [r4], #2 ; r12 = *x++
|
|
||||||
SMLABB r9, r14, r10, r9 ; sum[3] = MAC16_16(sum[3],x,y_4)
|
|
||||||
BLE xcorr_kernel_edsp_done
|
|
||||||
SMLABB r6, r12, r11, r6 ; sum[0] = MAC16_16(sum[0],tmp,y_2)
|
|
||||||
CMP r2, #1 ; j--
|
|
||||||
SMLABT r7, r12, r11, r7 ; sum[1] = MAC16_16(sum[1],tmp,y_3)
|
|
||||||
LDRH r2, [r5], #2 ; r2 = y_5 = *y++
|
|
||||||
SMLABB r8, r12, r10, r8 ; sum[2] = MAC16_16(sum[2],tmp,y_4)
|
|
||||||
LDRHGT r14, [r4] ; r14 = *x
|
|
||||||
SMLABB r9, r12, r2, r9 ; sum[3] = MAC16_16(sum[3],tmp,y_5)
|
|
||||||
BLE xcorr_kernel_edsp_done
|
|
||||||
SMLABT r6, r14, r11, r6 ; sum[0] = MAC16_16(sum[0],tmp,y_3)
|
|
||||||
LDRH r11, [r5] ; r11 = y_6 = *y
|
|
||||||
SMLABB r7, r14, r10, r7 ; sum[1] = MAC16_16(sum[1],tmp,y_4)
|
|
||||||
SMLABB r8, r14, r2, r8 ; sum[2] = MAC16_16(sum[2],tmp,y_5)
|
|
||||||
SMLABB r9, r14, r11, r9 ; sum[3] = MAC16_16(sum[3],tmp,y_6)
|
|
||||||
xcorr_kernel_edsp_done
|
|
||||||
LDMFD sp!, {r2,r4,r5,pc}
|
|
||||||
ENDP
|
|
||||||
|
|
||||||
celt_pitch_xcorr_edsp PROC
|
|
||||||
; input:
|
|
||||||
; r0 = opus_val16 *_x (must be 32-bit aligned)
|
|
||||||
; r1 = opus_val16 *_y (only needs to be 16-bit aligned)
|
|
||||||
; r2 = opus_val32 *xcorr
|
|
||||||
; r3 = int len
|
|
||||||
; output:
|
|
||||||
; r0 = maxcorr
|
|
||||||
; internal usage
|
|
||||||
; r4 = opus_val16 *x
|
|
||||||
; r5 = opus_val16 *y
|
|
||||||
; r6 = opus_val32 sum0
|
|
||||||
; r7 = opus_val32 sum1
|
|
||||||
; r8 = opus_val32 sum2
|
|
||||||
; r9 = opus_val32 sum3
|
|
||||||
; r1 = int max_pitch
|
|
||||||
; r12 = int j
|
|
||||||
; ignored:
|
|
||||||
; int arch
|
|
||||||
STMFD sp!, {r4-r11, lr}
|
|
||||||
MOV r5, r1
|
|
||||||
LDR r1, [sp, #36]
|
|
||||||
MOV r4, r0
|
|
||||||
TST r5, #3
|
|
||||||
; maxcorr = 1
|
|
||||||
MOV r0, #1
|
|
||||||
BEQ celt_pitch_xcorr_edsp_process1u_done
|
|
||||||
; Compute one sum at the start to make y 32-bit aligned.
|
|
||||||
SUBS r12, r3, #4
|
|
||||||
; r14 = sum = 0
|
|
||||||
MOV r14, #0
|
|
||||||
LDRH r8, [r5], #2
|
|
||||||
BLE celt_pitch_xcorr_edsp_process1u_loop4_done
|
|
||||||
LDR r6, [r4], #4
|
|
||||||
MOV r8, r8, LSL #16
|
|
||||||
celt_pitch_xcorr_edsp_process1u_loop4
|
|
||||||
LDR r9, [r5], #4
|
|
||||||
SMLABT r14, r6, r8, r14 ; sum = MAC16_16(sum, x_0, y_0)
|
|
||||||
LDR r7, [r4], #4
|
|
||||||
SMLATB r14, r6, r9, r14 ; sum = MAC16_16(sum, x_1, y_1)
|
|
||||||
LDR r8, [r5], #4
|
|
||||||
SMLABT r14, r7, r9, r14 ; sum = MAC16_16(sum, x_2, y_2)
|
|
||||||
SUBS r12, r12, #4 ; j-=4
|
|
||||||
SMLATB r14, r7, r8, r14 ; sum = MAC16_16(sum, x_3, y_3)
|
|
||||||
LDRGT r6, [r4], #4
|
|
||||||
BGT celt_pitch_xcorr_edsp_process1u_loop4
|
|
||||||
MOV r8, r8, LSR #16
|
|
||||||
celt_pitch_xcorr_edsp_process1u_loop4_done
|
|
||||||
ADDS r12, r12, #4
|
|
||||||
celt_pitch_xcorr_edsp_process1u_loop1
|
|
||||||
LDRHGE r6, [r4], #2
|
|
||||||
; Stall
|
|
||||||
SMLABBGE r14, r6, r8, r14 ; sum = MAC16_16(sum, *x, *y)
|
|
||||||
SUBSGE r12, r12, #1
|
|
||||||
LDRHGT r8, [r5], #2
|
|
||||||
BGT celt_pitch_xcorr_edsp_process1u_loop1
|
|
||||||
; Restore _x
|
|
||||||
SUB r4, r4, r3, LSL #1
|
|
||||||
; Restore and advance _y
|
|
||||||
SUB r5, r5, r3, LSL #1
|
|
||||||
; maxcorr = max(maxcorr, sum)
|
|
||||||
CMP r0, r14
|
|
||||||
ADD r5, r5, #2
|
|
||||||
MOVLT r0, r14
|
|
||||||
SUBS r1, r1, #1
|
|
||||||
; xcorr[i] = sum
|
|
||||||
STR r14, [r2], #4
|
|
||||||
BLE celt_pitch_xcorr_edsp_done
|
|
||||||
celt_pitch_xcorr_edsp_process1u_done
|
|
||||||
; if (max_pitch < 4) goto celt_pitch_xcorr_edsp_process2
|
|
||||||
SUBS r1, r1, #4
|
|
||||||
BLT celt_pitch_xcorr_edsp_process2
|
|
||||||
celt_pitch_xcorr_edsp_process4
|
|
||||||
; xcorr_kernel_edsp parameters:
|
|
||||||
; r3 = len, r4 = _x, r5 = _y, r6...r9 = sum[4] = {0, 0, 0, 0}
|
|
||||||
MOV r6, #0
|
|
||||||
MOV r7, #0
|
|
||||||
MOV r8, #0
|
|
||||||
MOV r9, #0
|
|
||||||
BL xcorr_kernel_edsp_start ; xcorr_kernel_edsp(_x, _y+i, xcorr+i, len)
|
|
||||||
; maxcorr = max(maxcorr, sum0, sum1, sum2, sum3)
|
|
||||||
CMP r0, r6
|
|
||||||
; _y+=4
|
|
||||||
ADD r5, r5, #8
|
|
||||||
MOVLT r0, r6
|
|
||||||
CMP r0, r7
|
|
||||||
MOVLT r0, r7
|
|
||||||
CMP r0, r8
|
|
||||||
MOVLT r0, r8
|
|
||||||
CMP r0, r9
|
|
||||||
MOVLT r0, r9
|
|
||||||
STMIA r2!, {r6-r9}
|
|
||||||
SUBS r1, r1, #4
|
|
||||||
BGE celt_pitch_xcorr_edsp_process4
|
|
||||||
celt_pitch_xcorr_edsp_process2
|
|
||||||
ADDS r1, r1, #2
|
|
||||||
BLT celt_pitch_xcorr_edsp_process1a
|
|
||||||
SUBS r12, r3, #4
|
|
||||||
; {r10, r11} = {sum0, sum1} = {0, 0}
|
|
||||||
MOV r10, #0
|
|
||||||
MOV r11, #0
|
|
||||||
LDR r8, [r5], #4
|
|
||||||
BLE celt_pitch_xcorr_edsp_process2_loop_done
|
|
||||||
LDR r6, [r4], #4
|
|
||||||
LDR r9, [r5], #4
|
|
||||||
celt_pitch_xcorr_edsp_process2_loop4
|
|
||||||
SMLABB r10, r6, r8, r10 ; sum0 = MAC16_16(sum0, x_0, y_0)
|
|
||||||
LDR r7, [r4], #4
|
|
||||||
SMLABT r11, r6, r8, r11 ; sum1 = MAC16_16(sum1, x_0, y_1)
|
|
||||||
SUBS r12, r12, #4 ; j-=4
|
|
||||||
SMLATT r10, r6, r8, r10 ; sum0 = MAC16_16(sum0, x_1, y_1)
|
|
||||||
LDR r8, [r5], #4
|
|
||||||
SMLATB r11, r6, r9, r11 ; sum1 = MAC16_16(sum1, x_1, y_2)
|
|
||||||
LDRGT r6, [r4], #4
|
|
||||||
SMLABB r10, r7, r9, r10 ; sum0 = MAC16_16(sum0, x_2, y_2)
|
|
||||||
SMLABT r11, r7, r9, r11 ; sum1 = MAC16_16(sum1, x_2, y_3)
|
|
||||||
SMLATT r10, r7, r9, r10 ; sum0 = MAC16_16(sum0, x_3, y_3)
|
|
||||||
LDRGT r9, [r5], #4
|
|
||||||
SMLATB r11, r7, r8, r11 ; sum1 = MAC16_16(sum1, x_3, y_4)
|
|
||||||
BGT celt_pitch_xcorr_edsp_process2_loop4
|
|
||||||
celt_pitch_xcorr_edsp_process2_loop_done
|
|
||||||
ADDS r12, r12, #2
|
|
||||||
BLE celt_pitch_xcorr_edsp_process2_1
|
|
||||||
LDR r6, [r4], #4
|
|
||||||
; Stall
|
|
||||||
SMLABB r10, r6, r8, r10 ; sum0 = MAC16_16(sum0, x_0, y_0)
|
|
||||||
LDR r9, [r5], #4
|
|
||||||
SMLABT r11, r6, r8, r11 ; sum1 = MAC16_16(sum1, x_0, y_1)
|
|
||||||
SUB r12, r12, #2
|
|
||||||
SMLATT r10, r6, r8, r10 ; sum0 = MAC16_16(sum0, x_1, y_1)
|
|
||||||
MOV r8, r9
|
|
||||||
SMLATB r11, r6, r9, r11 ; sum1 = MAC16_16(sum1, x_1, y_2)
|
|
||||||
celt_pitch_xcorr_edsp_process2_1
|
|
||||||
LDRH r6, [r4], #2
|
|
||||||
ADDS r12, r12, #1
|
|
||||||
; Stall
|
|
||||||
SMLABB r10, r6, r8, r10 ; sum0 = MAC16_16(sum0, x_0, y_0)
|
|
||||||
LDRHGT r7, [r4], #2
|
|
||||||
SMLABT r11, r6, r8, r11 ; sum1 = MAC16_16(sum1, x_0, y_1)
|
|
||||||
BLE celt_pitch_xcorr_edsp_process2_done
|
|
||||||
LDRH r9, [r5], #2
|
|
||||||
SMLABT r10, r7, r8, r10 ; sum0 = MAC16_16(sum0, x_0, y_1)
|
|
||||||
SMLABB r11, r7, r9, r11 ; sum1 = MAC16_16(sum1, x_0, y_2)
|
|
||||||
celt_pitch_xcorr_edsp_process2_done
|
|
||||||
; Restore _x
|
|
||||||
SUB r4, r4, r3, LSL #1
|
|
||||||
; Restore and advance _y
|
|
||||||
SUB r5, r5, r3, LSL #1
|
|
||||||
; maxcorr = max(maxcorr, sum0)
|
|
||||||
CMP r0, r10
|
|
||||||
ADD r5, r5, #2
|
|
||||||
MOVLT r0, r10
|
|
||||||
SUB r1, r1, #2
|
|
||||||
; maxcorr = max(maxcorr, sum1)
|
|
||||||
CMP r0, r11
|
|
||||||
; xcorr[i] = sum
|
|
||||||
STR r10, [r2], #4
|
|
||||||
MOVLT r0, r11
|
|
||||||
STR r11, [r2], #4
|
|
||||||
celt_pitch_xcorr_edsp_process1a
|
|
||||||
ADDS r1, r1, #1
|
|
||||||
BLT celt_pitch_xcorr_edsp_done
|
|
||||||
SUBS r12, r3, #4
|
|
||||||
; r14 = sum = 0
|
|
||||||
MOV r14, #0
|
|
||||||
BLT celt_pitch_xcorr_edsp_process1a_loop_done
|
|
||||||
LDR r6, [r4], #4
|
|
||||||
LDR r8, [r5], #4
|
|
||||||
LDR r7, [r4], #4
|
|
||||||
LDR r9, [r5], #4
|
|
||||||
celt_pitch_xcorr_edsp_process1a_loop4
|
|
||||||
SMLABB r14, r6, r8, r14 ; sum = MAC16_16(sum, x_0, y_0)
|
|
||||||
SUBS r12, r12, #4 ; j-=4
|
|
||||||
SMLATT r14, r6, r8, r14 ; sum = MAC16_16(sum, x_1, y_1)
|
|
||||||
LDRGE r6, [r4], #4
|
|
||||||
SMLABB r14, r7, r9, r14 ; sum = MAC16_16(sum, x_2, y_2)
|
|
||||||
LDRGE r8, [r5], #4
|
|
||||||
SMLATT r14, r7, r9, r14 ; sum = MAC16_16(sum, x_3, y_3)
|
|
||||||
LDRGE r7, [r4], #4
|
|
||||||
LDRGE r9, [r5], #4
|
|
||||||
BGE celt_pitch_xcorr_edsp_process1a_loop4
|
|
||||||
celt_pitch_xcorr_edsp_process1a_loop_done
|
|
||||||
ADDS r12, r12, #2
|
|
||||||
LDRGE r6, [r4], #4
|
|
||||||
LDRGE r8, [r5], #4
|
|
||||||
; Stall
|
|
||||||
SMLABBGE r14, r6, r8, r14 ; sum = MAC16_16(sum, x_0, y_0)
|
|
||||||
SUBGE r12, r12, #2
|
|
||||||
SMLATTGE r14, r6, r8, r14 ; sum = MAC16_16(sum, x_1, y_1)
|
|
||||||
ADDS r12, r12, #1
|
|
||||||
LDRHGE r6, [r4], #2
|
|
||||||
LDRHGE r8, [r5], #2
|
|
||||||
; Stall
|
|
||||||
SMLABBGE r14, r6, r8, r14 ; sum = MAC16_16(sum, *x, *y)
|
|
||||||
; maxcorr = max(maxcorr, sum)
|
|
||||||
CMP r0, r14
|
|
||||||
; xcorr[i] = sum
|
|
||||||
STR r14, [r2], #4
|
|
||||||
MOVLT r0, r14
|
|
||||||
celt_pitch_xcorr_edsp_done
|
|
||||||
LDMFD sp!, {r4-r11, pc}
|
|
||||||
ENDP
|
|
||||||
|
|
||||||
ENDIF
|
|
||||||
|
|
||||||
END
|
|
71
node_modules/@discordjs/opus/deps/opus/celt/arm/fft_arm.h
generated
vendored
71
node_modules/@discordjs/opus/deps/opus/celt/arm/fft_arm.h
generated
vendored
@ -1,71 +0,0 @@
|
|||||||
/* Copyright (c) 2015 Xiph.Org Foundation
|
|
||||||
Written by Viswanath Puttagunta */
|
|
||||||
/**
|
|
||||||
@file fft_arm.h
|
|
||||||
@brief ARM Neon Intrinsic optimizations for fft using NE10 library
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*
|
|
||||||
Redistribution and use in source and binary forms, with or without
|
|
||||||
modification, are permitted provided that the following conditions
|
|
||||||
are met:
|
|
||||||
|
|
||||||
- Redistributions of source code must retain the above copyright
|
|
||||||
notice, this list of conditions and the following disclaimer.
|
|
||||||
|
|
||||||
- Redistributions in binary form must reproduce the above copyright
|
|
||||||
notice, this list of conditions and the following disclaimer in the
|
|
||||||
documentation and/or other materials provided with the distribution.
|
|
||||||
|
|
||||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
||||||
``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
||||||
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
||||||
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
|
|
||||||
OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
|
||||||
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
||||||
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
|
||||||
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
|
||||||
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
||||||
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
||||||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
||||||
*/
|
|
||||||
|
|
||||||
|
|
||||||
#if !defined(FFT_ARM_H)
|
|
||||||
#define FFT_ARM_H
|
|
||||||
|
|
||||||
#include "kiss_fft.h"
|
|
||||||
|
|
||||||
#if defined(HAVE_ARM_NE10)
|
|
||||||
|
|
||||||
int opus_fft_alloc_arm_neon(kiss_fft_state *st);
|
|
||||||
void opus_fft_free_arm_neon(kiss_fft_state *st);
|
|
||||||
|
|
||||||
void opus_fft_neon(const kiss_fft_state *st,
|
|
||||||
const kiss_fft_cpx *fin,
|
|
||||||
kiss_fft_cpx *fout);
|
|
||||||
|
|
||||||
void opus_ifft_neon(const kiss_fft_state *st,
|
|
||||||
const kiss_fft_cpx *fin,
|
|
||||||
kiss_fft_cpx *fout);
|
|
||||||
|
|
||||||
#if !defined(OPUS_HAVE_RTCD)
|
|
||||||
#define OVERRIDE_OPUS_FFT (1)
|
|
||||||
|
|
||||||
#define opus_fft_alloc_arch(_st, arch) \
|
|
||||||
((void)(arch), opus_fft_alloc_arm_neon(_st))
|
|
||||||
|
|
||||||
#define opus_fft_free_arch(_st, arch) \
|
|
||||||
((void)(arch), opus_fft_free_arm_neon(_st))
|
|
||||||
|
|
||||||
#define opus_fft(_st, _fin, _fout, arch) \
|
|
||||||
((void)(arch), opus_fft_neon(_st, _fin, _fout))
|
|
||||||
|
|
||||||
#define opus_ifft(_st, _fin, _fout, arch) \
|
|
||||||
((void)(arch), opus_ifft_neon(_st, _fin, _fout))
|
|
||||||
|
|
||||||
#endif /* OPUS_HAVE_RTCD */
|
|
||||||
|
|
||||||
#endif /* HAVE_ARM_NE10 */
|
|
||||||
|
|
||||||
#endif
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user