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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
|
unit UAudioInput_Portaudio;
interface
{$IFDEF FPC}
{$MODE Delphi}
{$ENDIF}
{$I ../switches.inc}
uses
Classes,
SysUtils,
UMusic;
implementation
uses
{$IFDEF UsePortmixer}
portmixer,
{$ENDIF}
portaudio,
UAudioCore_Portaudio,
URecord,
UIni,
ULog,
UMain;
type
TAudioInput_Portaudio = class(TAudioInputBase)
public
function GetName: String; override;
function InitializeRecord: boolean; override;
destructor Destroy; override;
end;
TPortaudioInputDevice = class(TAudioInputDevice)
public
RecordStream: PPaStream;
PaDeviceIndex: TPaDeviceIndex;
function Start(): boolean; override;
procedure Stop(); override;
end;
function MicrophoneCallback(input: Pointer; output: Pointer; frameCount: Longword;
timeInfo: PPaStreamCallbackTimeInfo; statusFlags: TPaStreamCallbackFlags;
inputDevice: Pointer): Integer; cdecl; forward;
function MicrophoneTestCallback(input: Pointer; output: Pointer; frameCount: Longword;
timeInfo: PPaStreamCallbackTimeInfo; statusFlags: TPaStreamCallbackFlags;
inputDevice: Pointer): Integer; cdecl; forward;
var
singleton_AudioInputPortaudio : IAudioInput;
{ TPortaudioInputDevice }
function TPortaudioInputDevice.Start(): boolean;
var
Error: TPaError;
ErrorMsg: string;
inputParams: TPaStreamParameters;
deviceInfo: PPaDeviceInfo;
begin
Result := false;
// get input latency info
deviceInfo := Pa_GetDeviceInfo(PaDeviceIndex);
// set input stream parameters
with inputParams do
begin
device := PaDeviceIndex;
channelCount := AudioFormat.Channels;
sampleFormat := paInt16;
suggestedLatency := deviceInfo^.defaultLowInputLatency;
hostApiSpecificStreamInfo := nil;
end;
//Log.LogStatus(deviceInfo^.name, 'Portaudio');
//Log.LogStatus(floattostr(deviceInfo^.defaultLowInputLatency), 'Portaudio');
// open input stream
Error := Pa_OpenStream(RecordStream, @inputParams, nil,
AudioFormat.SampleRate,
paFramesPerBufferUnspecified, paNoFlag,
@MicrophoneCallback, Pointer(Self));
if(Error <> paNoError) then
begin
ErrorMsg := Pa_GetErrorText(Error);
Log.LogError('Error opening stream: ' + ErrorMsg, 'TPortaudioInputDevice.Start');
Exit;
end;
// start capture
Error := Pa_StartStream(RecordStream);
if(Error <> paNoError) then
begin
Pa_CloseStream(RecordStream);
ErrorMsg := Pa_GetErrorText(Error);
Log.LogError('Error starting stream: ' + ErrorMsg, 'TPortaudioInputDevice.Start');
Exit;
end;
Result := true;
end;
procedure TPortaudioInputDevice.Stop();
begin
if assigned(RecordStream) then
begin
// Note: do NOT call Pa_StopStream here!
// It gets stuck on devices with non-working callback as Pa_StopStream
// waits until all buffers have been handled (which never occurs in that
// case).
// Pa_CloseStream internally calls Pa_AbortStream which works as expected.
Pa_CloseStream(RecordStream);
end;
end;
{ TAudioInput_Portaudio }
function TAudioInput_Portaudio.GetName: String;
begin
result := 'Portaudio';
end;
function TAudioInput_Portaudio.InitializeRecord(): boolean;
var
i: integer;
paApiIndex: TPaHostApiIndex;
paApiInfo: PPaHostApiInfo;
deviceName: string;
deviceIndex: TPaDeviceIndex;
deviceInfo: PPaDeviceInfo;
sourceCnt: integer;
sourceIndex: integer;
sourceName: string;
channelCnt: integer;
SC: integer; // soundcard
err: TPaError;
errMsg: string;
paDevice: TPortaudioInputDevice;
inputParams: TPaStreamParameters;
stream: PPaStream;
streamInfo: PPaStreamInfo;
sampleRate: integer;
latency: TPaTime;
{$IFDEF UsePortmixer}
mixer: PPxMixer;
{$ENDIF}
cbPolls: integer;
cbWorks: boolean;
begin
result := false;
// initialize portaudio
err := Pa_Initialize();
if(err <> paNoError) then
begin
Log.LogError(Pa_GetErrorText(err), 'TAudioInput_Portaudio.InitializeRecord');
Exit;
end;
// choose the best available Audio-API
paApiIndex := TAudioCore_Portaudio.GetPreferredApiIndex();
if(paApiIndex = -1) then
begin
Log.LogError('No working Audio-API found', 'TAudioInput_Portaudio.InitializeRecord');
Exit;
end;
paApiInfo := Pa_GetHostApiInfo(paApiIndex);
SC := 0;
// init array-size to max. input-devices count
SetLength(AudioInputProcessor.Device, paApiInfo^.deviceCount);
for i:= 0 to High(AudioInputProcessor.Device) do
begin
// convert API-specific device-index to global index
deviceIndex := Pa_HostApiDeviceIndexToDeviceIndex(paApiIndex, i);
deviceInfo := Pa_GetDeviceInfo(deviceIndex);
channelCnt := deviceInfo^.maxInputChannels;
// current device is no input device -> skip
if (channelCnt <= 0) then
continue;
// portaudio returns a channel-count of 128 for some devices
// (e.g. the "default"-device), so we have to detect those
// fantasy channel counts.
if (channelCnt > 8) then
channelCnt := 2;
paDevice := TPortaudioInputDevice.Create();
AudioInputProcessor.Device[SC] := paDevice;
// retrieve device-name
deviceName := deviceInfo^.name;
paDevice.Description := deviceName;
paDevice.PaDeviceIndex := deviceIndex;
if (deviceInfo^.defaultSampleRate > 0) then
sampleRate := Trunc(deviceInfo^.defaultSampleRate)
else
sampleRate := 44100;
// on vista and xp the defaultLowInputLatency may be set to 0 but it works.
// TODO: correct too low latencies (what is a too low latency, maybe < 10ms?)
latency := deviceInfo^.defaultLowInputLatency;
// setup desired input parameters
with inputParams do
begin
device := deviceIndex;
channelCount := channelCnt;
sampleFormat := paInt16;
suggestedLatency := latency;
hostApiSpecificStreamInfo := nil;
end;
// check if device supports our input-format
// TODO: retry with input-latency set to 20ms (defaultLowInputLatency might
// not be set correctly in OSS)
err := Pa_IsFormatSupported(@inputParams, nil, sampleRate);
if(err <> 0) then
begin
// format not supported -> skip
errMsg := Pa_GetErrorText(err);
Log.LogError('Device error: "'+ deviceName +'" ('+ errMsg +')',
'TAudioInput_Portaudio.InitializeRecord');
paDevice.Free();
continue;
end;
// check if the device really works
err := Pa_OpenStream(stream, @inputParams, nil, sampleRate,
paFramesPerBufferUnspecified, paNoFlag, @MicrophoneTestCallback, nil);
if(err <> paNoError) then
begin
// unable to open device -> skip
errMsg := Pa_GetErrorText(err);
Log.LogError('Device error: "'+ deviceName +'" ('+ errMsg +')',
'TAudioInput_Portaudio.InitializeRecord');
paDevice.Free();
continue;
end;
// check if mic-callback works (might not be called on some devices)
// start the callback
Pa_StartStream(stream);
cbWorks := false;
// check if the callback was called (poll for max. 200ms)
for cbPolls := 1 to 20 do
begin
// if the test-callback was called it should be aborted now
if (Pa_IsStreamActive(stream) = 0) then
begin
cbWorks := true;
break;
end;
// not yet aborted, wait and try (poll) again
Pa_Sleep(10);
end;
// finally abort the stream (Note: Pa_StopStream might hang here)
Pa_AbortStream(stream);
// ignore device if callback did not work
if (not cbWorks) then
begin
Log.LogError('Device "'+paDevice.Description+'" does not respond',
'TAudioInput_Portaudio.InitializeRecord');
Pa_CloseStream(stream);
paDevice.Free();
continue;
end;
// adjust sample-rate (might be changed by portaudio)
streamInfo := Pa_GetStreamInfo(stream);
if (streamInfo <> nil) then
begin
if (sampleRate <> Trunc(streamInfo^.sampleRate)) then
begin
Log.LogStatus('Portaudio changed Samplerate from ' + IntToStr(sampleRate) +
' to ' + FloatToStr(streamInfo^.sampleRate),
'TAudioInput_Portaudio.InitializeRecord');
sampleRate := Trunc(streamInfo^.sampleRate);
end;
end;
// create audio-format info and resize capture-buffer array
paDevice.AudioFormat := TAudioFormatInfo.Create(
channelCnt,
sampleRate,
asfS16
);
SetLength(paDevice.CaptureChannel, paDevice.AudioFormat.Channels);
Log.LogStatus('InputDevice "'+paDevice.Description+'"@' +
IntToStr(paDevice.AudioFormat.Channels)+'x'+
IntToStr(paDevice.AudioFormat.SampleRate)+'Hz ('+
FloatTostr(inputParams.suggestedLatency)+'sec)' ,
'Portaudio.InitializeRecord');
{$IFDEF UsePortmixer}
// use default mixer
mixer := Px_OpenMixer(stream, 0);
// get input count
sourceCnt := Px_GetNumInputSources(mixer);
SetLength(paDevice.Source, sourceCnt);
// get input names
for sourceIndex := 0 to sourceCnt-1 do
begin
sourceName := Px_GetInputSourceName(mixer, sourceIndex);
paDevice.Source[sourceIndex].Name := sourceName;
end;
Px_CloseMixer(mixer);
{$ELSE} // not UsePortmixer
// create a standard input source
SetLength(paDevice.Source, 1);
paDevice.Source[0].Name := 'Standard';
{$ENDIF}
// close test-stream
Pa_CloseStream(stream);
// use default input source
paDevice.SourceSelected := 0;
Inc(SC);
end;
// adjust size to actual input-device count
SetLength(AudioInputProcessor.Device, SC);
Log.LogStatus('#Soundcards: ' + inttostr(SC), 'Portaudio');
result := true;
end;
destructor TAudioInput_Portaudio.Destroy;
var
i: integer;
paSoundCard: TPortaudioInputDevice;
begin
Pa_Terminate();
for i := 0 to High(AudioInputProcessor.Device) do
begin
AudioInputProcessor.Device[i].Free();
end;
AudioInputProcessor.Device := nil;
inherited Destroy;
end;
{*
* Portaudio input capture callback.
*}
function MicrophoneCallback(input: Pointer; output: Pointer; frameCount: Longword;
timeInfo: PPaStreamCallbackTimeInfo; statusFlags: TPaStreamCallbackFlags;
inputDevice: Pointer): Integer; cdecl;
begin
AudioInputProcessor.HandleMicrophoneData(input, frameCount*4, inputDevice);
result := paContinue;
end;
{*
* Portaudio test capture callback.
*}
function MicrophoneTestCallback(input: Pointer; output: Pointer; frameCount: Longword;
timeInfo: PPaStreamCallbackTimeInfo; statusFlags: TPaStreamCallbackFlags;
inputDevice: Pointer): Integer; cdecl;
begin
// this callback is called only once
result := paAbort;
end;
initialization
singleton_AudioInputPortaudio := TAudioInput_Portaudio.create();
AudioManager.add( singleton_AudioInputPortaudio );
finalization
AudioManager.Remove( singleton_AudioInputPortaudio );
end.
|