modified lib-jitsi-meet dev repo
Nevar pievienot vairāk kā 25 tēmas
Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
1234567891011121314 |
- /**
- * Adapter that creates AudioContext objects depending on the browser.
- *
- * @returns {AudioContext} - Return a new AudioContext or undefined if the browser does not support it.
- */
- export function createAudioContext(options) {
- const AudioContextImpl = window.AudioContext || window.webkitAudioContext;
-
- if (!AudioContextImpl) {
- return undefined;
- }
-
- return new AudioContextImpl(options);
- }
|