[WebAudioAPI] connecting AudioNodes from different AudioContexts

Hi,


What should happen in the following case:
var c1 = new AudioContext();
var c2 = new AudioContext();
var b = c1.createBufferSource()
b.connect(c2.destination);

Per draft that is supported, but there is the following
"This interface [AudioContext] represents a set of AudioNode objects and their connections"
so I'm not sure what should happen.


-Olli

Received on Tuesday, 15 May 2012 20:08:52 UTC