-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSampleFormat.h
executable file
·63 lines (47 loc) · 1.58 KB
/
SampleFormat.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
#ifndef SAMPLEFORMAT_H
#define SAMPLEFORMAT_H
#include <QString>
//
// Definitions / Meta-Information
//
typedef enum {
int16Sample = 0x00020001,
int24Sample = 0x00040001,
floatSample = 0x0004000F
} sampleFormat;
// Used to determine how to fill in empty areas of audio.
typedef enum {
fillZero = 0,
fillTwo = 2
}fillFormat;
/** \brief Return the size (in memory) of one sample (bytes) */
#define SAMPLE_SIZE(SampleFormat) (SampleFormat >> 16)
/** \brief Return the size on disk of one uncompressed sample (bytes) */
#define SAMPLE_SIZE_DISK(SampleFormat) ((SampleFormat == int24Sample) ? \
3 : SAMPLE_SIZE(SampleFormat) )
typedef char* samplePtr;
const QString GetSampleFormatStr(sampleFormat format);
//
// Allocating/Freeing Samples
//
samplePtr NewSamples(int count, sampleFormat format);
void DeleteSamples(samplePtr p);
//
// Copying, Converting and Clearing Samples
//
void CopySamples(samplePtr src, sampleFormat srcFormat,
samplePtr dst, sampleFormat dstFormat,
unsigned int len, bool highQuality=true,
unsigned int stride=1);
void CopySamplesNoDither(samplePtr src, sampleFormat srcFormat,
samplePtr dst, sampleFormat dstFormat,
unsigned int len,
unsigned int stride=1);
void ClearSamples(samplePtr buffer, sampleFormat format,
int start, int len);
//
// This must be called on startup and everytime new ditherers
// are set in preferences.
//
void InitDitherers();
#endif // SAMPLEFORMAT_H