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

BufDelayN produces "clicks" if buffer size is not power of 2 #103

Closed
jleben opened this issue May 6, 2012 · 2 comments
Closed

BufDelayN produces "clicks" if buffer size is not power of 2 #103

jleben opened this issue May 6, 2012 · 2 comments
Labels
bug Issues that relate to unexpected/unwanted behavior. Don't use for PRs. comp: scsynth

Comments

@jleben
Copy link
Member

jleben commented May 6, 2012

[Issue migrated from SourceForge | ID: 2898084 | Submitted by 'zlb-dev']
[http://sourceforge.net/support/tracker.php?aid=2898084]

BufDelayN produces "clicks" if buffer size is not power of 2

example:

Buffer.alloc( s, 44100, 1, bufnum: 1);

SynthDef( "bufdelay_test", { |dtime = 0.25|
Out.ar( 0, BufDelayN.ar(1, SinOsc.ar(440, 0, 0.125), dtime ) )
}).load(s);

Synth( "bufdelay_test" );

/// clicks occur about every second
/// if I change the buffer size to a power of two like so:

Buffer.alloc( s, 2**15, 1, bufnum: 1);

// no more clickig

@jleben jleben closed this as completed May 6, 2012
@jleben
Copy link
Member Author

jleben commented May 6, 2012

[Comment migrated from SourceForge | Submitted by 'timblech']

also an issue with BufCombN and BufAllpassN

@jleben
Copy link
Member Author

jleben commented May 6, 2012

[Comment migrated from SourceForge | Submitted by 'timblech']

fixed in trunk

mossheim added a commit that referenced this issue Aug 24, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Issues that relate to unexpected/unwanted behavior. Don't use for PRs. comp: scsynth
Projects
None yet
Development

No branches or pull requests

1 participant