Mercurial > audlegacy
changeset 4376:b3888565029e
Automated merge with ssh://hg.atheme.org//hg/audacious
author | Matti Hamalainen <ccr@tnsp.org> |
---|---|
date | Fri, 28 Mar 2008 02:19:57 +0200 |
parents | b095d631bec4 (diff) 335f4ac3993a (current diff) |
children | 4060a83ebf1f |
files | |
diffstat | 1 files changed, 7 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/src/audacious/plugin.h Sun Mar 23 20:31:28 2008 +0200 +++ b/src/audacious/plugin.h Fri Mar 28 02:19:57 2008 +0200 @@ -1187,6 +1187,13 @@ void (*playback_start) (void); void (*playback_stop) (void); void (*render_pcm) (gint16 pcm_data[2][512]); + + /* The range of intensities is 0 - 32767 (though theoretically it is + * possible for the FFT to result in bigger values, making the final + * intensity negative due to overflowing the 16bit signed integer.) + * + * If output is mono, only freq_data[0] is filled. + */ void (*render_freq) (gint16 freq_data[2][256]); };