diff src/audacious/flow.h @ 3558:5aec9950c47a trunk

Add time to flow_execute() and friends.
author William Pitcock <nenolod@atheme.org>
date Tue, 18 Sep 2007 13:31:05 -0500
parents d4f9e45c1e27
children 6f4068a0f291
line wrap: on
line diff
--- a/src/audacious/flow.h	Tue Sep 18 13:30:13 2007 -0500
+++ b/src/audacious/flow.h	Tue Sep 18 13:31:05 2007 -0500
@@ -29,6 +29,7 @@
 #define __AUDACIOUS_FLOW_H__
 
 typedef struct {
+    gint time;
     gpointer data;
     gsize len;
     AFormat fmt;
@@ -49,7 +50,7 @@
     FlowElement *head, *tail;
 } Flow;
 
-void flow_execute(Flow *flow, gpointer data, gsize len, AFormat fmt, 
+void flow_execute(Flow *flow, gint time, gpointer data, gsize len, AFormat fmt, 
      gint srate, gint channels);
 
 Flow *flow_new(void);