Mercurial > audlegacy
diff src/audacious/plugin.h @ 3705:38259e9394a2
add InputPlayback::set_params() and InputPlayback::set_title() which will
replace InputPlugin::set_info() and InputPlugin::set_info_text() someday.
| author | William Pitcock <nenolod@atheme.org> |
|---|---|
| date | Sun, 07 Oct 2007 14:05:16 -0500 |
| parents | 2e1a1d734112 |
| children | fc17623eb561 |
line wrap: on
line diff
--- a/src/audacious/plugin.h Sun Oct 07 13:40:45 2007 -0500 +++ b/src/audacious/plugin.h Sun Oct 07 14:05:16 2007 -0500 @@ -446,6 +446,15 @@ GMutex *pb_change_mutex; GCond *pb_change_cond; void (*set_pb_change)(InputPlayback *self); + + gint nch; + gint rate; + gint freq; + gint length; + gchar *title; + + void (*set_params) (InputPlayback *, gchar * title, gint length, gint rate, gint freq, gint nch); + void (*set_title) (InputPlayback *, gchar * text); }; struct _InputPlugin {
