Skip to content

Commit

Permalink
Removing NoiseSuppressionEffect (#225)
Browse files Browse the repository at this point in the history
* Adding audio effects

* Adding audio effects

* Adding audio effects - cleaning up

* Adding audio effects - cleaning up

* Removing unwanted

* Adding blank line

* Synching with upstream

* Synching with upstream

* Synching with upstream

* #3247415: Removing NoiseSuppression

* #3247415: Removing NoiseSuppression

* #3247415: Removing NoiseSuppression

---------

Co-authored-by: Prathmesh <[email protected]>
  • Loading branch information
pkestikar and pkestikar-msft authored Apr 29, 2024
1 parent d3321e7 commit 082d549
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 11 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -348,3 +348,5 @@ MigrationBackup/

# Ionide (cross platform F# VS Code tools) working folder
.ionide/

.DS_Store
2 changes: 1 addition & 1 deletion Project/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 0 additions & 10 deletions Project/src/MakeCall/AudioEffects/AudioEffectsContainer.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import React from 'react';
import { Features, LocalAudioStream } from '@azure/communication-calling';
import {
EchoCancellationEffect,
NoiseSuppressionEffect,
DeepNoiseSuppressionEffect
} from '@azure/communication-calling-effects';
import { Dropdown, PrimaryButton } from '@fluentui/react';
Expand Down Expand Up @@ -142,15 +141,6 @@ export default class AudioEffectsContainer extends React.Component {
});
}

const noiseSuppression = new NoiseSuppressionEffect();
if (await this.localAudioStreamFeatureApi.isSupported(noiseSuppression)) {
supported.push(noiseSuppression);
noiseSuppressionList.push({
key: noiseSuppression.name,
text: 'Noise Suppression'
});
}

const deepNoiseSuppression = new DeepNoiseSuppressionEffect();
if (await this.localAudioStreamFeatureApi.isSupported(deepNoiseSuppression)) {
supported.push(deepNoiseSuppression);
Expand Down

0 comments on commit 082d549

Please sign in to comment.