summaryrefslogtreecommitdiff
path: root/src/post/visualizations
diff options
context:
space:
mode:
Diffstat (limited to 'src/post/visualizations')
-rw-r--r--src/post/visualizations/fftgraph.c4
-rw-r--r--src/post/visualizations/fftscope.c4
-rw-r--r--src/post/visualizations/fooviz.c4
-rw-r--r--src/post/visualizations/oscope.c4
4 files changed, 8 insertions, 8 deletions
diff --git a/src/post/visualizations/fftgraph.c b/src/post/visualizations/fftgraph.c
index 22179cec1..3d3089642 100644
--- a/src/post/visualizations/fftgraph.c
+++ b/src/post/visualizations/fftgraph.c
@@ -20,7 +20,7 @@
* FftGraph Visualization Post Plugin For xine
* by Thibaut Mattern (tmattern@noos.fr)
*
- * $Id: fftgraph.c,v 1.3 2003/10/30 22:40:53 mroi Exp $
+ * $Id: fftgraph.c,v 1.4 2003/11/11 18:44:59 f1rmb Exp $
*
*/
@@ -464,7 +464,7 @@ static post_plugin_t *fftgraph_open_plugin(post_class_t *class_gen, int inputs,
this->buf.mem = NULL;
this->buf.mem_size = 0;
- port = post_intercept_audio_port(&this->post, audio_target[0]);
+ port = _x_post_intercept_audio_port(&this->post, audio_target[0]);
port->port.open = fftgraph_port_open;
port->port.close = fftgraph_port_close;
port->port.put_buffer = fftgraph_port_put_buffer;
diff --git a/src/post/visualizations/fftscope.c b/src/post/visualizations/fftscope.c
index 4cdc8b93c..6277be7c9 100644
--- a/src/post/visualizations/fftscope.c
+++ b/src/post/visualizations/fftscope.c
@@ -22,7 +22,7 @@
*
* FFT code by Steve Haehnichen, originally licensed under GPL v1
*
- * $Id: fftscope.c,v 1.17 2003/10/30 22:40:53 mroi Exp $
+ * $Id: fftscope.c,v 1.18 2003/11/11 18:44:59 f1rmb Exp $
*
*/
@@ -503,7 +503,7 @@ static post_plugin_t *fftscope_open_plugin(post_class_t *class_gen, int inputs,
this->buf.mem = NULL;
this->buf.mem_size = 0;
- port = post_intercept_audio_port(&this->post, audio_target[0]);
+ port = _x_post_intercept_audio_port(&this->post, audio_target[0]);
port->port.open = fftscope_port_open;
port->port.close = fftscope_port_close;
port->port.put_buffer = fftscope_port_put_buffer;
diff --git a/src/post/visualizations/fooviz.c b/src/post/visualizations/fooviz.c
index 4b302f2df..4f70de432 100644
--- a/src/post/visualizations/fooviz.c
+++ b/src/post/visualizations/fooviz.c
@@ -23,7 +23,7 @@
* process. It simply paints the screen a solid color and rotates through
* colors on each iteration.
*
- * $Id: fooviz.c,v 1.12 2003/10/30 22:40:53 mroi Exp $
+ * $Id: fooviz.c,v 1.13 2003/11/11 18:45:00 f1rmb Exp $
*
*/
@@ -300,7 +300,7 @@ static post_plugin_t *fooviz_open_plugin(post_class_t *class_gen, int inputs,
this->buf.mem = NULL;
this->buf.mem_size = 0;
- port = post_intercept_audio_port(&this->post, audio_target[0]);
+ port = _x_post_intercept_audio_port(&this->post, audio_target[0]);
port->port.open = fooviz_port_open;
port->port.close = fooviz_port_close;
port->port.put_buffer = fooviz_port_put_buffer;
diff --git a/src/post/visualizations/oscope.c b/src/post/visualizations/oscope.c
index 4f312ca49..71fe3933a 100644
--- a/src/post/visualizations/oscope.c
+++ b/src/post/visualizations/oscope.c
@@ -20,7 +20,7 @@
* Basic Oscilloscope Visualization Post Plugin For xine
* by Mike Melanson (melanson@pcisys.net)
*
- * $Id: oscope.c,v 1.10 2003/10/30 22:40:53 mroi Exp $
+ * $Id: oscope.c,v 1.11 2003/11/11 18:45:00 f1rmb Exp $
*
*/
@@ -370,7 +370,7 @@ static post_plugin_t *oscope_open_plugin(post_class_t *class_gen, int inputs,
this->buf.mem = NULL;
this->buf.mem_size = 0;
- port = post_intercept_audio_port(&this->post, audio_target[0]);
+ port = _x_post_intercept_audio_port(&this->post, audio_target[0]);
port->port.open = oscope_port_open;
port->port.close = oscope_port_close;
port->port.put_buffer = oscope_port_put_buffer;