summaryrefslogtreecommitdiff
path: root/src/video_out/video_out_xv.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/video_out/video_out_xv.c')
-rw-r--r--src/video_out/video_out_xv.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/video_out/video_out_xv.c b/src/video_out/video_out_xv.c
index d01bb6830..b21c6df23 100644
--- a/src/video_out/video_out_xv.c
+++ b/src/video_out/video_out_xv.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: video_out_xv.c,v 1.88 2002/01/09 22:33:04 jcdutton Exp $
+ * $Id: video_out_xv.c,v 1.89 2002/01/22 01:43:13 miguelfreitas Exp $
*
* video_out_xv.c, X11 video extension interface for xine
*
@@ -800,9 +800,9 @@ static void xv_overlay_blend (vo_driver_t *this_gen, vo_frame_t *frame_gen, vo_o
if (overlay->rle) {
if( frame->format == IMGFMT_YV12 )
- blend_yuv( frame->image->data, overlay, frame->width, frame->height);
+ blend_yuv( frame->vo_frame.base, overlay, frame->width, frame->height);
else
- blend_yuy2( frame->image->data, overlay, frame->width, frame->height);
+ blend_yuy2( frame->vo_frame.base[0], overlay, frame->width, frame->height);
}
}