From 18a6a7d463733430c29e84e9b068bbb94ff65624 Mon Sep 17 00:00:00 2001 From: Darren Salt Date: Wed, 13 Aug 2008 15:06:07 +0100 Subject: Apply the deinterlacer size fix to the XCB Xv plugin. --- src/video_out/video_out_xcbxv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/video_out/video_out_xcbxv.c b/src/video_out/video_out_xcbxv.c index b6e5544c3..807bb766d 100644 --- a/src/video_out/video_out_xcbxv.c +++ b/src/video_out/video_out_xcbxv.c @@ -435,7 +435,7 @@ static void xv_deinterlace_frame (xv_driver_t *this) { for( i = 0; i < VO_NUM_RECENT_FRAMES; i++ ) if( this->recent_frames[i] && this->recent_frames[i]->width == frame->width && this->recent_frames[i]->height == frame->height ) - recent_bitmaps[i] = this->recent_frames[i]->image + frame->width*frame->height; + recent_bitmaps[i] = this->recent_frames[i]->image + this->deinterlace_frame.xv_width*frame->height; else recent_bitmaps[i] = NULL; -- cgit v1.2.3