blob: dae53899f47e52ac274e1d15b7ee2c59b34fc9ac (
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
|
/*
audio/pcm.cc
This file is part of the Osirion project and is distributed under
the terms of the GNU General Public License version 2
*/
#include <stdlib.h>
#include <string.h>
#include <cassert>
#include "audio/pcm.h"
namespace audio
{
PCM::PCM(unsigned int samplerate, unsigned int bitspersample, unsigned int channels, size_t size)
{
pcm_size = size;
pcm_buff_size = size;
pcm_bitspersample = bitspersample;
pcm_samplerate = samplerate;
pcm_channels = channels;
pcm_data = (unsigned char *) malloc(pcm_buff_size);
clear();
}
PCM::~PCM()
{
free(pcm_data);
}
void PCM::clear()
{
memset(pcm_data, 0, pcm_buff_size);
}
void PCM::set_size(size_t size) {
assert(size <= pcm_buff_size);
pcm_size = size;
}
void PCM::grow(size_t size) {
assert (size >= pcm_buff_size);
// store a pointer to the previous buffer
unsigned char *old_data = pcm_data;
// allocate a new, larger buffer
pcm_buff_size = size;
pcm_data = (unsigned char *) malloc(pcm_buff_size);
// copy the content
memcpy(pcm_data, old_data, pcm_size);
free(old_data);
}
} // namespace audio
|