diff options
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 2105b646b..2e905776d 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.9 2004/01/07 19:52:42 mroi Exp $ + * $Id: fftgraph.c,v 1.10 2004/02/12 18:25:08 mroi Exp $ * */ @@ -214,7 +214,7 @@ static int fftgraph_port_open(xine_audio_port_t *port_gen, xine_stream_t *stream /* printf("fftgraph_port_open, port_gen=%p, stream=%p, this=%p\n", port_gen, stream, this); */ - _x_post_rewire_audio(port); + _x_post_rewire(&this->post); _x_post_inc_usage(port); if (stream) diff --git a/src/post/visualizations/fftscope.c b/src/post/visualizations/fftscope.c index b2d4e4770..eb0f2b2f1 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.24 2004/01/07 19:52:42 mroi Exp $ + * $Id: fftscope.c,v 1.25 2004/02/12 18:25:08 mroi Exp $ * */ @@ -274,7 +274,7 @@ static int fftscope_port_open(xine_audio_port_t *port_gen, xine_stream_t *stream post_plugin_fftscope_t *this = (post_plugin_fftscope_t *)port->post; int c, i; - _x_post_rewire_audio(port); + _x_post_rewire(&this->post); _x_post_inc_usage(port); if (stream) diff --git a/src/post/visualizations/fooviz.c b/src/post/visualizations/fooviz.c index d72ee4354..d9a9ca845 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.19 2004/01/07 19:52:42 mroi Exp $ + * $Id: fooviz.c,v 1.20 2004/02/12 18:25:08 mroi Exp $ * */ @@ -106,7 +106,7 @@ static int fooviz_port_open(xine_audio_port_t *port_gen, xine_stream_t *stream, post_audio_port_t *port = (post_audio_port_t *)port_gen; post_plugin_fooviz_t *this = (post_plugin_fooviz_t *)port->post; - _x_post_rewire_audio(port); + _x_post_rewire(&this->post); _x_post_inc_usage(port); if (stream) diff --git a/src/post/visualizations/oscope.c b/src/post/visualizations/oscope.c index 658a56d28..ab9cf7396 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.16 2004/01/07 19:52:42 mroi Exp $ + * $Id: oscope.c,v 1.17 2004/02/12 18:25:08 mroi Exp $ * */ @@ -176,7 +176,7 @@ static int oscope_port_open(xine_audio_port_t *port_gen, xine_stream_t *stream, post_audio_port_t *port = (post_audio_port_t *)port_gen; post_plugin_oscope_t *this = (post_plugin_oscope_t *)port->post; - _x_post_rewire_audio(port); + _x_post_rewire(&this->post); _x_post_inc_usage(port); if (stream) |