We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
[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
The text was updated successfully, but these errors were encountered:
[Comment migrated from SourceForge | Submitted by 'timblech']
also an issue with BufCombN and BufAllpassN
Sorry, something went wrong.
fixed in trunk
Merge pull request #103 from patrickdupuis/topic/tutorial_fixes
586baef
Tutorial page improvements
No branches or pull requests
[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
The text was updated successfully, but these errors were encountered: