early-access version 2853

This commit is contained in:
pineappleEA
2022-07-23 03:01:36 +02:00
parent 1f2b5081b5
commit 1f111bb69c
8955 changed files with 418777 additions and 999 deletions

120
externals/vcpkg/ports/speexdsp/CMakeLists.txt vendored Executable file
View File

@@ -0,0 +1,120 @@
cmake_minimum_required(VERSION 3.1)
option(USE_SSE "Use SSE" OFF)
option(USE_NEON "Use NEON" OFF)
option(FIXED_POINT "Use Fixed Point Arithmetic" OFF)
set(LIBSPEEXDSP_VERSION "1.2.0")
set(LIBSPEEXDSP_SOVERSION "1")
project(libspeexdsp)
set(LIBSPEEXDSP_SOURCES
"${CMAKE_CURRENT_LIST_DIR}/libspeexdsp/buffer.c"
"${CMAKE_CURRENT_LIST_DIR}/libspeexdsp/fftwrap.c"
"${CMAKE_CURRENT_LIST_DIR}/libspeexdsp/filterbank.c"
"${CMAKE_CURRENT_LIST_DIR}/libspeexdsp/jitter.c"
"${CMAKE_CURRENT_LIST_DIR}/libspeexdsp/mdf.c"
"${CMAKE_CURRENT_LIST_DIR}/libspeexdsp/preprocess.c"
"${CMAKE_CURRENT_LIST_DIR}/libspeexdsp/resample.c"
"${CMAKE_CURRENT_LIST_DIR}/libspeexdsp/scal.c"
)
set(LIBSPEEXDSP_HEADERS
"${CMAKE_CURRENT_LIST_DIR}/libspeexdsp/arch.h"
"${CMAKE_CURRENT_LIST_DIR}/libspeexdsp/bfin.h"
"${CMAKE_CURRENT_LIST_DIR}/libspeexdsp/fftwrap.h"
"${CMAKE_CURRENT_LIST_DIR}/libspeexdsp/filterbank.h"
"${CMAKE_CURRENT_LIST_DIR}/libspeexdsp/fixed_arm4.h"
"${CMAKE_CURRENT_LIST_DIR}/libspeexdsp/fixed_arm5e.h"
"${CMAKE_CURRENT_LIST_DIR}/libspeexdsp/fixed_bfin.h"
"${CMAKE_CURRENT_LIST_DIR}/libspeexdsp/fixed_debug.h"
"${CMAKE_CURRENT_LIST_DIR}/libspeexdsp/fixed_generic.h"
"${CMAKE_CURRENT_LIST_DIR}/libspeexdsp/math_approx.h"
"${CMAKE_CURRENT_LIST_DIR}/libspeexdsp/misc_bfin.h"
"${CMAKE_CURRENT_LIST_DIR}/libspeexdsp/os_support.h"
"${CMAKE_CURRENT_LIST_DIR}/libspeexdsp/pseudofloat.h"
"${CMAKE_CURRENT_LIST_DIR}/libspeexdsp/resample_neon.h"
"${CMAKE_CURRENT_LIST_DIR}/libspeexdsp/resample_sse.h"
"${CMAKE_CURRENT_LIST_DIR}/libspeexdsp/smallft.h"
"${CMAKE_CURRENT_LIST_DIR}/libspeexdsp/stack_alloc.h"
"${CMAKE_CURRENT_LIST_DIR}/libspeexdsp/vorbis_psy.h"
"${CMAKE_CURRENT_LIST_DIR}/include/speex/speex_buffer.h"
)
set(LIBSPEEXDSP_HEADERS_PUBLIC
"${CMAKE_CURRENT_LIST_DIR}/include/speex/speex_echo.h"
"${CMAKE_CURRENT_LIST_DIR}/include/speex/speex_jitter.h"
"${CMAKE_CURRENT_LIST_DIR}/include/speex/speex_preprocess.h"
"${CMAKE_CURRENT_LIST_DIR}/include/speex/speex_resampler.h"
"${CMAKE_CURRENT_LIST_DIR}/include/speex/speexdsp_types.h"
)
set(CMAKE_C_VISIBILITY_PRESET hidden)
if (NOT BUILD_SHARED_LIBS)
add_definitions("-DEXPORT=")
elseif(WIN32)
add_definitions("-DEXPORT=")
list(APPEND LIBSPEEXDSP_SOURCES "${CMAKE_CURRENT_LIST_DIR}/win32/libspeexdsp.def")
else()
add_definitions("-DEXPORT=__attribute__((visibility(\"default\")))")
endif()
if (USE_SSE AND NOT FIXED_POINT)
add_definitions(-DUSE_SSE -DUSE_SSE2)
endif()
if (USE_NEON AND NOT MSVC)
add_definitions(-DUSE_NEON)
endif()
if (FIXED_POINT)
add_definitions(-DFIXED_POINT -DUSE_KISS_FFT)
list(APPEND LIBSPEEXDSP_SOURCES
"${CMAKE_CURRENT_LIST_DIR}/libspeexdsp/kiss_fft.c"
"${CMAKE_CURRENT_LIST_DIR}/libspeexdsp/kiss_fftr.c"
)
list(APPEND LIBSPEEXDSP_HEADERS
"${CMAKE_CURRENT_LIST_DIR}/libspeexdsp/_kiss_fft_guts.h"
"${CMAKE_CURRENT_LIST_DIR}/libspeexdsp/kiss_fft.h"
"${CMAKE_CURRENT_LIST_DIR}/libspeexdsp/kiss_fftr.h"
)
else()
add_definitions(-DFLOATING_POINT -DUSE_SMALLFT)
list(APPEND LIBSPEEXDSP_SOURCES "${CMAKE_CURRENT_LIST_DIR}/libspeexdsp/smallft.c")
endif()
if (NOT MSVC)
add_definitions(-DVAR_ARRAYS)
endif()
# Basic speexdsp_config_types.h for Linux support
set(INCLUDE_STDINT "#include <stdint.h>")
set(SIZE16 "int16_t")
set(USIZE16 "uint16_t")
set(SIZE32 "int32_t")
set(USIZE32 "uint32_t")
configure_file("${CMAKE_CURRENT_LIST_DIR}/include/speex/speexdsp_config_types.h.in"
"${CMAKE_CURRENT_BINARY_DIR}/speexdsp_config_types.h" @ONLY)
list(APPEND LIBSPEEXDSP_HEADERS_PUBLIC "${CMAKE_CURRENT_BINARY_DIR}/speexdsp_config_types.h")
include_directories("${CMAKE_CURRENT_LIST_DIR}/include")
include_directories("${CMAKE_CURRENT_BINARY_DIR}")
add_library(speexdsp ${LIBSPEEXDSP_SOURCES} ${LIBSPEEXDSP_HEADERS})
set_target_properties(speexdsp PROPERTIES PUBLIC_HEADER "${LIBSPEEXDSP_HEADERS_PUBLIC}")
set_target_properties(speexdsp PROPERTIES VERSION "${LIBSPEEXDSP_VERSION}")
set_target_properties(speexdsp PROPERTIES SOVERSION "${LIBSPEEXDSP_SOVERSION}")
# pkgconfig file
set(prefix "${CMAKE_INSTALL_PREFIX}")
set(exec_prefix \${prefix})
SET(bindir \${exec_prefix}/${CMAKE_INSTALL_BINDIR})
SET(libdir \${exec_prefix}/${CMAKE_INSTALL_LIBDIR})
SET(includedir \${prefix}/${CMAKE_INSTALL_INCLUDEDIR})
if(CMAKE_SYSTEM_NAME MATCHES BSD)
set(PKG_CONFIG_RPATH "-Wl,-R\${libdir}")
endif(CMAKE_SYSTEM_NAME MATCHES BSD)
set(PACKAGE_VERSION "${LIBSPEEXDSP_VERSION}")
configure_file(speexdsp.pc.in speexdsp.pc @ONLY)
install(FILES ${PROJECT_BINARY_DIR}/speexdsp.pc DESTINATION ${CMAKE_INSTALL_LIBDIR}/pkgconfig)
install(TARGETS speexdsp
ARCHIVE DESTINATION "lib"
RUNTIME DESTINATION "bin"
PUBLIC_HEADER DESTINATION "include/speex")

View File

@@ -0,0 +1,14 @@
diff --git a/win32/libspeexdsp.def b/win32/libspeexdsp.def
index 45fc69d9..9b5abbad 100755
--- a/win32/libspeexdsp.def
+++ b/win32/libspeexdsp.def
@@ -40,6 +40,8 @@ jitter_buffer_get
jitter_buffer_get_pointer_timestamp
jitter_buffer_tick
jitter_buffer_update_delay
+jitter_buffer_ctl
+jitter_buffer_remaining_span
;
; speex_preprocess.h

50
externals/vcpkg/ports/speexdsp/portfile.cmake vendored Executable file
View File

@@ -0,0 +1,50 @@
if(VCPKG_USE_HEAD_VERSION)
vcpkg_from_gitlab(
GITLAB_URL "https://gitlab.xiph.org"
OUT_SOURCE_PATH SOURCE_PATH
REPO xiph/speexdsp
HEAD_REF master
)
else()
# Since the github repo is out-dated, use official download URL for release builds to reduce traffic to the Gitlab host
vcpkg_download_distfile(ARCHIVE
URLS "http://downloads.xiph.org/releases/speex/speexdsp-1.2.0.tar.gz"
FILENAME "speexdsp-1.2.0.tar.gz"
SHA512 e357cd5377415ea66c862302c7cf8bf6a10063cacd903f0846478975b87974cf5bdf00e2c6759d8f4f453c4c869cf284e9dc948a84a83d7b2ab96bd5405c05ec
)
vcpkg_extract_source_archive_ex(
OUT_SOURCE_PATH SOURCE_PATH
ARCHIVE "${ARCHIVE}"
REF "1.2.0"
PATCHES
jitter_ctl.patch
)
endif()
file(COPY ${CMAKE_CURRENT_LIST_DIR}/CMakeLists.txt DESTINATION ${SOURCE_PATH})
set(USE_SSE OFF)
if(VCPKG_TARGET_ARCHITECTURE STREQUAL "x64" OR VCPKG_TARGET_ARCHITECTURE STREQUAL "x86")
set(USE_SSE ON)
endif()
set(USE_NEON OFF)
if(VCPKG_TARGET_ARCHITECTURE STREQUAL "arm" OR VCPKG_TARGET_ARCHITECTURE STREQUAL "arm64")
set(USE_NEON ON)
endif()
vcpkg_configure_cmake(
SOURCE_PATH ${SOURCE_PATH}
PREFER_NINJA
OPTIONS
-DUSE_SSE=${USE_SSE}
-DUSE_NEON=${USE_NEON}
)
vcpkg_install_cmake()
vcpkg_copy_pdbs()
vcpkg_fixup_pkgconfig()
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)
file(INSTALL "${SOURCE_PATH}/COPYING" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME "copyright")

7
externals/vcpkg/ports/speexdsp/vcpkg.json vendored Executable file
View File

@@ -0,0 +1,7 @@
{
"name": "speexdsp",
"version": "1.2.0",
"port-version": 7,
"description": "A patent-free, Open Source/Free Software DSP library.",
"homepage": "https://speex.org/"
}