diff options
author | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2003-11-11 18:44:50 +0000 |
---|---|---|
committer | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2003-11-11 18:44:50 +0000 |
commit | 20ff61cb378d2550bedd582a5ce3eae07a84d731 (patch) | |
tree | 745f5e8278fca6aa49d06df6e2040e7f73201828 /src/post/visualizations | |
parent | 4d689a92b9b261e41607b4b94c07a6cbf8fd78b1 (diff) | |
download | xine-lib-20ff61cb378d2550bedd582a5ce3eae07a84d731.tar.gz xine-lib-20ff61cb378d2550bedd582a5ce3eae07a84d731.tar.bz2 |
rename internal API function (_x_<function>).
CVS patchset: 5721
CVS date: 2003/11/11 18:44:50
Diffstat (limited to 'src/post/visualizations')
-rw-r--r-- | src/post/visualizations/fftgraph.c | 4 | ||||
-rw-r--r-- | src/post/visualizations/fftscope.c | 4 | ||||
-rw-r--r-- | src/post/visualizations/fooviz.c | 4 | ||||
-rw-r--r-- | src/post/visualizations/oscope.c | 4 |
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; |