]> code.delx.au - pulseaudio/blobdiff - polyp/source.h
Make the whole stuff LGPL only
[pulseaudio] / polyp / source.h
index 8b03c0d569f5f2d9ec96904cd4a21e53f75f089e..1e6310b08e5deb7eb23660bba67f0876914d933f 100644 (file)
@@ -7,7 +7,7 @@
   This file is part of polypaudio.
  
   polypaudio is free software; you can redistribute it and/or modify
-  it under the terms of the GNU General Public License as published
+  it under the terms of the GNU Lesser General Public License as published
   by the Free Software Foundation; either version 2 of the License,
   or (at your option) any later version.
  
@@ -16,7 +16,7 @@
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
   General Public License for more details.
  
-  You should have received a copy of the GNU General Public License
+  You should have received a copy of the GNU Lesser General Public License
   along with polypaudio; if not, write to the Free Software
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
   USA.
@@ -36,7 +36,7 @@ struct pa_source;
 
 enum pa_source_state {
     PA_SOURCE_RUNNING,
-    PA_SOURCE_DISCONNECTED,
+    PA_SOURCE_DISCONNECTED
 };
 
 struct pa_source {
@@ -53,6 +53,7 @@ struct pa_source {
     struct pa_sink *monitor_of;
 
     void (*notify)(struct pa_source*source);
+    pa_usec_t (*get_latency)(struct pa_source *s);
     void *userdata;
 };
 
@@ -62,10 +63,12 @@ void pa_source_unref(struct pa_source *s);
 struct pa_source* pa_source_ref(struct pa_source *c);
 
 /* Pass a new memory block to all output streams */
-void pa_source_post(struct pa_source*s, struct pa_memchunk *b);
+void pa_source_post(struct pa_source*s, const struct pa_memchunk *b);
 
 void pa_source_notify(struct pa_source *s);
 
 void pa_source_set_owner(struct pa_source *s, struct pa_module *m);
 
+pa_usec_t pa_source_get_latency(struct pa_source *s);
+
 #endif