summaryrefslogtreecommitdiff
path: root/Libraries/LibAudio/ABuffer.h
blob: 364c84d40af13615e65d8d17a0b122c3b7d3bade (plain)
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
66
67
68
69
70
71
72
73
#pragma once

#include <AK/RefCounted.h>
#include <AK/ByteBuffer.h>
#include <AK/Types.h>
#include <AK/Vector.h>

// A single sample in an audio buffer.
// Values are floating point, and should range from -1.0 to +1.0
struct ASample {
    ASample()
        : left(0)
        , right(0)
    {}

    // For mono
    ASample(float left)
        : left(left)
        , right(left)
    {}

    // For stereo
    ASample(float left, float right)
        : left(left)
        , right(right)
    {}

    void clip()
    {
        if (left > 1)
            left = 1;
        else if (left < -1)
            left = -1;

        if (right > 1)
            right = 1;
        else if (right < -1)
            right = -1;
    }

    ASample& operator+=(const ASample& other)
    {
        left += other.left;
        right += other.right;
        return *this;
    }

    float left;
    float right;
};

// A buffer of audio samples, normalized to 44100hz.
class ABuffer : public RefCounted<ABuffer> {
public:
    static RefPtr<ABuffer> from_pcm_data(ByteBuffer& data, int num_channels, int bits_per_sample, int source_rate);
    static NonnullRefPtr<ABuffer> create_with_samples(Vector<ASample>&& samples)
    {
        return adopt(*new ABuffer(move(samples)));
    }

    const Vector<ASample>& samples() const { return m_samples; }
    Vector<ASample>& samples() { return m_samples; }
    const void* data() const { return m_samples.data(); }
    int size_in_bytes() const { return m_samples.size() * sizeof(ASample); }

private:
    ABuffer(Vector<ASample>&& samples)
        : m_samples(move(samples))
    {
    }

    Vector<ASample> m_samples;
};