-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCommon.h
65 lines (55 loc) · 1.81 KB
/
Common.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
// common.h : standard includes, use this header to create a precompiled
// header file if desired
//
// This code is part of the ICST DSP Library version 1.2. It is released
// under the 2-clause BSD license. Copyright (c) 2008-2010, Zurich
// University of the Arts, Beat Frei. All rights reserved.
//
// Celemony Software GmbH has extended this version of the ICST DSP Library
// to read and write iXML data chunks in audio files.
#ifndef _ICST_DSPLIB_COMMON_INCLUDED
#define _ICST_DSPLIB_COMMON_INCLUDED
// for testing purposes only
//#define ICSTLIB_NO_SSEOPT
//#define ICSTLIB_DEF_ROUND
//#define ICSTLIB_ENABLE_MFC
//#define ICSTLIB_USE_IPP
// universal includes that must be provided to the outside
#include <cfloat>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#ifndef ICSTLIB_NO_SSEOPT
#if (defined(_M_IX86_FP) && (_M_IX86_FP >= 2)) || \
(defined(__SSE2__) && __SSE2__)
#include <emmintrin.h> // SSE2 intrinsics
#endif
#endif
#ifdef _WIN32
#ifndef NOMINMAX // no max/min macros are defined when
#define NOMINMAX // "windows.h" is included
#endif
#ifdef ICSTLIB_ENABLE_MFC
#include <afxwin.h> // MFC core and standard components
#endif
#endif
// global macros that must be provided to the outside
#ifdef ICSTLIB_NO_SSEOPT
#define ICSTDSP_SSEALIGN
#else
#if defined(_MSC_VER)
#define ICSTDSP_SSEALIGN __declspec(align(16))
#else
#define ICSTDSP_SSEALIGN __attribute__((aligned(16)))
#endif
#endif
// library specific data types that must be provided to the outside
namespace icstdsp { // begin library specific namespace
class cpx {public: float re; float im;};
#if (defined(_MSC_VER) || defined(__BORLANDC__))
typedef __int64 icstdsp_int64;
#else
typedef int64_t icstdsp_int64;
#endif
} // end library specific namespace
#endif