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
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
|
unit UAudioInput_Portaudio;
interface
{$IFDEF FPC}
{$MODE Delphi}
{$ENDIF}
{$I switches.inc}
uses Classes,
SysUtils,
portaudio,
{$IFDEF UsePortmixer}
portmixer,
{$ENDIF}
ULog,
UMusic;
implementation
uses
{$IFDEF LAZARUS}
lclintf,
{$ENDIF}
URecord,
UIni,
UMain,
UCommon,
UThemes;
{
type
TPaHostApiIndex = PaHostApiIndex;
TPaDeviceIndex = PaDeviceIndex;
PPaStream = ^PaStreamPtr;
PPaStreamCallbackTimeInfo = ^PaStreamCallbackTimeInfo;
TPaStreamCallbackFlags = PaStreamCallbackFlags;
TPaHostApiTypeId = PaHostApiTypeId;
PPaHostApiInfo = ^PaHostApiInfo;
PPaDeviceInfo = ^PaDeviceInfo;
TPaError = PaError;
TPaStreamParameters = PaStreamParameters;
}
type
TAudioInput_Portaudio = class( TInterfacedObject, IAudioInput )
private
function GetPreferredApiIndex(): TPaHostApiIndex;
public
function GetName: String;
procedure InitializeRecord;
procedure CaptureStart;
procedure CaptureStop;
procedure CaptureCard(Card: byte; CaptureSoundLeft, CaptureSoundRight: TSound);
procedure StopCard(Card: byte);
end;
TPortaudioSoundCard = class(TGenericSoundCard)
RecordStream: PPaStream;
DeviceIndex: TPaDeviceIndex;
end;
function MicrophoneCallback(input: Pointer; output: Pointer; frameCount: Longword;
timeInfo: PPaStreamCallbackTimeInfo; statusFlags: TPaStreamCallbackFlags;
inputDevice: Pointer): Integer; cdecl; forward;
var
singleton_AudioInputPortaudio : IAudioInput;
const
sampleRate: Double = 44100.;
{* the default API used by Portaudio is the least common denominator
* and might lack efficiency. ApiPreferenceOrder defines the order of
* preferred APIs to use. The first API-type in the list is tried first. If it's
* not available the next is tried, ...
* If none of the preferred APIs was found the default API is used.
* Pascal doesn't permit zero-length static arrays, so you can use paDefaultApi
* as an array's only member if you do not have any preferences.
* paDefaultApi also terminates a preferences list but this is optional.
*}
const
paDefaultApi = -1;
var
ApiPreferenceOrder:
{$IF Defined(WIN32)}
// Note1: Portmixer has no mixer support for paASIO and paWASAPI at the moment
// Note2: Windows Default-API is MME
//array[0..0] of TPaHostApiTypeId = ( paDirectSound, paMME );
array[0..0] of TPaHostApiTypeId = ( paDirectSound );
{$ELSEIF Defined(LINUX)}
// Note1: Portmixer has no mixer support for paJACK at the moment
// Note2: Not tested, but ALSA might be better than OSS.
array[0..1] of TPaHostApiTypeId = ( paALSA, paOSS );
{$ELSEIF Defined(DARWIN)}
// Note: Not tested.
//array[0..0] of TPaHostApiTypeId = ( paCoreAudio );
array[0..0] of TPaHostApiTypeId = ( paDefaultApi );
{$ELSE}
array[0..0] of TPaHostApiTypeId = ( paDefaultApi );
{$IFEND}
function TAudioInput_Portaudio.GetName: String;
begin
result := 'Portaudio';
end;
function TAudioInput_Portaudio.GetPreferredApiIndex(): TPaHostApiIndex;
var
i: integer;
begin
result := -1;
// select preferred sound-API
for i:= 0 to High(ApiPreferenceOrder) do
begin
if(ApiPreferenceOrder[i] <> paDefaultApi) then begin
// check if API is available
result := Pa_HostApiTypeIdToHostApiIndex(ApiPreferenceOrder[i]);
if(result >= 0) then
break;
end;
end;
// None of the preferred APIs is available -> use default
if(result < 0) then begin
result := Pa_GetDefaultHostApi();
end;
end;
// TODO: should be a function with boolean return type
procedure TAudioInput_Portaudio.InitializeRecord;
var
i: integer;
apiIndex: TPaHostApiIndex;
apiInfo: PPaHostApiInfo;
deviceName: string;
deviceIndex: TPaDeviceIndex;
deviceInfo: PPaDeviceInfo;
inputCnt: integer;
inputName: string;
SC: integer; // soundcard
SCI: integer; // soundcard input
err: TPaError;
errMsg: string;
paSoundCard: TPortaudioSoundCard;
inputParams: TPaStreamParameters;
stream: PPaStream;
{$IFDEF UsePortmixer}
mixer: PPxMixer;
{$ENDIF}
begin
// TODO: call Pa_Terminate() on termination
err := Pa_Initialize();
if(err <> paNoError) then begin
Log.CriticalError('Portaudio.InitializeRecord: ' + Pa_GetErrorText(err));
//Log.LogError('Portaudio.InitializeRecord: ' + Pa_GetErrorText(err));
// result := false;
Exit;
end;
apiIndex := GetPreferredApiIndex();
apiInfo := Pa_GetHostApiInfo(apiIndex);
SC := 0;
// init array-size to max. input-devices count
SetLength(Recording.SoundCard, apiInfo^.deviceCount); // fix deviceCountL
for i:= 0 to High(Recording.SoundCard) do
begin
// convert API-specific device-index to global index
deviceIndex := Pa_HostApiDeviceIndexToDeviceIndex(apiIndex, i);
deviceInfo := Pa_GetDeviceInfo(deviceIndex);
// current device is no input device -> skip
if(deviceInfo^.maxInputChannels <= 0) then
continue;
// TODO: free object on termination
paSoundCard := TPortaudioSoundCard.Create();
Recording.SoundCard[SC] := paSoundCard;
// retrieve device-name
deviceName := deviceInfo^.name;
paSoundCard.Description := deviceName;
paSoundCard.DeviceIndex := deviceIndex;
// setup desired input parameters
with inputParams do begin
device := deviceIndex;
channelCount := 2;
sampleFormat := paInt16;
suggestedLatency := deviceInfo^.defaultLowInputLatency;
hostApiSpecificStreamInfo := nil;
end;
// check if device supports our input-format
err := Pa_IsFormatSupported(@inputParams, nil, sampleRate);
if(err <> 0) then begin
// format not supported -> skip
errMsg := Pa_GetErrorText(err);
Log.LogError('Portaudio.InitializeRecord, device: "'+ deviceName +'" '
+ '('+ errMsg +')');
paSoundCard.Free();
continue;
end;
// TODO: retry with mono if stereo is not supported
// TODO: retry with input-latency set to 20ms (defaultLowInputLatency might
// not be set correctly in OSS)
err := Pa_OpenStream(stream, @inputParams, nil, sampleRate,
paFramesPerBufferUnspecified, paNoFlag, @MicrophoneCallback, nil);
if(err <> paNoError) then begin
// unable to open device -> skip
errMsg := Pa_GetErrorText(err);
Log.LogError('Portaudio.InitializeRecord, device: "'+ deviceName +'" '
+ '('+ errMsg +')');
paSoundCard.Free();
continue;
end;
{$IFDEF UsePortmixer}
// use default mixer
mixer := Px_OpenMixer(stream, 0);
// get input count
inputCnt := Px_GetNumInputSources(mixer);
SetLength(paSoundCard.Input, inputCnt);
// get input names
for SCI := 0 to inputCnt-1 do
begin
inputName := Px_GetInputSourceName(mixer, SCI);
paSoundCard.Input[SCI].Name := inputName;
end;
Px_CloseMixer(mixer);
{$ELSE} // !UsePortmixer
//Pa_StartStream(stream);
// TODO: check if callback was called (this problem may occur on some devices)
//Pa_StopStream(stream);
Pa_CloseStream(stream);
// create a standard input source
SetLength(paSoundCard.Input, 1);
paSoundCard.Input[0].Name := 'Standard';
{$ENDIF}
// use default input source
paSoundCard.InputSelected := 0;
Inc(SC);
end;
// adjust size to actual input-device count
SetLength(Recording.SoundCard, SC);
Log.LogStatus('#Soundcards: ' + inttostr(SC), 'Portaudio');
{
SoundCard[SC].InputSelected := Mic[Device];
}
end;
// TODO: code is used by all IAudioInput implementors
// -> move to a common superclass (TAudioInput_Generic?)
procedure TAudioInput_Portaudio.CaptureStart;
var
S: integer;
SC: integer;
PlayerLeft, PlayerRight: integer;
CaptureSoundLeft, CaptureSoundRight: TSound;
begin
for S := 0 to High(Recording.Sound) do
Recording.Sound[S].BufferLong[0].Clear;
for SC := 0 to High(Ini.CardList) do begin
PlayerLeft := Ini.CardList[SC].ChannelL-1;
PlayerRight := Ini.CardList[SC].ChannelR-1;
if PlayerLeft >= PlayersPlay then PlayerLeft := -1;
if PlayerRight >= PlayersPlay then PlayerRight := -1;
if (PlayerLeft > -1) or (PlayerRight > -1) then begin
if (PlayerLeft > -1) then
CaptureSoundLeft := Recording.Sound[PlayerLeft]
else
CaptureSoundLeft := nil;
if (PlayerRight > -1) then
CaptureSoundRight := Recording.Sound[PlayerRight]
else
CaptureSoundRight := nil;
CaptureCard(SC, CaptureSoundLeft, CaptureSoundRight);
end;
end;
end;
// TODO: code is used by all IAudioInput implementors
// -> move to a common superclass (TAudioInput_Generic?)
procedure TAudioInput_Portaudio.CaptureStop;
var
SC: integer;
PlayerLeft: integer;
PlayerRight: integer;
begin
for SC := 0 to High(Ini.CardList) do begin
PlayerLeft := Ini.CardList[SC].ChannelL-1;
PlayerRight := Ini.CardList[SC].ChannelR-1;
if PlayerLeft >= PlayersPlay then PlayerLeft := -1;
if PlayerRight >= PlayersPlay then PlayerRight := -1;
if (PlayerLeft > -1) or (PlayerRight > -1) then
StopCard(SC);
end;
end;
{*
* Portaudio input capture callback.
*}
function MicrophoneCallback(input: Pointer; output: Pointer; frameCount: Longword;
timeInfo: PPaStreamCallbackTimeInfo; statusFlags: TPaStreamCallbackFlags;
inputDevice: Pointer): Integer; cdecl;
begin
Recording.HandleMicrophoneData(input, frameCount*4, inputDevice);
result := paContinue;
end;
{*
* Start input-capturing on Soundcard specified by Card.
* Params:
* Card - soundcard index in Recording.SoundCard array
* CaptureSoundLeft - sound(-buffer) used for left channel capture data
* CaptureSoundRight - sound(-buffer) used for right channel capture data
*}
procedure TAudioInput_Portaudio.CaptureCard(Card: byte; CaptureSoundLeft, CaptureSoundRight: TSound);
var
Error: TPaError;
ErrorMsg: string;
inputParams: TPaStreamParameters;
deviceInfo: PPaDeviceInfo;
stream: PPaStream;
paSoundCard: TPortaudioSoundCard;
begin
paSoundCard := TPortaudioSoundCard(Recording.SoundCard[Card]);
paSoundCard.CaptureSoundLeft := CaptureSoundLeft;
paSoundCard.CaptureSoundRight := CaptureSoundRight;
// get input latency info
deviceInfo := Pa_GetDeviceInfo(paSoundCard.DeviceIndex);
// set input stream parameters
with inputParams do begin
device := paSoundCard.DeviceIndex;
channelCount := 2;
sampleFormat := paInt16;
suggestedLatency := deviceInfo^.defaultLowInputLatency;
hostApiSpecificStreamInfo := nil;
end;
Log.LogStatus(inttostr(paSoundCard.DeviceIndex), 'Portaudio');
Log.LogStatus(floattostr(deviceInfo^.defaultLowInputLatency), 'Portaudio');
// open input stream
Error := Pa_OpenStream(stream, @inputParams, nil, sampleRate,
paFramesPerBufferUnspecified, paNoFlag,
@MicrophoneCallback, Pointer(paSoundCard));
if(Error <> paNoError) then begin
ErrorMsg := Pa_GetErrorText(Error);
Log.CriticalError('TAudio_Portaudio.CaptureCard('+ IntToStr(Card) +'): Error opening stream: ' + ErrorMsg);
//Halt;
end;
paSoundCard.RecordStream := stream;
// start capture
Error := Pa_StartStream(stream);
if(Error <> paNoError) then begin
Pa_CloseStream(stream);
ErrorMsg := Pa_GetErrorText(Error);
Log.CriticalError('TAudio_Portaudio.CaptureCard('+ IntToStr(Card) +'): Error starting stream: ' + ErrorMsg);
//Halt;
end;
end;
{*
* Stop input-capturing on Soundcard specified by Card.
* Params:
* Card - soundcard index in Recording.SoundCard array
*}
procedure TAudioInput_Portaudio.StopCard(Card: byte);
var
stream: PPaStream;
paSoundCard: TPortaudioSoundCard;
begin
paSoundCard := TPortaudioSoundCard(Recording.SoundCard[Card]);
stream := paSoundCard.RecordStream;
if(stream <> nil) then begin
Pa_StopStream(stream);
Pa_CloseStream(stream);
end;
end;
initialization
singleton_AudioInputPortaudio := TAudioInput_Portaudio.create();
AudioManager.add( singleton_AudioInputPortaudio );
finalization
AudioManager.Remove( singleton_AudioInputPortaudio );
end.
|