-
Notifications
You must be signed in to change notification settings - Fork 2
Audio file reading with resampling + windows clang recommendation #23
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
base: main
Are you sure you want to change the base?
Conversation
Audio files can be read with support for resampling. Changed to clang64 as the recommended toolchain on windows for asan/ubsan support. Updated docs and added some info about sanitizers.
addressed the issues! |
#include "SoundFiles.hpp" | ||
|
||
using Resampler = r8b::CDSPResampler; | ||
using namespace std; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i think it would be better to avoid this, as std
is a big namespace. consider using
specific members, or just write out the std::
:) (i tend to prefer the latter for clarity)
aside from the |
Audio files can be read with support for resampling using the
>sf
operation. Changed to clang64 as the recommended toolchain on windows for asan/ubsan support. Updated docs and added some info about sanitizers.The r8brain library handles the actual core resampling logic and is included as a git submodule.
Completes #2