improve: make audio sending in C - #5
Open
ThePedroo wants to merge 9 commits into
Open
Conversation
This commit moves the code for audio sending to C99. This improves numerous areas as it bypasses GC stops from JS execution. Moreover, highers precision of the loop, and reduces resource usage.
|
All Contributors have signed the CLA. The PR is now allowed to be merged. |
Member
Author
|
I have read the CLA Document and I hereby sign the CLA |
performanc-bot
added a commit
to PerformanC/CLA-Signatures
that referenced
this pull request
Jul 17, 2026
This commit removes the "Makefile" file that was unused.
This commit removes "#include" that were not necessary to compile the project, and organizes "#include" to follow the standard.
This commit fixes some warnings while compiling/from LSP from IDE.
This commit adds "-Wpedantic" to the "binding.gyp" to allow more warnings to appear and hence make the code more resistent to bugs.
This commit removes from "package.json" the tests that were left from testing.
This commit improves compatibility with Windows by using libuv to send messages through UDP connection instead of using "fd" directly, as it represents a pseudo FILE in Windows, and connection is managed by libuv.
This commit adds the missing CThreads implementation file to repository and includes to be built with the project.
This commit adds a forward declaration for "destroy_loop_fields" so that "try_final_cleanup" can use it without compilation errors.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Changes
This commit moves the code for audio sending to C99.
Why
This improves speed, stability, and resource usage, so why not?
Checkmarks