We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f3c8f1a commit ce99977Copy full SHA for ce99977
public/js/VirtualBackground.js
@@ -92,9 +92,6 @@ class VirtualBackground {
92
}
93
94
async processStreamWithSegmentation(videoTrack, maskHandler) {
95
- // Stop any existing processor before starting a new one
96
- await this.stopCurrentProcessor();
97
-
98
// Initialize segmentation if not already done
99
await this.initializeSegmentation();
100
@@ -176,8 +173,9 @@ class VirtualBackground {
176
173
cleanPendingFrames() {
177
174
// Close all pending frames to release resources
178
175
while (this.pendingFrames.length) {
179
- const { videoFrame } = this.pendingFrames.pop();
+ const { videoFrame, imageBitmap } = this.pendingFrames.pop();
180
videoFrame?.close();
+ imageBitmap?.close();
181
182
183
0 commit comments