Maciej Makowski
Results
2
issues of
Maciej Makowski
CMakeList.txt: ``` cmake_minimum_required(VERSION 3.12.0) project(react-native-audio-api) set(CMAKE_VERBOSE_MAKEFILE ON) set(CMAKE_CXX_STANDARD 20) # Detect the operating system if(APPLE) set(HAVE_ACCELERATE TRUE) endif() # Detect the processor and SIMD support if(CMAKE_SYSTEM_PROCESSOR STREQUAL "arm64" OR CMAKE_SYSTEM_PROCESSOR...
I have audio engine that should get 128 frames each cycle, so if I want to stretch sound twice I will have access to 256 frames. Will it work well...