blob: dacb23c35227c198548ac3236df113fe27fb5ed3 (
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
|
/*
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 "audio/pcm.h"
#include "audio/wav.h"
namespace audio
{
PCM::PCM(unsigned int samplerate, unsigned int bitspersample, unsigned int channels, size_t size)
{
pcm_bitspersample = bitspersample;
pcm_samplerate = samplerate;
pcm_size = size;
pcm_channels = channels;
pcm_data = (unsigned char *) malloc(pcm_size);
clear();
}
PCM::~PCM()
{
free(pcm_data);
}
void PCM::clear()
{
memset(pcm_data, 0, pcm_size);
}
}
|