-
Notifications
You must be signed in to change notification settings - Fork 0
/
rdpsnd_libao.c
226 lines (176 loc) · 4.82 KB
/
rdpsnd_libao.c
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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
/* -*- c-basic-offset: 8 -*-
rdesktop: A Remote Desktop Protocol client.
Sound Channel Process Functions - libao-driver
Copyright (C) Matthew Chapman <matthewc.unsw.edu.au> 2003-2008
Copyright (C) GuoJunBo <[email protected]> 2003
Copyright (C) Michael Gernoth <[email protected]> 2005-2008
Copyright (C) 2013 Henrik Andersson
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 3 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, see <http://www.gnu.org/licenses/>.
*/
#include "rdesktop.h"
#include "rdpsnd.h"
#include "rdpsnd_dsp.h"
#include <unistd.h>
#include <fcntl.h>
#include <errno.h>
#include <ao/ao.h>
#include <sys/time.h>
#define WAVEOUTLEN 16
static ao_device *o_device = NULL;
static int default_driver;
static RD_BOOL reopened;
static char *libao_device = NULL;
void libao_play(void);
void
libao_add_fds(int *n, fd_set * rfds, fd_set * wfds, struct timeval *tv)
{
/* We need to be called rather often... */
if (o_device != NULL && !rdpsnd_queue_empty())
FD_SET(0, wfds);
}
void
libao_check_fds(fd_set * rfds, fd_set * wfds)
{
if (o_device == NULL)
return;
if (!rdpsnd_queue_empty())
libao_play();
}
RD_BOOL
libao_open(void)
{
ao_sample_format format;
ao_initialize();
if (libao_device)
{
default_driver = ao_driver_id(libao_device);
}
else
{
default_driver = ao_default_driver_id();
}
memset(&format, 0, sizeof(format));
format.bits = 16;
format.channels = 2;
format.rate = 44100;
format.byte_format = AO_FMT_NATIVE;
o_device = ao_open_live(default_driver, &format, NULL);
if (o_device == NULL)
{
return False;
}
reopened = True;
return True;
}
void
libao_close(void)
{
/* Ack all remaining packets */
while (!rdpsnd_queue_empty())
{
rdpsnd_queue_next(0);
}
if (o_device != NULL)
ao_close(o_device);
o_device = NULL;
ao_shutdown();
}
RD_BOOL
libao_set_format(RD_WAVEFORMATEX * pwfx)
{
ao_sample_format format;
memset(&format, 0, sizeof(format));
format.bits = pwfx->wBitsPerSample;
format.channels = pwfx->nChannels;
format.rate = 44100;
format.byte_format = AO_FMT_NATIVE;
if (o_device != NULL)
ao_close(o_device);
o_device = ao_open_live(default_driver, &format, NULL);
if (o_device == NULL)
{
return False;
}
if (rdpsnd_dsp_resample_set(44100, pwfx->wBitsPerSample, pwfx->nChannels) == False)
{
return False;
}
reopened = True;
return True;
}
void
libao_play(void)
{
struct audio_packet *packet;
STREAM out;
int len;
static long prev_s, prev_us;
unsigned int duration;
struct timeval tv;
int next_tick;
if (reopened)
{
reopened = False;
gettimeofday(&tv, NULL);
prev_s = tv.tv_sec;
prev_us = tv.tv_usec;
}
/* We shouldn't be called if the queue is empty, but still */
if (rdpsnd_queue_empty())
return;
packet = rdpsnd_queue_current_packet();
out = &packet->s;
next_tick = rdpsnd_queue_next_tick();
len = (WAVEOUTLEN > (out->end - out->p)) ? (out->end - out->p) : WAVEOUTLEN;
ao_play(o_device, (char *) out->p, len);
out->p += len;
gettimeofday(&tv, NULL);
duration = ((tv.tv_sec - prev_s) * 1000000 + (tv.tv_usec - prev_us)) / 1000;
if (packet->tick > next_tick)
next_tick += 65536;
if ((out->p == out->end) || duration > next_tick - packet->tick + 500)
{
unsigned int delay_us;
prev_s = tv.tv_sec;
prev_us = tv.tv_usec;
if (abs((next_tick - packet->tick) - duration) > 20)
{
DEBUG(("duration: %d, calc: %d, ", duration, next_tick - packet->tick));
DEBUG(("last: %d, is: %d, should: %d\n", packet->tick,
(packet->tick + duration) % 65536, next_tick % 65536));
}
delay_us = ((out->size / 4) * (1000000 / 44100));
rdpsnd_queue_next(delay_us);
}
}
struct audio_driver *
libao_register(char *options)
{
static struct audio_driver libao_driver;
memset(&libao_driver, 0, sizeof(libao_driver));
libao_driver.name = "libao";
libao_driver.description = "libao output driver, default device: system dependent";
libao_driver.add_fds = libao_add_fds;
libao_driver.check_fds = libao_check_fds;
libao_driver.wave_out_open = libao_open;
libao_driver.wave_out_close = libao_close;
libao_driver.wave_out_format_supported = rdpsnd_dsp_resample_supported;
libao_driver.wave_out_set_format = libao_set_format;
libao_driver.wave_out_volume = rdpsnd_dsp_softvol_set;
libao_driver.need_byteswap_on_be = 1;
libao_driver.need_resampling = 1;
if (options)
{
libao_device = xstrdup(options);
}
return &libao_driver;
}