summaryrefslogtreecommitdiff
path: root/src/post/planar/boxblur.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/post/planar/boxblur.c')
-rw-r--r--src/post/planar/boxblur.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/post/planar/boxblur.c b/src/post/planar/boxblur.c
index 5f0764239..5b94c1230 100644
--- a/src/post/planar/boxblur.c
+++ b/src/post/planar/boxblur.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: boxblur.c,v 1.9 2003/11/01 18:34:22 miguelfreitas Exp $
+ * $Id: boxblur.c,v 1.10 2003/11/11 18:44:59 f1rmb Exp $
*
* mplayer's boxblur
* Copyright (C) 2002 Michael Niedermayer <michaelni@gmx.at>
@@ -194,7 +194,7 @@ static post_plugin_t *boxblur_open_plugin(post_class_t *class_gen, int inputs,
pthread_mutex_init (&this->lock, NULL);
- port = post_intercept_video_port(&this->post, video_target[0]);
+ port = _x_post_intercept_video_port(&this->post, video_target[0]);
/* replace with our own get_frame function */
port->port.open = boxblur_open;
port->port.get_frame = boxblur_get_frame;
@@ -306,7 +306,7 @@ static vo_frame_t *boxblur_get_frame(xine_video_port_t *port_gen, uint32_t width
frame = port->original_port->get_frame(port->original_port,
width, height, ratio, format, flags);
- post_intercept_video_frame(frame, port);
+ _x_post_intercept_video_frame(frame, port);
/* replace with our own draw function */
frame->draw = boxblur_draw;
/* decoders should not copy the frames, since they won't be displayed */
@@ -411,7 +411,7 @@ static int boxblur_draw(vo_frame_t *frame, xine_stream_t *stream)
int cw, ch;
int skip;
- post_restore_video_frame(frame, port);
+ _x_post_restore_video_frame(frame, port);
if( !frame->bad_frame ) {
@@ -424,7 +424,7 @@ static int boxblur_draw(vo_frame_t *frame, xine_stream_t *stream)
yv12_frame->pts = frame->pts;
yv12_frame->duration = frame->duration;
- extra_info_merge(yv12_frame->extra_info, frame->extra_info);
+ _x_extra_info_merge(yv12_frame->extra_info, frame->extra_info);
yuy2_to_yv12(frame->base[0], frame->pitches[0],
yv12_frame->base[0], yv12_frame->pitches[0],
@@ -442,7 +442,7 @@ static int boxblur_draw(vo_frame_t *frame, xine_stream_t *stream)
frame->width, frame->height, frame->ratio, XINE_IMGFMT_YV12, frame->flags | VO_BOTH_FIELDS);
- extra_info_merge(out_frame->extra_info, frame->extra_info);
+ _x_extra_info_merge(out_frame->extra_info, frame->extra_info);
out_frame->pts = frame->pts;
out_frame->duration = frame->duration;