Mercurial > audlegacy
diff src/audacious/input.h @ 4596:a77d02342ee1
change visualization timeout; export calc_stereo_pcm, calc_mono_pcm and calc_mono_freq to PAPI
| author | Tomasz Mon <desowin@gmail.com> |
|---|---|
| date | Sat, 31 May 2008 14:17:15 +0200 |
| parents | 2eee464379dc |
| children | 31a4cc265f31 |
line wrap: on
line diff
--- a/src/audacious/input.h Fri May 30 16:05:03 2008 +0200 +++ b/src/audacious/input.h Sat May 31 14:17:15 2008 +0200 @@ -39,6 +39,15 @@ GMutex *playback_mutex; }; +struct _VisNode { + gint time; + gint nch; + gint length; /* number of samples per channel */ + gint16 data[2][512]; +}; + +typedef struct _VisNode VisNode; + GList *get_input_list(void); InputPlayback *get_current_input_playback(void); void set_current_input_playback(InputPlayback * ip);
