Skip to content

Commit ce99977

Browse files
[mirotalksfu] - #194 Add missing
1 parent f3c8f1a commit ce99977

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

public/js/VirtualBackground.js

+2-4
Original file line numberDiff line numberDiff line change
@@ -92,9 +92,6 @@ class VirtualBackground {
9292
}
9393

9494
async processStreamWithSegmentation(videoTrack, maskHandler) {
95-
// Stop any existing processor before starting a new one
96-
await this.stopCurrentProcessor();
97-
9895
// Initialize segmentation if not already done
9996
await this.initializeSegmentation();
10097

@@ -176,8 +173,9 @@ class VirtualBackground {
176173
cleanPendingFrames() {
177174
// Close all pending frames to release resources
178175
while (this.pendingFrames.length) {
179-
const { videoFrame } = this.pendingFrames.pop();
176+
const { videoFrame, imageBitmap } = this.pendingFrames.pop();
180177
videoFrame?.close();
178+
imageBitmap?.close();
181179
}
182180
}
183181

0 commit comments

Comments
 (0)