Implement support for the playback stop message.
This allows audio processing to be more robust in Firefox.
This commit is contained in:
parent
3633675e4b
commit
9468cf2a9b
17
playback.js
17
playback.js
@ -158,7 +158,22 @@ SpicePlaybackConn.prototype.process_channel_message = function(msg)
|
||||
|
||||
if (msg.type == SPICE_MSG_PLAYBACK_STOP)
|
||||
{
|
||||
return true;
|
||||
PLAYBACK_DEBUG > 0 && console.log("PlaybackStop");
|
||||
if (this.source_buffer)
|
||||
{
|
||||
document.getElementById(this.parent.screen_id).removeChild(this.audio);
|
||||
window.URL.revokeObjectURL(this.audio.src);
|
||||
|
||||
delete this.source_buffer;
|
||||
delete this.media_source;
|
||||
delete this.audio;
|
||||
|
||||
this.append_okay = false;
|
||||
this.queue = new Array();
|
||||
this.start_time = 0;
|
||||
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
if (msg.type == SPICE_MSG_PLAYBACK_VOLUME)
|
||||
|
Loading…
x
Reference in New Issue
Block a user