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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
|
/*
Copyright (C) 1999-2000 Stefan Westerfeld
[email protected]
2001 Matthias Kretz
[email protected]
2003 Allan Sandfeld Jensen
[email protected]
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
Permission is also granted to link this program with the Qt
library, treating Qt like a library that normally accompanies the
operating system kernel, whether or not that is in fact the case.
*/
#ifndef SIMPLESOUNDSERVER_IMPL_H
#define SIMPLESOUNDSERVER_IMPL_H
#include "soundserver.h"
#include "artsflow.h"
#include <list>
#include "arts_export.h"
namespace Arts {
class ARTS_EXPORT SoundServerJob
{
public:
long ID;
virtual ~SoundServerJob();
virtual void detach(const Object& object);
virtual void terminate() = 0;
virtual bool done() = 0;
};
class ARTS_EXPORT PlayWavJob : public SoundServerJob
{
protected:
Synth_PLAY_WAV wav;
Synth_AMAN_PLAY out;
bool terminated;
public:
PlayWavJob(const std::string& filename);
void terminate();
bool done();
};
class ARTS_EXPORT PlayObjectJob : public SoundServerJob
{
protected:
PlayObject plob;
bool terminated;
public:
PlayObjectJob(PlayObject newPlob);
void terminate();
bool done();
};
class ARTS_EXPORT PlayStreamJob : public SoundServerJob
{
protected:
ByteSoundProducer sender;
ByteStreamToAudio convert;
Synth_AMAN_PLAY out;
public:
PlayStreamJob(ByteSoundProducer bsp);
void detach(const Object& object);
void terminate();
bool done();
};
class ARTS_EXPORT RecordStreamJob : public SoundServerJob
{
protected:
ByteSoundReceiver receiver;
AudioToByteStream convert;
Synth_AMAN_RECORD in;
public:
RecordStreamJob(ByteSoundReceiver bsr);
void detach(const Object& object);
void terminate();
bool done();
};
class ARTS_EXPORT SimpleSoundServer_impl : virtual public SimpleSoundServer_skel,
public TimeNotify
{
protected:
Synth_PLAY playSound;
Synth_RECORD recordSound;
Synth_BUS_DOWNLINK soundcardBus;
Synth_BUS_UPLINK recordBus;
std::list<SoundServerJob *> jobs;
StereoEffectStack _outstack;
StereoVolumeControl _outVolume;
long asCount;
long autoSuspendTime;
long bufferMultiplier;
public:
SimpleSoundServer_impl();
~SimpleSoundServer_impl();
void notifyTime();
// streaming audio
float minStreamBufferTime();
float serverBufferTime();
void attach(ByteSoundProducer bsp);
void detach(ByteSoundProducer bsp);
void attachRecorder(ByteSoundReceiver bsr);
void detachRecorder(ByteSoundReceiver bsr);
// simple soundserver interface
long play(const std::string& s);
// kmedia2
PlayObject createPlayObject(const std::string& filename);
StereoEffectStack outstack();
Object createObject(const std::string& name);
};
}
#endif /* SIMPLESOUNDSERVER_IMPL_H */
|