Re: [web-audio-api] There should be notification when the destination output changed (#27)

> [Original comment](https://www.w3.org/Bugs/Public/show_bug.cgi?id=21345#0) by Wei James on W3C Bugzilla. Tue, 09 Apr 2013 01:03:38 GMT

one proposal:


enum OutputType {
    “speakers”,
    “headset”
};


interface AudioDestinationChangeEvent : Event {
    readonly attribute double float sampleRate;
         readonly attribute unsigned long maxChannelCount
    readonly attribute OutputType outputType;
};

---
Reply to this email directly or view it on GitHub:
https://github.com/WebAudio/web-audio-api/issues/27#issuecomment-24244091

Received on Wednesday, 11 September 2013 14:29:49 UTC