mirror of
https://github.com/jech/galene.git
synced 2024-11-24 17:45:58 +01:00
Split out startup from Filter prototype.
This commit is contained in:
parent
82a94f9500
commit
b54119d508
1 changed files with 4 additions and 1 deletions
|
@ -1071,7 +1071,9 @@ function Filter(stream, definition) {
|
|||
this.userdata = {}
|
||||
/** @type {MediaStream} */
|
||||
this.captureStream = this.canvas.captureStream(0);
|
||||
}
|
||||
|
||||
Filter.prototype.start = function() {
|
||||
/** @ts-ignore */
|
||||
if(!this.captureStream.getTracks()[0].requestFrame) {
|
||||
console.warn('captureFrame not supported, using fixed framerate');
|
||||
|
@ -1087,7 +1089,7 @@ function Filter(stream, definition) {
|
|||
if(t.kind != 'video')
|
||||
this.outputStream.addTrack(t);
|
||||
});
|
||||
this.video.srcObject = stream;
|
||||
this.video.srcObject = this.inputStream;
|
||||
this.video.muted = true;
|
||||
this.video.play();
|
||||
if(this.definition.init)
|
||||
|
@ -1169,6 +1171,7 @@ function setFilter(c) {
|
|||
return;
|
||||
|
||||
let filter = new Filter(c.stream, c.userdata.filterDefinition);
|
||||
filter.start();
|
||||
c.setStream(filter.outputStream);
|
||||
c.userdata.filter = filter;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue