mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-10 11:59:58 -05:00
Initial community commit
This commit is contained in:
38
Src/external_dependencies/openmpt-trunk/include/r8brain/r8bbase.cpp
vendored
Normal file
38
Src/external_dependencies/openmpt-trunk/include/r8brain/r8bbase.cpp
vendored
Normal file
@ -0,0 +1,38 @@
|
||||
/**
|
||||
* @file r8bbase.cpp
|
||||
*
|
||||
* @brief C++ file that should be compiled and included into your application.
|
||||
*
|
||||
* This is a single library file that should be compiled and included into the
|
||||
* project that uses the "r8brain-free-src" sample rate converter. This file
|
||||
* defines several global static objects used by the library.
|
||||
*
|
||||
* You may also need to include to your project: the "Kernel32" library
|
||||
* (on Windows) and the "pthread" library on macOS and Linux.
|
||||
*
|
||||
* r8brain-free-src Copyright (c) 2013-2021 Aleksey Vaneev
|
||||
* See the "LICENSE" file for license.
|
||||
*/
|
||||
|
||||
#include "CDSPFIRFilter.h"
|
||||
#include "CDSPFracInterpolator.h"
|
||||
|
||||
namespace r8b {
|
||||
|
||||
#if R8B_FLTTEST
|
||||
int InterpFilterFracs = -1;
|
||||
#endif // R8B_FLTTEST
|
||||
|
||||
CSyncObject CDSPRealFFTKeeper :: StateSync;
|
||||
CDSPRealFFT :: CObjKeeper CDSPRealFFTKeeper :: FFTObjects[ 31 ];
|
||||
|
||||
CSyncObject CDSPFIRFilterCache :: StateSync;
|
||||
CPtrKeeper< CDSPFIRFilter* > CDSPFIRFilterCache :: Objects;
|
||||
int CDSPFIRFilterCache :: ObjCount = 0;
|
||||
|
||||
CSyncObject CDSPFracDelayFilterBankCache :: StateSync;
|
||||
CPtrKeeper< CDSPFracDelayFilterBank* > CDSPFracDelayFilterBankCache :: Objects;
|
||||
CPtrKeeper< CDSPFracDelayFilterBank* > CDSPFracDelayFilterBankCache :: StaticObjects;
|
||||
int CDSPFracDelayFilterBankCache :: ObjCount = 0;
|
||||
|
||||
} // namespace r8b
|
Reference in New Issue
Block a user