Mercurial > audlegacy
changeset 4380:a5382bae0eea
Branch merge.
author | Matti Hamalainen <ccr@tnsp.org> |
---|---|
date | Fri, 28 Mar 2008 04:41:53 +0200 |
parents | 4060a83ebf1f (diff) 3a9a83c95daf (current diff) |
children | ce3f2d2455cf |
files | |
diffstat | 2 files changed, 13 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/Mercurial-Access Fri Mar 28 02:20:44 2008 +0000 +++ b/Mercurial-Access Fri Mar 28 04:41:53 2008 +0200 @@ -5,4 +5,9 @@ $ hg clone http://hg.atheme.org/audacious audacious-devel To retrieve the audacious stable branch from hg.atheme.org, do: - $ hg clone http://hg.atheme.org/audacious-stable + $ hg clone http://hg.atheme.org/release/audacious-$VERSION + + Where $VERSION is the stable major version, for example the latest + fixes and updates to 1.5-series of audacious would be in: + + $ hg clone http://hg.atheme.org/release/audacious-1.5
--- a/src/audacious/plugin.h Fri Mar 28 02:20:44 2008 +0000 +++ b/src/audacious/plugin.h Fri Mar 28 04:41:53 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]); };