summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/post/deinterlace/xine_plugin.c4
-rw-r--r--src/post/goom/xine_goom.c4
-rw-r--r--src/post/planar/expand.c2
-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
7 files changed, 13 insertions, 13 deletions
diff --git a/src/post/deinterlace/xine_plugin.c b/src/post/deinterlace/xine_plugin.c
index 565c0cc29..9317974ee 100644
--- a/src/post/deinterlace/xine_plugin.c
+++ b/src/post/deinterlace/xine_plugin.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: xine_plugin.c,v 1.28 2004/01/07 19:52:42 mroi Exp $
+ * $Id: xine_plugin.c,v 1.29 2004/02/12 18:25:07 mroi Exp $
*
* advanced video deinterlacer plugin
* Jun/2003 by Miguel Freitas
@@ -466,7 +466,7 @@ static void deinterlace_open(xine_video_port_t *port_gen, xine_stream_t *stream)
post_video_port_t *port = (post_video_port_t *)port_gen;
post_plugin_deinterlace_t *this = (post_plugin_deinterlace_t *)port->post;
- _x_post_rewire_video(port);
+ _x_post_rewire(&this->post);
_x_post_inc_usage(port);
if (stream)
port->stream = stream;
diff --git a/src/post/goom/xine_goom.c b/src/post/goom/xine_goom.c
index e7d0f1eea..486e3599c 100644
--- a/src/post/goom/xine_goom.c
+++ b/src/post/goom/xine_goom.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: xine_goom.c,v 1.48 2004/01/07 19:52:42 mroi Exp $
+ * $Id: xine_goom.c,v 1.49 2004/02/12 18:25:07 mroi Exp $
*
* GOOM post plugin.
*
@@ -348,7 +348,7 @@ static int goom_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_goom_t *this = (post_plugin_goom_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/planar/expand.c b/src/post/planar/expand.c
index 5848775fb..41ab10227 100644
--- a/src/post/planar/expand.c
+++ b/src/post/planar/expand.c
@@ -243,7 +243,7 @@ static vo_frame_t *expand_get_frame(xine_video_port_t *port_gen, uint32_t width,
uint32_t new_height, top_bar_height;
int i, end;
- _x_post_rewire_video(port);
+ _x_post_rewire(&this->post);
if (ratio <= 0.0) ratio = (double)width / (double)height;
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)