diff options
Diffstat (limited to 'src/post/planar/denoise3d.c')
-rw-r--r-- | src/post/planar/denoise3d.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/post/planar/denoise3d.c b/src/post/planar/denoise3d.c index dc5441486..fe76e2a6c 100644 --- a/src/post/planar/denoise3d.c +++ b/src/post/planar/denoise3d.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: denoise3d.c,v 1.9 2003/11/01 18:34:22 miguelfreitas Exp $ + * $Id: denoise3d.c,v 1.10 2003/11/11 18:44:59 f1rmb Exp $ * * mplayer's denoise3d * Copyright (C) 2003 Daniel Moreno <comac@comac.darktech.org> @@ -231,7 +231,7 @@ static post_plugin_t *denoise3d_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 = denoise3d_open; port->port.get_frame = denoise3d_get_frame; @@ -345,7 +345,7 @@ static vo_frame_t *denoise3d_get_frame(xine_video_port_t *port_gen, uint32_t wid 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 = denoise3d_draw; /* decoders should not copy the frames, since they won't be displayed */ @@ -425,7 +425,7 @@ static int denoise3d_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 ) { @@ -438,7 +438,7 @@ static int denoise3d_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], @@ -456,7 +456,7 @@ static int denoise3d_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; |