-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathrdaudiosettings.h
46 lines (41 loc) · 1.4 KB
/
rdaudiosettings.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
// rdaudiosettings.h
//
// A container class for audio settings.
//
// (C) Copyright 2002-2019 Fred Gleason <[email protected]>
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU Library General Public License
// version 2 as published by the Free Software Foundation.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public
// License along with this program; if not, write to the Free Software
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
//
#ifndef RDAUDIOSETTINGS_H
#define RDAUDIOSETTINGS_H
class RDAudioSettings
{
public:
enum Format {Pcm16=0,Layer1=1,Layer2=2,Layer3=3,OggVorbis=4};
RDAudioSettings();
RDAudioSettings::Format format() const;
void setFormat(RDAudioSettings::Format format);
unsigned channels() const;
void setChannels(unsigned channels);
unsigned sampleRate() const;
void setSampleRate(unsigned rate);
unsigned bitRate() const;
void setBitRate(unsigned rate);
private:
RDAudioSettings::Format set_format;
unsigned set_channels;
unsigned set_sample_rate;
unsigned set_bit_rate;
};
#endif // RDAUDIOSETTINGS_H