ov-components: remove redundant background processor removal logic in virtual background service

master
Carlos Santos 2025-04-30 14:54:26 +02:00
parent 81fcae2d4e
commit 5433f516a9
1 changed files with 0 additions and 4 deletions

View File

@ -104,10 +104,6 @@ export class VirtualBackgroundService {
this.log.e('No processor found for the background effect.');
return;
}
// If there is a current processor, remove it before applying the new one
if (currentProcessor) {
await this.removeBackground();
}
await this.applyProcessorToCameraTracks(cameraTracks, newProcessor);
}