blob: 7cb43713d3aa4dfa7910460500267f664c2b03f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
class MockRTCRtpTransformer {
constructor(transformer) {
this.context = transformer;
this.start();
}
start()
{
this.reader = this.context.readable.getReader();
this.writer = this.context.writable.getWriter();
this.process();
this.context.options.port.postMessage("started " + this.context.options.mediaType + " " + this.context.options.side);
}
process()
{
this.reader.read().then(chunk => {
if (chunk.done)
return;
this.writer.write(chunk.value);
this.process();
});
}
};
onrtctransform = (event) => {
new MockRTCRtpTransformer(event.transformer);
};
self.postMessage("registered");
|