-
Notifications
You must be signed in to change notification settings - Fork 94
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
Audio examples #644
Open
rothmichaels
wants to merge
19
commits into
mpusz:master
Choose a base branch
from
rothmichaels:feature/audio-examples
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Audio examples #644
Changes from 5 commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
2a9265d
WIP LFO implementation
rothmichaels 39acaff
Refactor LFO example and get to compile
rothmichaels f4fe2bd
Add 0-wrapping_unsafe_apis audio example
rothmichaels aec61bc
Finish LFO example
rothmichaels fbfecdb
Uncomment unit symbols
rothmichaels 8176bdc
Include <algorithm> in 1-lfo example
rothmichaels 50a323b
Try value_cast<float> to fix int->float conversion warning
rothmichaels b0a6ac9
Fix reuse of sample_rate name for analysis
rothmichaels 9629004
Try adding more value_cast to fix analysis errors
rothmichaels 8be556f
Rename 1-lfo -> 1-oscillator
rothmichaels 2e0a824
Update example/audio/third_party_audio_api.h
rothmichaels 9fbe556
Update example/audio/wrapped_third_party_audio_api.h
rothmichaels 03775fd
Audio examples 1-oscillator PR feedback
rothmichaels b790489
Merge remote-tracking branch 'upstream/master' into feature/audio-exa…
rothmichaels e5a5948
Update audio example for dimensionless changes
rothmichaels 7091c1e
Remove unused header
rothmichaels 8223e15
Merge remote-tracking branch 'origin/feature/audio-examples' into fea…
rothmichaels 607d1ea
Add missing call to update_step in 1-oscillator example
rothmichaels acf4d8d
1-oscillator example combine set_frequency and set_period into one ov…
rothmichaels File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
Oops, something went wrong.
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.
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.
Is a
quantity_cast
required here? I assume that the implicit conversion did not compile? Did you try an explicit conversion?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.
Isn't
audio::sample
a good unit here?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.
Yes,
audio::sample
is a good unit here. This is what I had before the changes to dimensionless quantities:const quantity buffer_size = (buffer_duration * context.current_sample_rate).in(audio::sample);
Maybe I didn't know the best way to do this after the dimensionless changes.
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've fixed the previous audio example in the paper (https://godbolt.org/z/z7sPqe66e) and improved
inverse()
. Maybe this will give you some ideas on how to refactor this.