Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(VoiceReceiver): delete opus encoder from map in stoppedSpeaking #3499

Merged
merged 1 commit into from
Oct 27, 2019

Conversation

SpaceEEC
Copy link
Member

@SpaceEEC SpaceEEC commented Oct 1, 2019

Please describe the changes this PR makes and why it should be merged:

This PR fixes VoiceReceivers failing to decode PCM data after the first silence of a user.

The cause is that the relevant OpusEncoder got reused after being destroyed.
It was destroyed here, but not removed from the map like it should.

if (opusEncoder) {
opusEncoder.destroy();
}

After removing it from the map a new one was created in case the user starts speaking again and valid PCM data could be decoded.

This PR also fixes the documentation about the PCM format, it's actually s16 and not s32.

Status

  • Code changes have been tested against the Discord API, or there are no code changes
  • I know how to update typings and have done so, or typings don't need updating

Semantic versioning classification:

  • This PR changes the library's interface (methods or parameters added)
    • This PR includes breaking changes (methods removed or renamed, parameters moved or removed)
  • This PR only includes non-code changes, like changes to documentation, README, etc.

@SpaceEEC SpaceEEC merged commit 91600a6 into discordjs:11.5-dev Oct 27, 2019
@SpaceEEC SpaceEEC deleted the fix/voice_receiver branch October 27, 2019 09:24
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant