[ Main Page ]

libfreeverb

freeverbをサンプリングレート可変にし、ライブラリ化しました。 freeverb3の方が新しいです。

// cc -Ilibfreeverb -lfreeverb
#include <revmodel.hpp>

revmodel reverbm;

reverbm.resetfs(96000);
reverbm.setwet(.4);
reverbm.setroomsize(0.7);
reverbm.setdry(0.1);
reverbm.setdamp(0.5);
reverbm.setwidth(0.9);
#ifdef DEBUG
reverbm.printconfig();
#endif

for(...)
{
  // float * fL, * fR; len=sizeof(fL[]);
  reverbm.processmix(fL,fR,fL,fR,len,1);
}
      

SDL_mixer+freeverb test
SDL_mixerのMix_RegisterEffectのサンプルを兼ねています。
libfreeverb-1.0.0
autoconf化してあります。
freeverbsource.zip(Original Freeverb 3 VST Source + DLL)
OriginalのVSTのソースコードです。

You can easily install the binary distribution of Mozilla (from mozilla.org)
on a different prefix, possibly under your home directory. Please install it
and use it instead of Mozilla 1.1, at least when verifying if problems indeed
exist. I do not wish to tolerate any more reports of problems when using
Mozilla 1.1, because I can't tell if it's a bug that was fixed by then, or if
it's an actual issue with Mozilla.

On a slightly different note: my machine crashed the other day when using it
with kernel 2.6.0. Can anyone help?

Shlomi Fish on discussions@hamakor.org.il

    -- Shlomi Fish
    -- Post to discussions@hamakor.org.il ( http://mirror.hamakor.org.il/archives/discussions/05-2005/1495.html )

Just to have it is enough.


Powered by UNIX fortune(6)
[ Main Page ]