refactor audio startup so it will autostart on firefox, if allowed
This commit is contained in:
parent
6aa25760c5
commit
9e41d49d46
@ -10,9 +10,16 @@ function AudioEngine(maxBufferLength, audioReporter) {
|
|||||||
if (!ctx) {
|
if (!ctx) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
this.audioContext = new ctx();
|
|
||||||
this.allowed = this.audioContext.state === 'running';
|
this.onStartCallbacks = [];
|
||||||
|
|
||||||
this.started = false;
|
this.started = false;
|
||||||
|
this.audioContext = new ctx();
|
||||||
|
var me = this;
|
||||||
|
this.audioContext.onstatechange = function() {
|
||||||
|
if (me.audioContext.state !== 'running') return;
|
||||||
|
me._start();
|
||||||
|
}
|
||||||
|
|
||||||
this.audioCodec = new ImaAdpcmCodec();
|
this.audioCodec = new ImaAdpcmCodec();
|
||||||
this.compression = 'none';
|
this.compression = 'none';
|
||||||
@ -24,18 +31,25 @@ function AudioEngine(maxBufferLength, audioReporter) {
|
|||||||
this.maxBufferSize = maxBufferLength * this.getSampleRate();
|
this.maxBufferSize = maxBufferLength * this.getSampleRate();
|
||||||
}
|
}
|
||||||
|
|
||||||
AudioEngine.prototype.start = function(callback) {
|
AudioEngine.prototype.resume = function(){
|
||||||
|
this.audioContext.resume();
|
||||||
|
}
|
||||||
|
|
||||||
|
AudioEngine.prototype._start = function() {
|
||||||
var me = this;
|
var me = this;
|
||||||
if (me.resamplingFactor === 0) return; //if failed to find a valid resampling factor...
|
|
||||||
if (me.started) {
|
// if failed to find a valid resampling factor...
|
||||||
if (callback) callback(false);
|
if (me.resamplingFactor === 0) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
me.audioContext.resume().then(function(){
|
// been started before?
|
||||||
me.allowed = me.audioContext.state === 'running';
|
if (me.started) {
|
||||||
if (!me.allowed) {
|
return;
|
||||||
if (callback) callback(false);
|
}
|
||||||
|
|
||||||
|
// are we allowed to play audio?
|
||||||
|
if (!me.isAllowed()) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
me.started = true;
|
me.started = true;
|
||||||
@ -66,7 +80,7 @@ AudioEngine.prototype.start = function(callback) {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
me.audioNode.port.start();
|
me.audioNode.port.start();
|
||||||
if (callback) callback(true, 'AudioWorklet');
|
me.workletType = 'AudioWorklet';
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
me.audioBuffers = [];
|
me.audioBuffers = [];
|
||||||
@ -121,15 +135,26 @@ AudioEngine.prototype.start = function(callback) {
|
|||||||
me.audioNode = me.audioContext[method](bufferSize, 0, 1);
|
me.audioNode = me.audioContext[method](bufferSize, 0, 1);
|
||||||
me.audioNode.onaudioprocess = audio_onprocess;
|
me.audioNode.onaudioprocess = audio_onprocess;
|
||||||
me.audioNode.connect(me.gainNode);
|
me.audioNode.connect(me.gainNode);
|
||||||
if (callback) callback(true, 'ScriptProcessorNode');
|
me.workletType = 'ScriptProcessorNode';
|
||||||
}
|
}
|
||||||
|
|
||||||
setInterval(me.reportStats.bind(me), 1000);
|
setInterval(me.reportStats.bind(me), 1000);
|
||||||
});
|
|
||||||
|
var callbacks = this.onStartCallbacks;
|
||||||
|
this.onStartCallbacks = false;
|
||||||
|
callbacks.forEach(function(c) { c(me.workletType); });
|
||||||
|
};
|
||||||
|
|
||||||
|
AudioEngine.prototype.onStart = function(callback) {
|
||||||
|
if (this.onStartCallbacks) {
|
||||||
|
this.onStartCallbacks.push(callback);
|
||||||
|
} else {
|
||||||
|
callback();
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
AudioEngine.prototype.isAllowed = function() {
|
AudioEngine.prototype.isAllowed = function() {
|
||||||
return this.allowed;
|
return this.audioContext.state === 'running';
|
||||||
};
|
};
|
||||||
|
|
||||||
AudioEngine.prototype.reportStats = function() {
|
AudioEngine.prototype.reportStats = function() {
|
||||||
|
@ -1099,9 +1099,11 @@ var mute = false;
|
|||||||
// Optimalise these if audio lags or is choppy:
|
// Optimalise these if audio lags or is choppy:
|
||||||
var audio_buffer_maximal_length_sec = 1; //actual number of samples are calculated from sample rate
|
var audio_buffer_maximal_length_sec = 1; //actual number of samples are calculated from sample rate
|
||||||
|
|
||||||
function onAudioStart(success, apiType){
|
function onAudioStart(apiType){
|
||||||
divlog('Web Audio API succesfully initialized, using ' + apiType + ' API, sample rate: ' + audioEngine.getSampleRate() + " Hz");
|
divlog('Web Audio API succesfully initialized, using ' + apiType + ' API, sample rate: ' + audioEngine.getSampleRate() + " Hz");
|
||||||
|
|
||||||
|
hideOverlay();
|
||||||
|
|
||||||
// canvas_container is set after waterfall_init() has been called. we cannot initialize before.
|
// canvas_container is set after waterfall_init() has been called. we cannot initialize before.
|
||||||
//if (canvas_container) synchronize_demodulator_init();
|
//if (canvas_container) synchronize_demodulator_init();
|
||||||
|
|
||||||
@ -1320,11 +1322,12 @@ var audioEngine;
|
|||||||
function openwebrx_init() {
|
function openwebrx_init() {
|
||||||
audioEngine = new AudioEngine(audio_buffer_maximal_length_sec, audioReporter);
|
audioEngine = new AudioEngine(audio_buffer_maximal_length_sec, audioReporter);
|
||||||
$overlay = $('#openwebrx-autoplay-overlay');
|
$overlay = $('#openwebrx-autoplay-overlay');
|
||||||
$overlay.on('click', playButtonClick);
|
$overlay.on('click', function(){
|
||||||
|
audioEngine.resume();
|
||||||
|
});
|
||||||
|
audioEngine.onStart(onAudioStart);
|
||||||
if (!audioEngine.isAllowed()) {
|
if (!audioEngine.isAllowed()) {
|
||||||
$overlay.show();
|
$overlay.show();
|
||||||
} else {
|
|
||||||
audioEngine.start(onAudioStart);
|
|
||||||
}
|
}
|
||||||
fft_codec = new ImaAdpcmCodec();
|
fft_codec = new ImaAdpcmCodec();
|
||||||
initProgressBars();
|
initProgressBars();
|
||||||
@ -1370,9 +1373,7 @@ function update_dmr_timeslot_filtering() {
|
|||||||
$('#openwebrx-panel-receiver').demodulatorPanel().getDemodulator().setDmrFilter(filter);
|
$('#openwebrx-panel-receiver').demodulatorPanel().getDemodulator().setDmrFilter(filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
function playButtonClick() {
|
function hideOverlay() {
|
||||||
//On iOS, we can only start audio from a click or touch event.
|
|
||||||
audioEngine.start(onAudioStart);
|
|
||||||
var $overlay = $('#openwebrx-autoplay-overlay');
|
var $overlay = $('#openwebrx-autoplay-overlay');
|
||||||
$overlay.css('opacity', 0);
|
$overlay.css('opacity', 0);
|
||||||
$overlay.on('transitionend', function() {
|
$overlay.on('transitionend', function() {
|
||||||
|
Loading…
Reference in New Issue
Block a user