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
|
function AudioFeedbackLatencyTest(roundtrip, trigger, nrtrials, freq, freqout, fullduplex, runmode)
% AudioFeedbackLatencyTest([roundtrip=0][, trigger=0.1] [, nrtrials=10] [, freq=44100][, freqout=44100][, fullduplex=0][, runmode=1])
%
% Tries to test sound onset accuracy of PsychPortAudio without need for
% external measurement equipment: Sound signals are played back via
% PsychPortAudio at well defined points in time, using low-latency mode. At
% the same time, sound is captured via PsychPortAudio's capture facilities.
% The idea is that the microphone or line-in connector should pick up and
% capture the sound signals emitted through line-out (via a line-out ->
% line-in feedback cable) or emitted through the speakers. We measure and
% compare timing of emitted vs. captured sound spikes.
%
% Results on MacbookPro suggest that the method works, but with a not 100%
% accuracy, so its still better to use external measurement equipment to
% test!!!
%
% EARLY BETA CODE: USE ONLY WITH GREAT CAUTION AND SUSPICION!
%
% Optional parameters:
%
% 'roundtrip' If set to 0 then this measures scheduling accuracy of sound
% onset, as measured by sound capture -- should be no worse than ~ 1 msec
% on a well working system, and input detection latency, ie., how long does
% it take from physical sound onset to detection of sound onset by the
% script. This would be a useful measure of how fast a "Voicekey" could
% respond to voice onset in a best case scenario.
%
% If set to 1 then this measures time from issuing the PsychPortAudio('Start')
% command to start playback until actual start of playback (by driver self-
% assessment, and by measuring via audio capture), and also as "Roundtrip"
% how long it would take to detect the onset by the script.
%
% 'trigger' = Trigger level for detection of sound onset in captured sound.
%
% 'ntrials' = Number of measurement trials to perform.
%
% 'freq' = Samplerate of capture device.
%
% 'freqout' = Samplerate of playback device.
%
% 'fullduplex' = Use soundcard in full-duplex mode.
%
% 'runmode' = Runmode for PsychPortAudio to choose.
%
% Obviously this test function can only be used in a very silent room!
%
% History:
% 06/30/2007 Written (MK)
% 06/17/2020 Rewritten (MK)
% Running on PTB-3? Abort otherwise.
AssertOpenGL;
deviceid = [];
if nargin < 1 || isempty(roundtrip)
roundtrip = 0;
end
if nargin < 2 || isempty(trigger)
trigger = 0.1;
end
if nargin < 3 || isempty(nrtrials)
nrtrials = 10;
end
if nargin < 4 || isempty(freq)
freq = 44100;
end
if nargin < 5 || isempty(freqout)
freqout = 44100;
end
if nargin < 6 || isempty(fullduplex)
fullduplex = 0;
end
if nargin < 7 || isempty(runmode)
runmode = 1;
end
fprintf('Using runmode %i.\n', runmode);
% Wait for release of all keys on keyboard:
KbReleaseWait;
% Perform basic initialization of the sound driver and request low-latency
% preinit:
InitializePsychSound(1);
PsychPortAudio('Verbosity', 6);
if fullduplex
% Open the default audio device deviceid, with mode 3 (== Full-Duplex),
% and a required latencyclass of 3 == agressive low-latency mode, as well as
% a frequency of freq Hz and 2 sound channels for stereo capture.
% This returns a handle to the audio device:
pahandlerec = PsychPortAudio('Open', deviceid, 3, 3, freq, 2, [], 0.005);
pahandleout = pahandlerec;
else
% Open the default audio device deviceid, with mode 2 (== Only audio capture),
% and a required latencyclass of 3 == agressive low-latency mode, as well as
% a frequency of freq Hz and 2 sound channels for stereo capture.
% This returns a handle to the audio device:
pahandlerec = PsychPortAudio('Open', deviceid, 2, 3, freq, 2);
% Open 2nd audio device for playback of our test signal with same settings
% otherwise:
pahandleout = PsychPortAudio('Open', deviceid, 1, 3, freqout, 2);
end
PsychPortAudio('RunMode', pahandlerec, runmode);
PsychPortAudio('RunMode', pahandleout, runmode);
% Build 1khZ, 90% peak amplitude beep tone of 0.1 secs duration, suitable
% for playback at 'freqout' Hz:
testsound = 0.9 * MakeBeep(1000, 0.1, freqout);
% Initialize sound output buffer with it:
PsychPortAudio('FillBuffer', pahandleout, [testsound; testsound]);
% Measurement loop, runs nrtrials trials:
for i = 0:nrtrials
% Preallocate an internal audio recording buffer with a capacity of 10 seconds:
% We do this in the trial-loop instead of just once. This way, the
% buffer gets reset to initial conditions.
PsychPortAudio('GetAudioData', pahandlerec, 10);
% Start audio capture immediately and wait for the capture to start.
% Return estimated timestamp of when the first sample hit the
% microphone/sound input jack. We set the number of 'repetitions' to zero,
% i.e. record until recording is manually stopped.
if ~fullduplex
recstart = PsychPortAudio('Start', pahandlerec, 0, 0, 1);
end
% Start scheduled playback of test sound in one second from now, one
% repetition, wait for start, retrieve true estimated onset timestamp t1:
t1 = GetSecs + 1;
if roundtrip
t1 = WaitSecs('UntilTime', t1);
t2 = PsychPortAudio('Start', pahandleout, 1, 0, 1);
else
t1 = PsychPortAudio('Start', pahandleout, 1, t1, 1);
end
failed = 0;
% Audiotrigger code: Fetch audio data and check against threshold:
level = 0;
% Repeat as long as below trigger-threshold:
while level < trigger
% Fetch current audiodata:
[audiodata, offset, ~, recstart]= PsychPortAudio('GetAudioData', pahandlerec);
% Compute maximum signal amplitude in this chunk of data:
if ~isempty(audiodata)
level = max(max(abs(audiodata)));
else
level = 0;
end
% Below trigger-threshold?
if level < trigger
% fprintf('Level %f < Trigger %f\n', level, trigger);
% Wait for a millisecond before next scan:
WaitSecs('YieldSecs', 0.001);
end
end
if i > 0
% Determine roundtrip or input latency:
rtl(i) = GetSecs - t1; %#ok<AGROW>
end
% Ok, last fetched chunk was above threshold!
% Find exact location of first above threshold sample.
idx = find(max(abs(audiodata)) >= trigger, 1);
if i > 0
% Compute "real" latency, taking real starting time of recording and
% offset of the triggersample in the buffer into account:
dt(i) = (recstart + ((offset + idx - 1) / freq)) - t1; %#ok<AGROW>
if dt(i) < -0.1
% Invalid measurement! Abort whole procedure...
fprintf('Trial %i: INVALID MEASUREMENT %f secs detected (Value %i -> %i := %f). Aborting. Please raise the trigger threshold and retry.\n', i, dt(i), offset + idx, idx, audiodata(1,idx));
failed = 1;
break;
end
end
% Initialize our recordedaudio vector with captured data starting from
% triggersample:
recordedaudio = audiodata(:, idx:end);
% Stop capture after a tiny bit more time:
WaitSecs(0.1);
if ~fullduplex
PsychPortAudio('Stop', pahandlerec);
end
% Stop playback:
outstatus = PsychPortAudio('GetStatus', pahandleout); %#ok<NASGU>
PsychPortAudio('Stop', pahandleout);
% Perform a last fetch operation to get all remaining data from the capture engine:
recordedaudio = [recordedaudio PsychPortAudio('GetAudioData', pahandlerec)]; %#ok<AGROW,NASGU>
recstatus = PsychPortAudio('GetStatus', pahandlerec); %#ok<NASGU>
% Plot it, just for the fun of it:
nrsamples = size(audiodata(:,idx:end), 2);
plot(1:nrsamples, audiodata(1,idx:end), 'r', 1:nrsamples, audiodata(2,idx:end), 'b', 1:nrsamples, repmat(trigger, 1, nrsamples), '-', 1:nrsamples, repmat(-trigger, 1, nrsamples), '-');
drawnow;
% Print the stats:
if i > 0
if roundtrip
fprintf('%i : Estimated roundtrip latency %f ms : Measured output start to sound onset latency %f ms. Sound output delay %f ms.\n', i, 1000 * rtl(i), 1000 * dt(i), 1000 * (t2 - t1));
else
fprintf('%i : Estimated input latency %f ms : Diff real - scheduled %f ms. \n', i, 1000 * rtl(i), 1000 * dt(i));
end
end
% Pause for a second, then next trial...
WaitSecs(1);
end
% Close the audio devices:
PsychPortAudio('Close');
if failed
return;
end
rtl = 1000 * rtl;
dt = 1000 * dt;
if roundtrip
fprintf('Mean roundtrip latency %f ms, stddev %f ms.\n', mean(rtl), std(rtl));
fprintf('Mean startup to sound output delay %f ms, stddev %f ms.\n', mean(dt), std(dt));
else
fprintf('Mean input latency %f ms, stddev %f ms.\n', mean(rtl), std(rtl));
fprintf('Mean scheduling offset %f ms, stddev %f ms.\n', mean(dt), std(dt));
end
% Done.
fprintf('Demo finished, bye!\n');
|