Displaying 1 result from an estimated 1 matches for "decaydbpms".
2002 Apr 07
1
2 questions about compiling the source
..._octave_lines;
float preecho_thresh[4];
float postecho_thresh[4];
float preecho_minenergy;
float ampmax_att_per_sec;
int delaycache;
} vorbis_info_psy_global;
However, the file psytune.c makes this declaration:
tatic vorbis_info_psy_global _psy_set0G={
0, /* decaydBpms */
8, /* lines per eighth octave */
/* thresh sample period, preecho clamp trigger threshhold, range, minenergy */
256, {26.f,26.f,26.f,30.f}, {-90.f,-90.f,-90.f,-90.f}, -90.f,
-6.f,
0,
0.,
0.,
};
The declaration of _psy_set0G clearly has "too many initializers" a...