diff options
author | Robin KAY <komadori@users.sourceforge.net> | 2002-10-29 00:36:21 +0000 |
---|---|---|
committer | Robin KAY <komadori@users.sourceforge.net> | 2002-10-29 00:36:21 +0000 |
commit | ef61d16617f3be26e448b8c7ff73181c717df0a7 (patch) | |
tree | ab88896e41cf47b7022e89460c64dacc474b7560 /src/video_out/video_out_xv.c | |
parent | 2399cbcd435f77dce3c609e19e3979ced0c3bb7a (diff) | |
download | xine-lib-ef61d16617f3be26e448b8c7ff73181c717df0a7.tar.gz xine-lib-ef61d16617f3be26e448b8c7ff73181c717df0a7.tar.bz2 |
Updated pgx64 to newest API. Changed alphablend code to handle pitches.
CVS patchset: 3078
CVS date: 2002/10/29 00:36:21
Diffstat (limited to 'src/video_out/video_out_xv.c')
-rw-r--r-- | src/video_out/video_out_xv.c | 6 |
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 150626db6..c4ee0deac 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.143 2002/10/27 22:50:01 tmattern Exp $ + * $Id: video_out_xv.c,v 1.144 2002/10/29 00:36:21 komadori Exp $ * * video_out_xv.c, X11 video extension interface for xine * @@ -586,9 +586,9 @@ static void xv_overlay_blend (xine_vo_driver_t *this_gen, vo_frame_t *frame_gen, if (overlay->rle) { if (frame->format == XINE_IMGFMT_YV12) - blend_yuv( frame->vo_frame.base, overlay, frame->width, frame->height); + blend_yuv(frame->vo_frame.base, overlay, frame->width, frame->height, frame->vo_frame.pitches); else - blend_yuy2( frame->vo_frame.base[0], overlay, frame->width, frame->height); + blend_yuy2(frame->vo_frame.base[0], overlay, frame->width, frame->height, frame->vo_frame.pitches[0]); } } |