Displaying 2 results from an estimated 2 matches for "p_level".
Did you mean:
pt_level
2000 Sep 26
1
branch merged
I just finished the merge of branch_jackoggsvorbis into branch_postbeta2
Vorbis is now split into two libs, libogg, and libvorbis in this branch.
the follow modules are a result:
ogg - basic framing library, all ogg code and docs, etc
vorbis - the vorbis codec, depends on ogg
vorbis-plugins - all the audio plugins for ogg vorbis, depends on ogg
and vorbis
ao - libao a cross platform audio
2001 Feb 01
1
minor psy.c modifications
...shiftoc+1))+.5f;
maxoc=toOC((n*.5f + .25f)*rate/n)*(1<<(p->shiftoc+1))+.5f;
2. I know: sizeof(float *) and sizeof(float) are 4 bytes long, but...
old lines:
p->noisemedian=_ogg_malloc(n*sizeof(float *));
p->noiseoffset=_ogg_malloc(n*sizeof(float *));
p->tonecurves[i]=_ogg_malloc(P_LEVELS*sizeof(float *));
new (corrected) lines:
p->noisemedian=_ogg_malloc(n*sizeof(float));
p->noiseoffset=_ogg_malloc(n*sizeof(float));
p->tonecurves[i]=_ogg_malloc(P_LEVELS*sizeof(float));
3. modified bark_noise_median():
3/a: floating point based (new) style:
#define BIN(x) ((int)((x)*n...