Skip to content

Commit

Permalink
Fix DTX and stereo feature reporting
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasIO committed Oct 9, 2024
1 parent 6d77449 commit 8b1bc1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/room/track/LocalTrackPublication.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ export default class LocalTrackPublication extends TrackPublication {
features.add(AudioTrackFeature.TF_STEREO);
}
if (!this.options?.dtx) {
features.add(AudioTrackFeature.TF_STEREO);
features.add(AudioTrackFeature.TF_NO_DTX);
}
if (this.track.enhancedNoiseCancellation) {
features.add(AudioTrackFeature.TF_ENHANCED_NOISE_CANCELLATION);
Expand Down

0 comments on commit 8b1bc1d

Please sign in to comment.